Created
April 22, 2022 20:36
-
-
Save russellds/0ef963af41b8bb37e7502a351dbe8756 to your computer and use it in GitHub Desktop.
Injection PowerShell Module
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doStuff { | |
param( | |
[string] | |
$Item, | |
[string] | |
$Value = 'default' | |
) | |
$htDoStuff.($Item) = $Value | |
} | |
function Invoke-DoStuff { | |
$stringFuncDoStuff = "${function:doStuff}" | |
$htDoStuff = [System.Collections.Hashtable]::Synchronized((New-Object System.Collections.Hashtable)) #@{} | |
$array = @('first', 'second') | |
# ForEach-Object -Parallel | |
$array | ForEach-Object -Parallel { | |
$function:doStuff = $using:stringFuncDoStuff | |
$htDoStuff = $using:htDoStuff | |
doStuff -Item $PSItem | |
} | |
$htDoStuff | |
} | |
function Invoke-ModuleDoStuff { | |
$stringFuncDoStuff = "${function:doStuff}" | |
$array = @('first', 'second') | |
# ForEach-Object -Parallel | |
$array | ForEach-Object -Parallel { | |
$function:doStuff = $using:stringFuncDoStuff | |
$htDoStuff = $using:moduleHtDoStuff | |
doStuff -Item $PSItem -Value $(Get-Date).Ticks | |
} | |
$moduleHtDoStuff | |
} | |
$moduleHtDoStuff = [System.Collections.Hashtable]::Synchronized((New-Object System.Collections.Hashtable)) #@{} | |
Export-ModuleMember -Function 'Invoke-DoStuff', 'Invoke-ModuleDoStuff' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment