From 143ae781135fde31a7a4f12a3ea0578218bc1562 Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Wed, 12 Mar 2025 08:59:02 +0900 Subject: [PATCH] update --- config/WELA.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/WELA.ps1 b/config/WELA.ps1 index 76e6a90b..dba24688 100644 --- a/config/WELA.ps1 +++ b/config/WELA.ps1 @@ -6,7 +6,7 @@ $filteredOutput = $auditpolOutput | Select-String -NotMatch "No Auditing" $extractedStrings = [System.Collections.Generic.HashSet[string]]::new() $filteredOutput | ForEach-Object { if ($_ -match '{(.*?)}') { - $extractedStrings.Add($matches[1]) + [void]$extractedStrings.Add($matches[1]) } }