Powershell V2 - Links for Multi-threading techniques
Udated 10/12/2014 – Ryan Witschger blog address – the most useful and clear article so far in my opinion explaining how to do the best multithreading tasks, using Jobs and using .Net
Multi-Threading in PowerShell V2
- Using Jobs:
- Using .NET multithreading
http://www.get-blog.com/?p=189
Microsoft documentation about Jobs
http://msdn.microsoft.com/en-us/library/dd878288%28VS.85%29.aspx
PowerShell internals and PowerShell threading (using .NET)
http://www.codeproject.com/Articles/261193/ps
The [RunspaceFactory] and [PowerShell] Accelerators (Using .NET)
http://www.nivot.org/post/2009/01/22/CTP3TheRunspaceFactoryAndPowerShellAccelerators.aspx
I’ll post some of my examples once I succeed running them using .NET threading inside Powershell. Using Jobs is the easiest part, but takes more CPU resource from what I read so far…
Sam