A systems administrator is configuring an automated script to deploy a standardized software package across multiple enterprise workstations using Windows Installer (msiexec.exe). The deployment must execute in the background without displaying any graphical interface or requiring user interaction. Which of the following switches should the administrator append to the command line to ensure a fully quiet installation?
- /qnAnswer
- B/s
- C/x
- D/f
Answer
The switch /qn should be used to execute a completely silent Windows Installer deployment with no user interface.
The /qn switch configures msiexec.exe to run the installation in quiet mode with no user interface displayed. This ensures the installation process executes seamlessly in the background without prompting the end user or presenting GUI dialog boxes.
Step-by-Step Solution
Key Concept
Unattended Application Installation Switches (msiexec)
Estimated Time:1m 0s