Question

Difficulty: MediumApplication Installation and Configuration Concepts

An IT technician is deploying a shared accounting application on several Windows 11 workstations used by non-administrative domain users. The application must launch automatically for every user who signs into the computer, and it must allow each user to save their individual application preferences without prompting for User Account Control (UAC) administrative credentials or causing permission errors. Which TWO of the following configuration steps should the technician implement? (Select TWO.)

  1. Place the application shortcut in the %ProgramData% StartUp directory.Answer
  2. Configure the software to store user-specific preference files within the %LocalAppData% directory.Answer
  3. C
    Grant standard user accounts Full Control permissions over the %ProgramFiles% application installation folder.
  4. D
    Execute the dism command-line utility with the /online switch to assign temporary local administrator rights to standard users.

Answer

The technician should place the application shortcut in the %ProgramData% StartUp directory and configure the software to store user-specific preference files within the %LocalAppData% directory.
Placing an application shortcut in the %ProgramData% StartUp folder ensures that the application launches automatically upon sign-in for all local and domain users on the workstation. Storing user-specific configuration files in %LocalAppData% allows standard non-administrative users to write their personal settings and cache data without triggering User Account Control (UAC) prompts or encountering write-permission errors associated with protected system directories like %ProgramFiles%.

Step-by-Step Solution

1
Identify the mechanism for machine-wide automatic application startup.
Placing the application executable shortcut into %ProgramData%\Microsoft\Windows\Start Menu\Programs\StartUp targets all workstation users.
Shortcuts placed in %ProgramData% apply globally to every user profile created on or signing into the workstation.
2
Identify the correct directory structure for user-writable application preferences.
Directing user preference writes to %LocalAppData% (or %AppData%) ensures seamless operation.
Standard domain users have default write access to their own AppData paths, preventing file access denials and UAC elevation prompts.

Key Concept

Application Installation and Configuration Concepts
Rate this question