Unblock All Files in Folder via Powershell

Post Reply
admin
Site Admin
Posts: 39
Joined: Mon Sep 16, 2024 5:00 pm
Contact:

Unblock All Files in Folder via Powershell

Post: # 244Post 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
Post Reply

Who is online

Users browsing this forum: No registered users and 2 guests