Created
February 25, 2017 09:13
-
-
Save SteveGilham/7807af17011094cef9edecad21abf5c9 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) | |
$save = [System.Management.Automation.Runspaces.Runspace]::DefaultRunspace | |
try { | |
[System.Management.Automation.Runspaces.Runspace]::DefaultRunspace = $null | |
$pool.Open() | |
# do stuff... | |
$pool.Close() | |
# do more stuff... | |
} | |
finally { | |
[System.Management.Automation.Runspaces.Runspace]::DefaultRunspace = $save | |
} | |
Stop-Transcript |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment