我有一个问题,我有一个脚本:
- 与 PSSession 连接(我使用
PSSession
管理员帐户) - 停止 2 进程
- 更改他们的文件
- 启动2过程(问题在这里)
我想在服务器上启动进程,所以我与 PSSession 连接(没问题)
我做 Invoke-Command :
# $pathProg path to my program
Invoke-Command -session $mySession -command {Start-Process $($args[0])} -ArgumentList $pathProg
但它什么也没做(我用 VNC 验证)
我也做 Invoke-Command :
# $pathProg path to my program
Invoke-Command -session $mySession -command {&$($args[0])} -ArgumentList $pathProg
它启动程序(好)但我的脚本等待结束程序(不好)
有人有想法吗?
谢谢