3

次のコマンドを使用して、職場 のマシンの 1 つ ( ComputerA ) に正常にリモート接続できました。このセッション内で、ComputerBEnter-PSSessionへ の新しいセッションを開始できますか? 私はそれをすることができません。次のエラーが表示されます。Enter-PSSession

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

ComputerAの powershell プロンプトからComputerBへのセッションを開始できます。

これは可能ですか?

ありがとう。

4

1 に答える 1

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)
于 2013-05-01T15:22:29.957 に答える