Skip to content

Instantly share code, notes, and snippets.

@russellds
Created April 22, 2022 20:19
Show Gist options
  • Save russellds/4173c4f7dae43f72aab08cdcaf95d538 to your computer and use it in GitHub Desktop.
Save russellds/4173c4f7dae43f72aab08cdcaf95d538 to your computer and use it in GitHub Desktop.
ForEach-Object -Parallet with a Synchronized HashTable and Injecting a Function
function doStuff {
param(
[string]
$Item
)
$htDoStuff.($Item) = @{}
}
$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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment