feat: verbose security

This commit is contained in:
fukusuket
2025-04-02 09:08:14 +09:00
parent f6380fe710
commit a243eb716e

View File

@@ -233,10 +233,9 @@ System
$msgLines = $msg -split "`n"
foreach ($line in $msgLines) {
if ($line -contains 'disabled') {
if ($line -match '.*disabled.*') {
Write-Host $line -ForegroundColor Red
} else {
Write-Host "****"
Write-Host $line
}
}