有没有办法可以通过Linux上的SSH访问等命令行从Linux工作站上的Windows服务器上使用Windows PowerShell?
解决方法
>在Windows机器上安装SSH服务器,SSH,在Windows框中运行Powershell@H_502_9@>在Linux上运行RDP客户端,在RDP中,在Windows框中运行Powershell@H_502_9@>使用Powershell Web Access,使用浏览器点击POSH WA网关服务器,通过浏览器运行Powershell
http://technet.microsoft.com/en-us/library/hh831611.aspx
我不知道任何适用于Linux的POSH可执行文件,因此您无法直接从Linux中的shell运行POSH命令 – 您必须首先以某种方式进入Windows机器,如RDP,远程控制台(DRAC,iLO),或POSH Web Access.
/编辑 – 看起来有一些选项.@H_502_9@http://sharpcodenotes.blogspot.com/2014/01/running-powershell-commands-from-linux.html
你可以尝试让OpenWSMan做你想做的事情,但我认为你必须像URL请求一样制定每个命令,而不是简单地发出正确的Powershell命令 – 正如我所说,Linux没有真正的Powershell.您可以在每台Windows机器上安装WinRB ruby gem,然后在Linux机器上运行Ruby代码以调用Powershell命令.
在这两种情况下,您似乎都无法获得交互式Powershell体验,例如制表符完成,帮助等.这些似乎是用于运行脚本或单个命令,您可能必须捕获任何错误或其他反馈靠自己.你不会在Linux上获得一流的解决方案.
/再次编辑 – 是的,MSDN says这将是丑陋/笨重的.即使他给出的简单/有效的解决方案看起来也没什么乐趣.
Although Powershell remoting is built on top of WS-Management,it’s really a protocol within a protocol and trying to interop with PSRP (Powershell Remoting Protocol) directly would essentially require replicating Powershell on the client.