gpt4 book ai didi

powershell - 在新线程 powershell 中调用函数

转载 作者:行者123 更新时间:2023-12-02 23:32:02 26 4
gpt4 key购买 nike

如何创建新线程并异步运行?我有一个事件应该在运行时更新文本框,所以我需要在不同的线程中运行它。
(PowerShell 2)。
我怎样才能在 PowerShell 中做到这一点?

最佳答案

后台工作是您正在寻找的。

http://msdn.microsoft.com/en-us/library/dd878288(VS.85).aspx

以下是帮助中的一些示例:

使用 Start-Job 开始工作:

C:\PS>start-job -scriptblock {get-process}

Id Name State HasMoreData Location Command
--- ---- ----- ----------- -------- -------
1 Job1 Running True localhost get-process

使用 AsJob 参数启 Action 业:
C:\PS>$jobWRM = invoke-command -computerName (get-content servers.txt) -scriptblock {get-service winrm} -jobname WinRM -throttlelimit 16 -AsJob

关于powershell - 在新线程 powershell 中调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3710812/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com