我有当前的 powershell 脚本
$release = read-host "enter release"
$fullPath = "10.0.0.3"
$fullPath = $fullPath + $release
$fullPath = $fullPath + ".bat"
start-process $fullPath
目前,我登录到远程机器以运行此示例 10.0.0.2 的代码。然后代码从另一台远程机器 (10.0.0.3) 中提取文件。我想做的是从我的本地机器(10.0.0.1)执行这个脚本并让它在 .2 上运行。我可以完全访问该框,这样应该会更容易。我该怎么做呢?