Skip to content

Instantly share code, notes, and snippets.

@ferventcoder
Created February 9, 2018 12:58
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ferventcoder/6275daf3aba8042f6e2c73c3e85338e7 to your computer and use it in GitHub Desktop.
Save ferventcoder/6275daf3aba8042f6e2c73c3e85338e7 to your computer and use it in GitHub Desktop.
Disable Google Chrome Automatic Update Policy
$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
@ferventcoder
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment