Write-Host "Found $($blockedFiles.Count) blocked files" -ForegroundColor Cyan
Usage:
if ($WhatIf) Format-Table -AutoSize return get-childitem -recurse -file | unblock-file
param( [Parameter(Mandatory=$false)] [string]$Path = ".", [Parameter(Mandatory=$false)] [switch]$WhatIf,
if ($Confirm -and $blockedFiles.Count -gt 0) $response = Read-Host "Unblock these $($blockedFiles.Count) files? (Y/N)" if ($response -ne 'Y') return Write-Host "Found $($blockedFiles
$files = Get-ChildItem -Path $Path -Recurse -File $blockedFiles = @()
[Parameter(Mandatory=$false)] [switch]$Confirm ) get-childitem -recurse -file | unblock-file
Get-Content -Path "downloaded.exe" -Stream Zone.Identifier Sample output: