Use the Command Line
If you are an IT administrator, you can install, upgrade, or uninstall the application using the installer file via the command line.
To run the MSI file via the command-line, use the following steps as a guide:
-
Locate the MSI installer file.
-
Press and hold SHIFT, right-click on the file, and select copy to copy its path.
-
From the Start menu, right-click on the command prompt or Windows PowerShell and select Run as Administrator.
-
In the command prompt or Windows PowerShell, use standard MSI command line parameters, along with the file path, to customize the installation as needed.
The following table shows examples of the most useful command line options.
Purpose Syntax Example Normal installation or upgrade process using the full install wizard msiexec /i "C:\Users\UserName\Downloads\OneStream_Client_7.0.1\OneStreamDesktop\en-us\Setup.msi" Perform a silent install or upgrade, no user interaction required msiexec /i "C:\Users\UserName\Downloads\OneStream_Client_7.0.1\OneStreamDesktop\en-us\Setup.msi" /quiet Perform an unattended install or upgrade, the installation only shows a progress bar msiexec /i "C:\Users\UserName\Downloads\OneStream_Client_7.0.1\OneStreamDesktop\en-us\Setup.msi” /passive Uninstall the package msiexec /x "C:\Users\UserName\Downloads\OneStream_Client_7.0.1\OneStreamDesktop\en-us\Setup.msi"