我可以从远程会话启动远程PowerShell会话吗?

时间:2013-04-19 14:33:44

标签: powershell

我可以使用以下命令成功远程访问我们企业中的一台计算机( ComputerA Enter-PSSession 现在,我可以在此会话中开始新的Enter-PSSession ComputerB 吗?我无法做到。我收到以下错误:

Remote host method PushRunspace is not implemented.
    + CategoryInfo          :
    + FullyQualifiedErrorId : System.Management.Automation.Remoting.PSRemotingDataStructureException,Microsoft.PowerSh
   ell.Commands.EnterPSSessionCommand

我可以从 ComputerA 上的PowerShell提示开始会话到 ComputerB

这甚至可能吗?

感谢。

1 个答案:

答案 0 :(得分:4)

不支持在另一个交互式会话中使用

Enter-PSSession。相反,尝试Invoke-Command在交互式会话中在远程计算机上运行命令。

PS C:\> Enter-PSSession -ComputerName Server-02
[Server-02]: PS C:\> Invoke-Command -ComputerName Server-03 -ScriptBlock { GCI C:\ } -Credential (Get-Credential)