fix: update log size message from 1 GB to 1024 MB in WELA.ps1

This commit is contained in:
fukusuket
2025-10-22 00:13:17 +09:00
parent e23e921382
commit 50d010a940

View File

@@ -5471,7 +5471,7 @@ function ConfigureAuditSettings {
} }
if ($response -eq "" -or $response -eq "Y" -or $response -eq "y") { if ($response -eq "" -or $response -eq "Y" -or $response -eq "y") {
wevtutil sl $log /ms:$oneGB 2>&1 | Out-Null wevtutil sl $log /ms:$oneGB 2>&1 | Out-Null
Write-Host "[OK] $log : 1 GB" -ForegroundColor Green Write-Host "[OK] $log : 1024 MB" -ForegroundColor Green
} else { } else {
Write-Host "[SKIPPED] $log" -ForegroundColor Yellow Write-Host "[SKIPPED] $log" -ForegroundColor Yellow
} }