Derick Posted January 8, 2007 Posted January 8, 2007 Appreciate if you can show me how to execute MSI + MSI as below : msiexec.exe /i "c:\apps\XXX.MSI" TRANSFORMS="XX.MST" ALLUSERS="1" /qb Thank You
MadBoy Posted January 8, 2007 Posted January 8, 2007 Appreciate if you can show me how to execute MSI + MSI as below : msiexec.exe /i "c:\apps\XXX.MSI" TRANSFORMS="XX.MST" ALLUSERS="1" /qb Thank You That's how i use it.. $server_to_use = "server" $Microsoft_trigger = " TRANSFORMS=Unattended.MST /qb-" $Office2003_comment = "Microsoft Office 2003" $Office2003_path = "\Install\Advanced\Microsoft_Office2003\setup.exe" $Office2003 = "\\" & $server_to_use & $Office2003_path & $Microsoft_trigger If FileExists("\\" & $server_to_use & $Office2003_path) Then RunWait($Office2003, "") EndIf My little company: Evotec (PL version: Evotec)
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