Via het volgende batchscript, kun je de googleupdater verwijderen:

@Echo ########################################
@Echo ## Google Update uninstall script ##
@Echo ########################################

@Echo Off
SET GoogleUpdater = “C:\Program Files\Google\Google Updater\GoogleUpdater.exe”

If Exist GoogleUpdater goto Uninstall
@Echo GoogleUpder is not installed on your PC.
goto End

:Uninstall
GoogleUpdater -uninstall

@Echo Please restart your PC. goto End

:End
pause
exit


bron: http://www.google.com/support/

Advertisement

7 thoughts on “How to: Uninstall the Google Updater

  1. Google Updater is not in C:\Program Files\Google\Google Updater\GoogleUpdater.exe folder.

    instead it is in C:\Program Files\Google\Update\1.1.25.0\GoogleUpdater.exe

    And it does not accept -Unistall option – cannot, no such option is available in code of program.

  2. The older “GoogleUpdaterService.exe” (typically installed in C:\Program Files\Google\Common\Google Updater) that has no uninstaller entry can be uninstalled with the following command line:

    GoogleUpdaterService /UnregServer

    This will stop the service and delete it´s entry so that the EXE can be deleted.

    Verified with version 2.0.767.25472

  3. Thanks Martin, your post got me to check for the Old GoogleUpdaterService.exe file and sure enough : ) I didn’t delete it in the same manner as you detailed but I was successful just the same; thanks to your advice.

    Many thanks sir.

  4. it seems that does the trick from all the post I see, but since I am a computer novice I don´t know how to add the command line to the file. I know it probably sounds stupid, but if you could help me out or anyone else who has knowledge on how to get that accomplished. Thank you.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.