Silent distribution script examples

Scripts for silent distribution use the following format:

 

msiexec /i [path to msi]\[msi file name] [parameter value pairs] /q

 

The following are examples of scripts to run silent distribution. Use the command msiexec and replace values with ones for your environment where applicable.

To install silently

msiexec /i "C:\Install\BranchRecorder.msi" /q INSTALLDIR="c:\BranchRecorder" BR_BRANCHSERVER="CBH-RC-VM1" BR_TOKEN_KEY="cbh_TokeyKeyValue" BR_USEHTTPS="Y"

To uninstall silently

msiexec /x "C:\Install\BranchRecorder.msi" /q