This commit is contained in:
fukusuket
2025-03-13 23:49:29 +09:00
parent a4c5ddf8df
commit 449f1fde5d

View File

@@ -13,7 +13,14 @@ $logo = @"
"@
Write-Host $logo -ForegroundColor Green
foreach ($line in $logo -split "`n") {
foreach ($char in $line.tochararray()) {
if ($([int]$char) -le 9580 -and $([int]$char) -ge 9552) {
Write-host -ForegroundColor Green $char -NoNewline
}
}
Write-Host ""
}
$auditpolOutput = Get-Content -Path $outputFilePath
$filteredOutput = $auditpolOutput | Select-String -NotMatch "No Auditing"