diff --git a/execution-frameworks/Invoke-AtomicRedTeam/README.md b/execution-frameworks/Invoke-AtomicRedTeam/README.md index 9b65d564..6c7c3599 100644 --- a/execution-frameworks/Invoke-AtomicRedTeam/README.md +++ b/execution-frameworks/Invoke-AtomicRedTeam/README.md @@ -20,6 +20,6 @@ Basic usage Examples: `$currentTechnique = [System.IO.Path]::GetFileNameWithoutExtension($_.FullName);` `$parsedYaml = (ConvertFrom-Yaml (Get-Content $_.FullName -Raw ));` `$AllAtomicTests.Add($currentTechnique, $parsedYaml);` - `$AllAtomicTests | %{ Invoke-Atomic $_ -GenerateOnly}` + `$AllAtomicTests.GetEnumerator() | %{ Invoke-Atomic $_.Value -GenerateOnly}` - Feedback Welcome