- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试使用 Enter-PSSession
连接到远程服务器时,我收到了 PSRemotingTransportException
。它表示用户未知或关联了错误的密码。
它与其他用户一起工作,并且在其他服务器上与该用户一起工作。该用户在远程服务器的管理员组中。
我错过了什么?
编辑
我的主要问题是这个。我有三台服务器:remote1
、remote2
和 main
,一个域:domain
,两个用户:user1
和 user2
。
所以现在我在 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/
我试图建立到另一个系统的远程连接并执行一些基本命令。 以下是我所做的步骤: 配置远程机器以接受 Shell 命令 - Enable-PSRemoting - 力 在远程机器上测试了配置 - Test-
当我尝试使用 Enter-PSSession 连接到远程服务器时,我收到了 PSRemotingTransportException。它表示用户未知或关联了错误的密码。 它与其他用户一起工作,并且在其
我已经配置了winrm。 运行 winrm quickconfig 后我得到以下响应,因为 winrm 服务已经在运行。 WinRM service is already running on thi
我是一名优秀的程序员,十分优秀!