Question

Difficulty: MediumApplication Installation and Configuration Concepts

A system administrator is deploying a legacy line-of-business client application onto a Windows 11 workstation for a standard non-administrative domain user. In what sequence should the administrator perform the following installation and configuration tasks to ensure proper operation and network access?

  1. 1Run the setup file using elevated administrator credentials to install the application into Program Files.
  2. 2Grant Read/Write NTFS permissions to the local Users group on the application working directory in ProgramData.
  3. 3Create an inbound rule in Windows Defender Firewall for the installed application executable path.
  4. 4Log into the workstation with the standard user account and launch the application to verify operational state.

Answer

The correct operational sequence begins with executing the application installer using elevated administrator credentials, followed by configuring NTFS folder permissions in ProgramData for standard user access, creating an inbound firewall rule targeting the installed application path, and concluding with functional verification under the standard user account.
The system administrator must perform installation tasks in logical order: first install the binaries with elevated administrative rights, second adjust folder permissions in ProgramData to allow standard user access, third define firewall exemptions for the application executable, and fourth test the application while logged in as the standard user.

Step-by-Step Solution

1
Execute the application installer using administrator credentials.
Application files are successfully written to Program Files.
Administrative elevation is required to modify system directories during setup.
2
Adjust NTFS permissions on the ProgramData application folder.
Standard users gain write access to required configuration and log files.
Legacy software often requires standard users to write to ProgramData without needing local admin rights.
3
Configure an inbound Windows Defender Firewall rule for the executable.
The application can establish incoming network connection sockets.
Program-based firewall rules require specifying the executable path generated during setup.
4
Log in and launch the application under the standard user account.
Verifies that the application operates correctly within the user's security context.
Testing under the target standard user account confirms permissions and firewall configurations are effective.

Key Concept

Application Installation and Configuration Concepts
Rate this question