我正在学习powershell(也没有管理员背景,我在学习Python时偶然发现它并认为它很有趣),而且我完全停留在远程处理上。
我试图远离我的台式电脑(" DAVE-PC")到我的笔记本电脑(" DAVE")。
PS C:\> get-item WSMan:\localhost\Client\TrustedHosts
WSManConfig: Microsoft.WSMan.Management\WSMan::localhost\Client
Type Name SourceOfValue Value
---- ---- ------------- -----
System.String TrustedHosts DAVE-PC, DAVE
PS C:\> Enter-PSSession -ComputerName DAVE -Credential Administrator
此时,我提示输入密码,我不知道:
Enter-PSSession : Connecting to remote server DAVE failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic.
At line:1 char:1
+ Enter-PSSession -ComputerName DAVE -Credential administrator
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (DAVE:String) [Enter-PSSession], PSRemotingTransportException
+ FullyQualifiedErrorId : CreateRemoteRunspaceFailed
现在我有什么选择让远程启动和运行?
Google似乎建议我运行一些脚本来更改密码?
我试图按照此链接中建议的方法运气,但没有运气: Cannot create remote powershell session after Enable-PSRemoting。我真的没有信心,我知道我正在做的事情,正如你所料的那样。