我有一个带有虚拟框的 Windows 2003 框设置,我无法使用 powershell 来使用它。
我在我的 Windows 7 机器上试试这个
Get-Service –ComputerName myserver
我回来
Get-Service : Cannot open Service Control Manager on computer 'myserver'. This operation might require other privileges.
At Script1.ps1:2 char:4
+ gsv <<<< -cn myserver
+ CategoryInfo : NotSpecified: (:) [Get-Service], InvalidOperationException
+ FullyQualifiedErrorId : System.InvalidOperationException,Microsoft.PowerShell.Commands.GetServiceCommand
在四处搜索时,我发现我应该尝试使用Enable-PSRemoting
.
我这样做了,现在当我尝试使用它时,我得到了
WinRM 已设置为在此计算机上接收请求。WinRM 已经设置为在这台机器上进行远程管理。
但是我仍然遇到同样的错误。这是因为我使用的是虚拟机吗?我将虚拟操作系统设置在我的域上,我什至可以使用我的 AD 帐户凭据登录。
我可以从中获取其他信息。
所以这并不是我不能用 powershell 连接到它。