Last active
June 20, 2023 16:15
-
-
Save rwp0/6b08c6c7b7962dbdab9b6aefc81f03ec to your computer and use it in GitHub Desktop.
Enable Chrome Images in Registry using PowerShell
This file contains hidden or 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
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
Reads