How does threading in powershell work?

前端 未结 6 1456
有刺的猬
有刺的猬 2020-12-23 23:14

I want to parallelize some file-parsing actions with network activity in powershell. Quick google for it, start-thread looked like a solution, but:

T

6条回答
  •  误落风尘
    2020-12-23 23:43

    There is an article about background jobs in powershell on MSDN at http://msdn.microsoft.com/en-us/library/dd878288(VS.85).aspx.

    You can also read about jobs in powershell itself.

    > help about_Jobs
    

提交回复
热议问题