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