From a60853060e732b0b1b1abee7e344ce2c20ca5ea9 Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Thu, 13 Mar 2025 23:21:56 +0900 Subject: [PATCH] update --- WELA.ps1 | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/WELA.ps1 b/WELA.ps1 index e212a830..981f73fc 100644 --- a/WELA.ps1 +++ b/WELA.ps1 @@ -1,3 +1,14 @@ +$logo = @" +┃┃┃┃┃┃┏━━┫┃ ┃┏━┓┃ +┃┃┃┃┃┃┗━━┫┃ ┃┃ ┃┃ +┃┗┛┗┛┃┏━━┫┃ ┏┫┗━┛┃ +┗┓┏┓┏┫┗━━┫┗━┛┃┏━┓┃ +┗┛┗┛┗━━━┻━━━┻┛ ┗┛ +by Yamato Security +"@ + +Write-Host $logo -ForegroundColor Green + # Step 1: Run the auditpol command using cmd.exe and redirect its output to a file $outputFilePath = "auditpol_output.txt" Start-Process -FilePath "cmd.exe" -ArgumentList "/c chcp 437 & auditpol /get /category:* /r > $outputFilePath" -NoNewWindow -Wait