Skip to content

Instantly share code, notes, and snippets.

@t-mat
Created September 11, 2012 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save t-mat/3696044 to your computer and use it in GitHub Desktop.
Save t-mat/3696044 to your computer and use it in GitHub Desktop.
Google Chrome の自動更新を止める

Google Chrome の自動更新を止める

Chromium のドキュメントにある方法 (Turning Off Auto Updates in Google Chrome) を使う。

自動アップデートしない

reg add HKLM\SOFTWARE\Policies\Google\Update /v AutoUpdateCheckPeriodMinutes /d 0 /f

元に戻す (タスクスケジューラを用いて、1時間に1回、自動アップデート動作を行う)

reg delete HKLM\SOFTWARE\Policies\Google\Update /v AutoUpdateCheckPeriodMinutes /f

1日1回にする

reg add HKLM\SOFTWARE\Policies\Google\Update /v AutoUpdateCheckPeriodMinutes /d 1440 /f 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment