Via windows cmd batchscript, uninstall the google updater service:
#=================================================================================
@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
#=================================================================================