Skip to content

Instantly share code, notes, and snippets.

@rwp0
Last active June 20, 2023 16:15
Show Gist options
  • Save rwp0/6b08c6c7b7962dbdab9b6aefc81f03ec to your computer and use it in GitHub Desktop.
Save rwp0/6b08c6c7b7962dbdab9b6aefc81f03ec to your computer and use it in GitHub Desktop.
Enable Chrome Images in Registry using PowerShell
New-ItemProperty -path HKLM:\SOFTWARE\Policies\Google\Chrome ^
-Name DefaultImagesSetting ^
-Value 0 ^
-PropertyType String ^
-Force
<#
DefaultImagesSetting : 0
PSPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome
PSParentPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google
PSChildName : Chrome
PSDrive : HKLM
PSProvider : Microsoft.PowerShell.Core\Registry
#>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment