Created
February 9, 2018 12:58
-
-
Save ferventcoder/6275daf3aba8042f6e2c73c3e85338e7 to your computer and use it in GitHub Desktop.
Disable Google Chrome Automatic Update Policy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$googlePoliciesKey = 'HKLM:\Software\Policies\Google' | |
if (!(Test-Path $googlePoliciesKey)) { | |
New-Item -Path $googlePoliciesKey -Force | Out-Null | |
} | |
New-ItemProperty $googlePoliciesKey -Name 'UpdateDefault' -Value 0 -PropertyType DWORD -Force | Out-Null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Based on https://www.wikihow.com/Completely-Disable-Google-Chrome-Update