redfive19 Posted March 1, 2006 Posted March 1, 2006 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.
redfive19 Posted March 1, 2006 Author Posted March 1, 2006 hmmm upon further review, I canNOT get it to stop rebooting. If anyone figures this out, please tell me!
RogueSpear Posted March 2, 2006 Posted March 2, 2006 Have you tried adding REBOOT=ReallySupress to your command?
redfive19 Posted March 3, 2006 Author Posted March 3, 2006 i'll try and get back to you, thanks for the suggestion!
MHz Posted March 3, 2006 Posted March 3, 2006 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')
redfive19 Posted March 3, 2006 Author Posted March 3, 2006 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now