Execute an msi 

Msiexec /i <applicationname.msi> /qb! /l*v install.log 
  • /quiet – quiet mode (there is no user interaction) 
  • /passive – unattended mode (the installation shows only a progress bar) 
  • /q – set the UI level: 
  • n – no UI 
  • n+ – no UI except for a modal dialog box displayed at the end. 
  • b – basic UI 
  • b+ – basic UI with a modal dialog box displayed at the end. The modal box is not displayed if the user cancels the installation. Use qb+! or qb!+ to hide the [ Cancel ] button. 
  • b- – basic UI with no modal dialog boxes. Please note that /qb+- is not a supported UI level. Use qb-! or qb!- to hide the [ Cancel ] button. 
  • r – reduced UI 
  • f – full UI 
  • The /l*v install parameter is used to create an installation log 

Leave a Reply

Your email address will not be published. Required fields are marked *