Chrome uninstall help
So i have a chrome installer that is all set and works fine-except it only works with clients that do not have chrome installed. For whatever reason, the installer does not either update or uninstall the previous version of Chrome that is installed.
has anyone figured out a way to do this? I looked around and found this link-
http://msiworld.blogspot.com.au/2012/06/packaging-google-chrome-for-enterprise.html
But I could not get the script mentioned to run. If I open the msi in Orca, I can see references to removing existing products, but I have no idea what I would want to change the line to(I am attaching a screenshot so you can see what I am referering to.
Any help is appreciated
Thanks
Answers (4)
The Chrome Enterprise/Business Installer will not uninstall previous versions of the consumer version of Chrome. You will need to do a 2 step process to perform this. You could have the VBS and your MSI installer and just run them both in 1 swoop with a BAT file.
Comments:
-
Thank you for that clarification. I will try to create a zip file and see what happens.
Thank you - dkurz8814 11 years ago
http://www.google.com/intl/en/chrome/business/browser/
are you using the enterprise msi?
Comments:
-
yes i am - dkurz8814 11 years ago
Hello,
Sorry, the picture is too small, i cannot read the field.
I think, you can trying with the "upgrade" table to uninstall the previous msi.
With something like that :
UpgradeCode ="PreviousMaxVersionGUID" VersionMin="" VersionMax="PreviousMaxVersion" Language="PackageLanguage" (ex :1033) Attributes="769" (=512+256: Remove all previous version, Max include) Remove="" ActionProperty="ISFOUNDNEWERPRODUCTVERSION" (Upgrage if the previous version detected)
Hope, this help you.