gpt4 book ai didi

powershell - 输入-PSSession 返回 PSRemotingTransportException

转载 作者:行者123 更新时间:2023-12-03 13:03:26 25 4
gpt4 key购买 nike

当我尝试使用 Enter-PSSession 连接到远程服务器时,我收到了 PSRemotingTransportException。它表示用户未知或关联了错误的密码。

它与其他用户一起工作,并且在其他服务器上与该用户一起工作。该用户在远程服务器的管理员组中。

我错过了什么?

编辑

我的主要问题是这个。我有三台服务器:remote1remote2main,一个域:domain,两个用户:user1user2

所以现在我在 main 上连接到 user1。第一个问题是,当我在 remote1 上使用 Enter-PSSession 时,我通过 user2 连接:

PS C:\Users\user1> whoami

domain\user1

PS C:\Users\user1> Enter-PSSession remote1

[remote1]: PS C:\Users\user2\Documents> whoami

domain\user2

[remote1]: PS C:\Users\user2\Documents>

第二个问题是,当我在remote2 上使用Enter-PSSession 时,它不起作用:

PS C:\Users\user1> Enter-PSSession remote2

Enter-PSSession : Connecting to remote server failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic. At line : 1 Char: 16 + Enter-PSSession <<<< remote2 + CategoryInfo : InvalidArgument: (remote2:String) [Enter-PSSession], PSRemotingTransportException + FullyQualifiedErrorId : CreateRemoteRunspaceFailed

PS C:\Users\user1>

最佳答案

嗯,这听起来很奇怪。

一种可能是默认的 PSSession 配置被弄乱了。要重置它,请使用以下代码:

Get-PSSessionConfiguration -Name Microsoft.PowerShell | Unregister-PSSessionConfiguration;

然后运行:

Enable-PSRemoting -Force;

此外,您确定在指定凭据时使用的是 domain\username 格式(假设您指定的是备用凭据)吗?

关于powershell - 输入-PSSession 返回 PSRemotingTransportException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22385462/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com