Your network contains an Active Directory domain named contoso.com. The domain contains three servers
named Server1, Server2, and Server3.
You create a server group named ServerGroup1.
You discover the error message shown in the following exhibit. (Click the Exhibit button.)
You need to ensure that Server2 can be managed remotely by using Server Manager.
What should you do?
A.
On Server2, run the netdom.exe command.
B.
On Server2, run the net stop netlogon command, and then run the net start netlogon command.
C.
On DC1, run the Enable-PSSessionConfiguration cmdlet.
D.
On Server2, modify the membership of the Remote Management Users group.
Explanation:
The Enable-PSSessionConfiguration cmdlet calls the Set-WSManQuickConfig cmdlet. However, it should not
be used to enable remoting on the computer. Instead, use the more comprehensive cmdlet, EnablePSRemoting.
http://technet.microsoft.com/en-us/library/hh849710.aspx
CORRECT ANSWER IS:
D. On Server2, modify the membership of the Remote Management Users group.
This is a security issue.
Yes, the correct answer should be D.
This is a security issue. To be able to access Server2 remotely through Server Manager the user need to be a member of the Remote Management Users group.
Note:
* Name: BUILTIN\Remote Management Users
Description: A Builtin Local group. Members of this group can access WMI resources over management
protocols (such as WS-Management via the Windows Remote Management service). This applies only to WMI namespaces that grant access to the user.
* Enable-ServerManagerStandardUserRemoting
Provides one or more standard, non-Administrator users access to event, service, performance counter,and role and feature inventory data for a server that you are managing by using Server Manager.
Syntax:
Parameter Set: Default
Enable-ServerManagerStandardUserRemoting [-User] [-Force] [-Confirm] [-WhatIf]
[ ]
Detailed Description
Provides one or more standard, non-Administrator users access to event, service, performance counter,and role and feature inventory data for a server that you are managing, either locally or remotely, by using Server Manager. The cmdlet must be run locally on the server that you are managing by using Server Manager. The cmdlet works by performing the following actions:
Adds access rights for specified standard users to the root\cimv2 namespace on the local server (for access to role and feature inventory information).
Adds specified standard users to required user groups (Remote Management Users, Event Log Readers,and Performance Log Readers) that allow remote access to event and performance counter logs on the managed server.
Changes access rights in the Service Control Manager to allow specified standard users remote access to the status of services on the managed server.
Incorrect:
Not C: the Enable-PSSessionConfiguration.This is an advanced cmdlet that is designed to be used by system administrators to manage customized session configurations for their users.
Reference: Enable-ServerManagerStandardUserRemoting