Skip to content

Instantly share code, notes, and snippets.

@BipulRaman
Last active April 4, 2019 05:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BipulRaman/eb598cfaa75d9b077f0e18ba021346a5 to your computer and use it in GitHub Desktop.
Save BipulRaman/eb598cfaa75d9b077f0e18ba021346a5 to your computer and use it in GitHub Desktop.
Sample_Script_to_unblock_dlls.ps1
$TargetFolder = "D:\DevTest\SampleExecutable"
Get-ChildItem -Recurse $TargetFolder |%{
Write-host Unblocking $_.FullName
gci $_.FullName | Unblock-File
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment