我正在尝试运行命令:
Get-WindowsFeature -ComputerName "example.com"
我得到了
Get-WindowsFeature : Access is denied.
At line:1 char:1
+ Get-WindowsFeature -ComputerName "example.com"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : DeviceError: (Microsoft.Manag...rDetailsHandle):CimException) [Get-WindowsFeature], Exception
+ FullyQualifiedErrorId : UnSupportedTargetDevice,Microsoft.Windows.ServerManager.Commands.GetWindowsFeatureCommand
你能帮助我解释如何在不收到此错误的情况下获取这些信息吗?我是否必须在“example.com”DC上启用某些功能?
编辑1:
我的方法是我想确保安装DC上的功能。我想从1 DC运行命令Get-WindowsFeatures
以获取其他DC的所有信息。目前,我正在运行普通用户帐户,该帐户没有更高的权限。