Unblock All Files in Folder via Powershell
Posted: Wed May 08, 2024 3:39 pm
Code: Select all
get-childitem "C:\[PATH]" | unblock-file
Code: Select all
Get-ChildItem -Path "C:\Path\To\Your\Folder" -Recurse | Unblock-File
Code: Select all
get-childitem "C:\[PATH]" | unblock-file
Code: Select all
Get-ChildItem -Path "C:\Path\To\Your\Folder" -Recurse | Unblock-File