Jump to content

Recommended Posts

Posted

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.


Posted
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')

Posted

MHz, point taken. You're my resident AutoIt god, I've learned a lot from your scripts. I've gotten in the habit of doing it that way but yours makes much more sense. thanks!

-redfive

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...