...
Other than that, the normal MSIEXEC command-line options apply.
Example (CMD) (installs all addins):
Code Block | ||
---|---|---|
| ||
msiexec /qb /i "primedocs.Install(x86).msi" APPLICATIONFOLDER="C:\Program Files (x86)\primedocs" SERVICEENDPOINTURL="https://appurl/Service/primedocs.svc" AUTHCLIENTID="DefaultClient" AUTHCLIENTSECRET="GENERATED_PASSWORD" SILENTSSOAUTHENTICATIONTRYONSTARTUP="true" INSTALLDESKTOPSHORTCUT=1 AUTOSTART=1 /l* PrimeDocsInstall.log AddLocal=WordAddInFeature,CommonAddInWordFeatureCommonAddInWordFeature,CommonAddInPowerPointFeature,CommonAddInExcelFeature,WordAddInFeature,OutlookAddInFeature |
NOTE
The example above only works in CMD.
In PowerShell, the arguments would have to be passed differently.
...