Last active
February 25, 2017 09:00
-
-
Save SteveGilham/09e66b67224b0b8f9c19ab933531ecb1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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