Forum Discussion
AlexeyK
Alumni
14 years agoTry using this code --
Set objShell = Sys.OleObject("WScript.Shell")
objResult = objShell.Run("""C:\My Apps\My App Installer.msi""", 1, True)
-- or this --
Set objShell = Sys.OleObject("WScript.Shell")
objResult = objShell.Run("msiexec.exe ""C:\My Apps\My App Installer.msi"" /cmdLineArg1 /cmdLineArg2", 1, True)