Page 1 of 1

Unblock All Files in Folder via Powershell

Posted: Wed May 08, 2024 3:39 pm
by admin

Code: Select all

get-childitem "C:\[PATH]" | unblock-file
Or Recursively

Code: Select all

Get-ChildItem -Path "C:\Path\To\Your\Folder" -Recurse | Unblock-File