Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Use PowerShell to change the concurrent limit of remote command executions.
June 24, 2012
A: The queuing of commands is by design, done to control the amount of concurrent remote command executions. However, you can change the concurrent limit by using the -ThrottleLimit parameter for Invoke-Command to increase it. Here's an example of how to use it:
Invoke-Command -ThrottleLimit 64 -ComputerName a,b,c -ScriptBlock {command}
You May Also Like