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.)
- Place the application shortcut in the %ProgramData% StartUp directory.Answer
- Configure the software to store user-specific preference files within the %LocalAppData% directory.Answer
- CGrant standard user accounts Full Control permissions over the %ProgramFiles% application installation folder.
- DExecute 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
Key Concept
Application Installation and Configuration Concepts