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:

          https://www.get-blog.com/?p=22

  • Using .NET multithreading

          https://www.get-blog.com/?p=189 

 

Microsoft documentation about Jobs

https://msdn.microsoft.com/en-us/library/dd878288%28VS.85%29.aspx

PowerShell internals and PowerShell threading (using .NET)

https://www.codeproject.com/Articles/261193/ps

 

 

The [RunspaceFactory] and [PowerShell] Accelerators (Using .NET)

https://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