I have trnasformed googlechromestandaloneenterprise.msi using orca.
Answers (6)
Shall we just guess what happened? "Does not install" doesn't tell us anything, does it?
You must add the name of a log file if you use the '/l' argument. Did you test this on a sacrificial PC/VM?
Also, your post has *nothing* to do with virtualisation so please remove that tag and add one of more relevance.
bless.
your cmd should be:
msiexec /I "name of the.MSI" TRANSFORMS="The name of the MST with customisations in it.mst" /qn
helping you a bit more....
msiexec /i "googlechromestandaloneenterprise.msi" TRANSFORMS="googlechromestandaloneenterprise64.mst" /QN
I see you have the logging switched on, I think its better to tell it where to write the log file and as mentioned, give it a name. Technically you don't need the /qn switch on this installer as there are no dialogues, but, best practise blah blah.
so try this...
msiexec /i "googlechromestandaloneenterprise.msi" TRANSFORMS="googlechromestandaloneenterprise64.mst" /QN /L*v "%temp%\Chrome.log"
Unless you actually copied your MSI and MST to "C:\Program Files(x86)\google" (which would be pretty weird) your paths wont work.
As many people have written on more than one occasion on a small blog called itninja, use %~dp0 to make it all relative.
try copying this into a file and save it as Install.cmd
msiexec /i "%~dp0googlechromestandaloneenterprise.msi" TRANSFORMS="%~dp0googlechromestandaloneenterprise64.mst" /QN /L*v "%temp%\Chrome.log"
That should sort you out. Slightly curious too about why you call the MST something to do with x64. You shouldn't need to do much with the MSI.
Good luck
Comments:
-
Great work.. hope he understand - Prabs 9 years ago
Comments:
-
Hi I download the 64bit and add the master_preference - cj1 9 years ago
C:\Windows\System32\msiexec /i "C:\ProgramFiles(x86)\google\googlechromestandaloneenterprise.msi"TRANSFORMS=""C:\ProgramFiles(x86)\google\googlechromestandaloneenterprise64.mst" /l*v "c:\temp\googlechromestandaloneenterprise64 Install.log" /qb+