We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 213c7c9 commit 143ae78Copy full SHA for 143ae78
config/WELA.ps1
@@ -6,7 +6,7 @@ $filteredOutput = $auditpolOutput | Select-String -NotMatch "No Auditing"
6
$extractedStrings = [System.Collections.Generic.HashSet[string]]::new()
7
$filteredOutput | ForEach-Object {
8
if ($_ -match '{(.*?)}') {
9
- $extractedStrings.Add($matches[1])
+ [void]$extractedStrings.Add($matches[1])
10
}
11
12
0 commit comments