上運行我目前的PowerShell腳本執行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上運行。我可以完全訪問該框,以便更容易。我該如何去做這件事?
需要改變 「$ Filetoexe = ARGS [0]」 至「$ Filetoexe = $ args [0]」讓它起作用 – letsgetsilly