我有一个只能同步工作的 powershell 函数。我想更新这个函数,以便我可以并行触发对 Python 脚本的多个调用。有没有人知道如何使用 powershell 异步调用 Python 脚本,记住每个 Python 脚本本质上都是一个 while 循环,直到 24 小时后才结束。powershell 函数接收远程机器、python 虚拟环境、python 脚本的路径和参数。
以下是迄今为止所做的工作:
function Run-Remote($computerName, $pname, $scriptPath, $pargs)
{
$cred = Get-QRemote-Credential
Invoke-Command -ComputerName $computerName -Credential $cred -ScriptBlock {powershell -c "$Using:pname '$Using:scriptPath' $Using:pargs"} -ConfigurationName QRemoteConfiguration
}
汪汪一只猫
相关分类