我可以使用以下命令成功远程访问我们企业中的一台计算机( 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 。
这甚至可能吗?
感谢。
答案 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)