Does anyone know how to disable Google Chrome for being automatic update itself, it cause my web application always change?
I have tried these methods:
- Use the
Google UpdateADM templates provided on this page or as described in this article. Set the value ofHKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update\AutoUpdateCheckPeriodMinutesto theREG_DWORDvalue of "0".
but there is no Google in my registry editor, so I can't set it.
- http://www.wikihow.com/Completely-Disable-Google-Chrome-Update doesn't work for me.
On your Chrome browser's address bar, type in 'about:plugins' and hit ENTER.
Find the plugin called 'Google Update' and click disable.
Restart your browser for the changes to take effect.
Have spent a long time trying to disable updates (literally hours, reading forums and testing various (some exotic) solutions), and this was driving me crazy. But there what seems an infallible solution (see further down).
Even using the official Google page with the templates did NOTHING: https://support.google.com/installer/answer/146164?hl=en
I followed scrupulously the instructions of that page, the keys in the registry are all correct, but still going to the "About Google Chrome" when the program is opened, I can see the wheel going around and a few seconds later the update is forced and done.
I have tried using the standalone installer of Google, on a Windows 8.1 machine 64Bits - and yes all the keys are set to :
Dword: AutoUpdateCheckPeriodMinutes Value: 0
Dword: DisableAutoUpdateChecksCheckboxValue Value: 1
Dword: UpdateDefault Value: 0
Dword: Update{8A69D345-D564-463C-AFF1-A69D9E530F96} Value: 0
(this last one requires the service(s) to not be disabled - gupdate/gupdatem)
... both in HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update AND HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Google\Update since it is a 64-bit machine.
So the radical solution to prevent the auto-update, if that helps anyone, is to just purely sort the program responsible for the updates itself! (Just deleting it, OR saving a copy, OR renaming it OR even better just in case I one day need to do an update: Zip the content for future potential re-use).
Easy solution :
1- Go to "C:\Program Files (x86)\Google\ and find the folder "update".
2- There are a couple of options to choose from:
A) first method: Rename the folder:
- Right click > Rename > from Update.bak to Update2.bak for example.
- Now launch Chrome: NO MORE UPDATES!! since it can not find the update program !! Finished.
B) second method: Zip the folder:
- Zip the entire folder by making an archive. (Right click the "Update" folder > Send to Compressed (zip) folder)
- A window might ask you to backup/zip and place it on the desktop, click yes. (message: Windows cannot create the compressed folders here. Do you want to be placed on the desktop instead?)
- Move the newly created zip file to the original location. New window security might pop up > click continue. (message: You need administrator permission to copy this file). [This will be what to unzip if one day you decide to update Chrome - Just remember that when unzipped it will have the following structure: Update > Update > then all the content of the folder. Remember to move everything from inside the second update folder (copy paste) one level up so that is becoming: Update > then all the content of the folder].
- Now that you have a copy just delete the "Update" folder.
- Now launch Chrome: NO MORE UPDATES!! since it can not find the update program !! Finished.
Good luck and Enjoy.
This is just a trick to stop auto update of Google Chrome in Mac OS.
- Go to Applications Folder in Finder.
- Right click Google Chrome and select Show Package Contents.
- Go to Contents directory.
- Open Info.plist file with XCode or other text editor.
- Change the value of the key: KSUpdateURL to an invalid URL. something like https://tools.google.com/service/invalidurl
- Overwrite Info.plist file.
- Restart Google Chrome.
Finally go to Google Chrome Settings / About. You will see Update always fails because the update url was set to an invalid one.
We had a problem printing with v49something.
I blocked tools.google.com on localhost temporarily so that I could install previous version and prevent updating to the version that is breaking the label printing.
So, in /etc/hosts I added:
0.0.0.0 tools.google.com
Not a perfect solution, but was perfect for us.
For Windows only
To completely disable automatic Chrome updates create/edit the following registry keys/dwords under HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update:
- Dword:
AutoUpdateCheckPeriodMinutesValue:0 - Dword:
DisableAutoUpdateChecksCheckboxValueValue:1 - Dword:
UpdateDefaultValue:0 - Dword:
Update{8A69D345-D564-463C-AFF1-A69D9E530F96}Value:0
This last one was the money for me. Until I added it updates were enabled in chrome://chrome.
Note: On 64-bit machines running 32-bit Chrome you may need to put the dwords under the following key instead: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Google\Update.
I created a GitHub gist powershell script to create the dwords under both Policies and Wow6432Node\Policies.
Just add the object yourself using regedit:
Under HKEY_LOCAL_MACHINE\SOFTWARE\Policies,
- Create new Key, "Google"
- In "Google", create new Key, "Update"
- In "Update" go to that key and create Dword, "AutoUpdateCheckPeriodMinutes" which automatically value set to 0, just double check and change if needed.
All done!
Restart might be needed.
I have tried all of these options and none seem to work. Sometimes I actually got a message "GoogleUpdate is disabled" when I checked the "About" page, but somehow a week later it was still updated.
Now I just add GoogleUpdate to the firewall and block internet access. If I check the "About" page I get a message it is updating and after a few seconds that it can't update and I should check my firewall.
I use Commodo Firewall HIPS feature to stop googleupdate.exe even executing. I have set no rules for gooleupdate.exe internet access but if somehow it does get to execute I will get a popup asking if I want to grant it internet access.
Currently trying to bring myself to move away from chrome and as many google products as possible after realising the effort they have gone to, to thwart the tiny minority of people who actually regedited the old auto update and their desire to have more control over your machines than you do.
We automate the Chrome install and disable the auto update with Chef. When Chef tried to rename the entire Update directory, it failed with the "Access denied" error. Because Chef cannot click Yes when a security prompt comes up, the renaming of the entire Update directory does not work for us. We rename only the updater executable with
rename GoogleUpdate.exe GoogleUpdate_disabled.tmp
The entire Chef resource is
batch 'disable_chrome_update' do
code <<-EOF
cd "C:\\Program Files (x86)\\Google\\Update"
rename GoogleUpdate.exe GoogleUpdate_disabled.tmp
EOF
only_if {File.exists?("C:\\Program Files (x86)\\Google\\Update\\GoogleUpdate.exe")}
end
For latest versions, use following steps:
- Go to "msconfig" from Win+R
- Go to Service tab
- Uncheck both "Google Update Service" boxes.
- Click OK and Restart computer to save changes.
Sort of "official method" is listed here: http://www.wikihow.com/Completely-Disable-Google-Chrome-Update
In a nutshell:
1) download http://www.wikihow.com/Completely-Disable-Google-Chrome-Update
2) install it using gpedit.msc (click on Computer Configuration/Administrative Templates, then select 'Add/Remove Templates...' in 'Action' menu)
3) disable Chrome update in
Computer Configuration
Administrative Templates
Classic Administrative Templates
Google
Google Update
Applications
Google Chrome
by setting 'Update Policy Override' to 'Disabled'
New Answer by 12-9-2018
I am facing same problem when I am try to use GooleChrome V-68 it tryto update V-71.
Then I get solution by change the name of file GoogleUpdate.exe
For Windows 10 file path:_ C:\Program Files (x86)\Google\Update
Just rename the the file name of GoogleUpdate.exe to any name.
Check my screenshot for more understand.
the best way to disable Google chrome auto update is as follows
- Go to oldversion dot com and download old version of google
- Use Advanced unsinstaller to completely uninstall current (Updated) version. This will also get rid of registry entries
- Download update freezer and create a shortcut on desktop
- Disable internet
- Restart PC
- With internet disabled, install old version of Chrome
- Ope Update Freezer and Disable Google auto update
You are done
Simple hacky way is to rename Updates folder in C:\Program Files (x86)\Google. Done it to freeze my chrome at 44 untill proper NPAPI replacement is supported by majority of plugins.
TL;DR
Delete the folder C:\Program Files\Google\Update
Here is what I do to stop auto update of chrome. Since you want to disable auto update, you may be installing chrome using the offline installer. If not, then I recommend that you use that; it makes more sense for you anyway! Select the second option that says "Alternate installer for all user accounts", but you may also choose the other option. Anyway, this process should work for all kinds of installation of chrome.
Install chrome and go to about page with the internet connected. This is to trigger the update process.
Open task manager, go to
Processestab and look for the process named something likegoogle updater. You may need to click on 'Show processes from all users' button if your uac is turned onRight-click on google updater process name and select
open file location. Once location is opened in the explorer, end the processDelete the file corresponding to that ended process (by now it is located and selected in the explorer, as was done in step 3; for most this is C:\Program Files\Google\Update, but will be different if you had chosen to install for a single user)
open
Scheduled tasks(by typingsched... in start perhaps)Click on 'Task Scheduler Library` on the left and on the right side search for entries corresponding to google product updates. Disable or delete those tasks
You should be good to go! Auto update is not only disabled but killed forever.
P.S.: step 5 and 6 are simply for overkilling :-)
simple and working
goto C:\Program Files (x86)\Google\update
renam update folder name
Worked for Windows Server 2008 and Chrome v64:
- Rename "Update" directory to "Update2"
- Create blank file called "Update" (without extension)
To get rid of Chrome 44 and go back to 43 I downloaded a stand-alone version of chrome 43 which is an .exe file and I just double clicked on it and it was installed on my computer WITHOUT updating to Chrome 44, to find the link to Chrome 43 have a look to the bottom of this page Google Chrome 64-bit Offline Installer| 45.7 MB or go to enter link description here.
Have Fun :)
For Mac OS, you'll have to remove permissions, but leave the directory
$ sudo chown root:wheel GoogleSoftwareUpdate
$ sudo chmod = GoogleSoftwareUpdate
To Disable Google Chrome Auto Updates in Windows:
Goto "C:\Program Files (x86)\Google"
Rename the directory "Update" to "Update2". Directory delete or rename may not be possible due to the running processes with respect to the corresponding executables in the directory. In that use the Unlocker tool to forcefully delete or rename the directory.
Restart Chrome and Go to Help -> About Google Chrome. Here we can see the message as "update check failed"
That's it !!
For Ubuntu:
- go to 'Software & Updates'.
- click 'Other Software' tab.
- Uncheck the next checkbox 'http://dl.google.com/linux/chrome/deb/ stable main'
Actually, you can shut down the automatic update function through Chrome browser settings. Or you can do it via altering system registry entries. You can view detailed tips here http://blog.doofix.com/how-to-stop-google-chrome-from-automatic-update/ Hope this helps!
On a Mac, you can change the update frequency to a very large value. See:
For myself, I ran the following command in Terminal:
defaults write com.google.Keystone.Agent checkInterval 18000000
来源:https://stackoverflow.com/questions/18483087/how-to-disable-google-chrome-auto-update




