Consider the following syntax, where brackets indicate optional parameters and the vertical bar separates possible values.
[start /w] msiexec.exe /i Enscape.msi [/quiet ACCEPTEULA=1] [SKIPREQUIREMENTS=1] [ALLUSERS=1] [INSTALLLOCATION="Drive:\Path\To\Installation Directory"] [INSTALLLEVEL=0 ADDLOCAL=Enscape[,ArchiCAD][,Rhino][,Revit][,SketchUp][,Vectorworks]]
NOTE: the ‘Enscape.msi’ installer name in the syntax example above will likely be named differently, according to the version number, and that naming should be observed when compiling your syntax.
Here is the breakdown of the available options and what they refer to.
Consider the following two examples for the Command Prompt.
To perform a silent installation for all users to “C:\Program Files\Enscape” you would use the following command with admin privileges:
start /w msiexec.exe /i Enscape.msi /quiet ACCEPTEULA=1 ALLUSERS=1 INSTALLLOCATION="C:\Program Files\Enscape"
For a silent installation of Enscape with only the SketchUp plugin for the current user:
start /w msiexec.exe /i Enscape.msi /quiet ACCEPTEULA=1 INSTALLLEVEL=0 ADDLOCAL=Enscape,SketchUp
The second example will silently install Enscape to “%LocalAppData%\Programs\Enscape” for the current user. No “EULA” window will be displayed. The plugin will be installed for SketchUp. No admin privileges will be required.
In regards to uninstaller options with the MSI, for when you want to uninstall Enscape versions prior to version 2.6, please click here.