Your network contains two servers named Server1 and Server2 that run Windows Server 2012 R2.
Server1 and Server2 are part of a workgroup.
On Server1 and Server2, you create a local user account named Admin1. You add the account to the
local Administrators group. On both servers, Admin1 has the same password.
You log on to Server1 as Admin1. You open Computer Management and you connect to Server2.
When you attempt to create a scheduled task, view the event logs, and manage the shared folders,
you receive Access Denied messages.
You need to ensure that you can administer Server2 remotely from Server1 by using Computer
Management. What should you configure on Server2?

A.
From Local Users and Groups, modify the membership of the Remote Management Users group.
B.
From Server Manager, modify the Remote Management setting.
C.
From Windows Firewall, modify the Windows Management Instrumentation (WMI) firewall rule.
D.
From Registry Editor, configure the LocalAccountTokenFilterPolicyresgistry value
To Allow other local administrator accounts to perform UAC Admin tasks we need to type this Powershell cmd-let:
New-ItemProperty -Name localAccountTokenFilterPolicy -Path HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System -PropertyType Dword -Value 1
0
0