How to install it in silent mode? I need syntax and I also need to mention custom INSTALLDIR (for msiexec.exe).
Answer by
Stephen Prastman
If the installer is using MSIEXEC, go to Start > Run > and type msiexec without any options. The window will appear displaying all the available options.
Commands:
/quiet > Quiet mode, no user interaction
/i "msi path" TARGETDIR="PATH to FOLDER[C:\yourfolder]" /qb.
The "msi path" is the path to your application.msi or .exe if the file is deployed as .exe through MSI.
How to install it in silent mode? I need syntax and I also need to mention custom INSTALLDIR (for msiexec.exe).
If the installer is using MSIEXEC, go to Start > Run > and type msiexec without any options. The window will appear displaying all the available options.
Commands:
/quiet > Quiet mode, no user interaction
/i "msi path" TARGETDIR="PATH to FOLDER[C:\yourfolder]" /qb.
The "msi path" is the path to your application.msi or .exe if the file is deployed as .exe through MSI.