KB ID 0001615
Problem
On a Domain Controller you will get Group Policy Management, (by default) listed under administrative tools. But if you have a ‘Management Server‘ of a ‘Jump Box‘, that you want to install the tool onto, (without making it a domain controller!) Then do the following;
Option 1: Install GPMC with Powershell
This is the quickest and simplest option! Open a PowerShell Windows and execute the following command;
[box]
Install-WindowsFeature –Name GPMC
[/box]
Note: For older, (Windows Server 2012 and older) servers use the following commands instead.
[box]
Import-Module servermanager Add-WindowsFeature –Name GPMC
[/box]
Option 2: Install GPMC with Add Roles and Features
From Server Manager > Manage > Add Roles And Features > Proceed to ‘Features‘ > Select Group Policy Management > Next > Finish.
Related Articles, References, Credits, or External Links
NA