Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Other than that, the normal MSIEXEC command-line options apply.

Example (CMD) (installs all addins):

Code Block
languagepowershell
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.

...