Command line deployment is useful for scripting, remote deployment via RMM tools, or one-off installations. Desktop Connect uses standard MSIEXEC or EXE installer commands.
Windows MSI Installation
Basic Silent Install:
Silent Uninstall:
Install with Logging (Troubleshooting):
The log file will be created at C:\\Users\[YourUsername]\\AppData\\Local\\Temp\\atinstall.log. Review this log if installation fails.
Key Flags Explained
/i— Install (for EXE: install mode)/x— Uninstall-Quiet— Silent mode (no user prompts or UI)-Qor/Q— Quiet (alternative syntax, some installers use this)-QNor/QN— Quiet, no restart (suppresses automatic reboot)/l*v— Log all messages to a verbose log file
Compatibility with MDM Tools
Different MDM tools expect different quiet flags. Consult your MDM documentation for the proper syntax:
- Microsoft Intune: Typically expects
/exenoui /qnfor EXE and/qnfor MSI - Jamf (Windows): Supports
-Quietand/Q - Workspace One: Typically uses
/Quiet - Altiris: Check your deployment template — varies by configuration
Deploying via RMM Tools
If using an RMM tool with Remote Command Line Access (like ConnectWise Manage, SolarWinds RMM, etc.):
1 Download the MyZen installer to your local computer
2 In your RMM tool, create a command deployment task
3 Use the silent install command (MSI or EXE depending on your installer type)
4 Deploy to your target device(s)
5 Monitor the deployment result and log for any errors
Important: Do Not Rename the Installer
Exit Codes
The installer returns the following exit codes:
0— Success1603— Installation failure (check log file for details)1618— Another installation is in progress (wait and retry)1642— Invalid transform (MSI syntax error — contact support)
If installation fails with exit code 1603, attach the log file from the command above (%TEMP%\\atinstall.log) when contacting Prodoscore support.