Skip to content

Instantly share code, notes, and snippets.

@SteveGilham
Last active February 25, 2017 09:00
Show Gist options
  • Save SteveGilham/09e66b67224b0b8f9c19ab933531ecb1 to your computer and use it in GitHub Desktop.
Save SteveGilham/09e66b67224b0b8f9c19ab933531ecb1 to your computer and use it in GitHub Desktop.
Start-Transcript
$pool = [System.Management.Automation.Runspaces.RunspaceFactory]::CreateRunspacePool(1,1)
$pool.Open()
# do stuff...
$pool.Close()
# do more stuff...
Stop-Transcript
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment