-
-
Save petersgiles/771822f09bba94fc3a8e8b6154e2b2cc to your computer and use it in GitHub Desktop.
Turn off Downloads being "Blocked"
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
$reg = @{ | |
Path = 'Registry::HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments' | |
Name = 'SaveZoneInformation' | |
PropertyType = 'DWORD' | |
Value = 1 | |
} | |
if (-not (Test-Path -Path $reg.Path)) { | |
New-Item $reg.Path | |
} | |
try | |
{ | |
New-ItemProperty @reg -ErrorAction Stop | |
} | |
catch | |
{ | |
Set-ItemProperty -Path $reg.Path -Name $reg.Name -Value $reg.Value | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment