From d54789e6771c3de9b24625c8598f5dc435502feb Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Wed, 2 Apr 2025 09:06:55 +0900 Subject: [PATCH] feat: verbose security --- WELAVerboseSecAudit.psm1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/WELAVerboseSecAudit.psm1 b/WELAVerboseSecAudit.psm1 index 5aa1ebfa..e4e44df0 100644 --- a/WELAVerboseSecAudit.psm1 +++ b/WELAVerboseSecAudit.psm1 @@ -234,7 +234,8 @@ System $msgLines = $msg -split "`n" foreach ($line in $msgLines) { if ($line -contains 'disabled') { - Write-Host -NoNewline $line -ForegroundColor Red + Write-Host $line -ForegroundColor Red + Write-Host "****" } else { Write-Host $line }