我正在尝试使用Powershell从远程计算机运行python脚本。我正在使用-indisconnectedsession参数,但我认为这会导致2小时超时?当我使用命令行从远程计算机中运行python脚本时,它不会超时。有人可以澄清一下我如何延迟断开会话的超时时间。
我的powershell命令如下:
function Run-RemoteAsync($computerName, $pname, $scriptPath, $pargs)
{
$cred = Get-QRemote-Credential
Invoke-Command -indisconnectedsession -ComputerName $computerName -Credential $cred -ScriptBlock {powershell -c "$Using:pname '$Using:scriptPath' $Using:pargs"} -ConfigurationName QRemoteConfiguration
}