Please fill in the below form with your query and we will get back to you.
# Get files $allFiles = Get-ChildItem -Path $Path -File -Recurse -ErrorAction SilentlyContinue
Get-ChildItem -Path "C:\Your\Folder\Path" -Recurse | Unblock-File Use code with caution. Copied to clipboard Breakdown of the Command
# Add to $PROFILE function ub Get-ChildItem -Path $args[0] -File -Recurse Set-Alias -Name unblock-all -Value ub
Get-ChildItem -Recurse -ErrorAction SilentlyContinue | Unblock-File Use code with caution. Copied to clipboard Why do you need to do this?