redfive19, on Mar 2 2006, 03:16 AM, said:
RunWait("msiexec /i " & '"' & "Adobe Audition 2.0.msi" & '"' & " /QN /norestart")
FileChangeDir(@scriptdir & "\commonfilesinstaller\")
RunWait("msiexec /i " & '"' & "Adobe Common File Installer.msi" & '"' & " /QN")
FileChangeDir(@scriptdir & "\bridge\")
RunWait("msiexec /i " & '"' & "Adobe Bridge 1.0.msi /QN" & '"' & " /QN")
FileChangeDir(@scriptdir & "\help center\")
RunWait("msiexec /i " & '"' & "Adobe Help Center 1.0.msi" & '"' & " /QN")
see if it works for you. the installer does NOT prompt me for activation so you'll have to do it on first start of the app.
Gosh, it looks like you are making life hard for yourself. Try using single quote by default and use double quotes to wrap paths with spaces as shown below. Your command parameters are now all one string. I have not added RogueSpear's suggestion as you can do that.
RunWait('msiexec /i "Adobe Audition 2.0.msi" /QN /norestart')
FileChangeDir(@ScriptDir & '\commonfilesinstaller')
RunWait('msiexec /i "Adobe Common File Installer.msi" /QN')
FileChangeDir(@ScriptDir & '\bridge')
RunWait('msiexec /i "Adobe Bridge 1.0.msi" /QN')
FileChangeDir(@ScriptDir & '\help center')
RunWait('msiexec /i "Adobe Help Center 1.0.msi" /QN')