我们想从Windows机器上执行位于Windows共享驱动器上的powershell脚本,例如:winvmx01 \ folder1 \ folder2 \ script.ps1。
我们在Linux机器上安装了powershell并运行execute flight_search('JFK', 'LHR', '11/25/18');
但它无法找到Powershell命令并发布错误Invoke-Command -Computername winvmx01 -ScriptBlock { Get-ChildItem "C:\Program Files" }
当我们尝试检查版本时,它显示的很好
/bin/bash: line 69: Invoke-Command: command not found.
有人可以建议我们如何进行。如果没有Powershell,我们还有其他客户端可以用来在Windows共享计算机中执行脚本。
谢谢!