Enable gpedit.msc [Group Policy Editor]
The best and the easiest way to tweak your computer is by using the Group Policy Editor. If you had opened it before, you'd be knowing that it is a wonderful tool for understanding the windows components because of the detailed description given for each key unlike the Registry. But suddenly, when you type
Enable Gpedit from Registry:
Using Microsoft Management Console(MMC):
Using the Command Prompt:
gpedit.msc
in your Run, an error pops up saying that it is disabled. Here are a couple of ways you can get your gpedit back to work.Enable Gpedit from Registry:
- Okay, this might not work for some versions of Windows but it is worth giving a try. Go to Start --> Run and type
regedit
followed by the Return key. - When the Registry opens, navigate to the following key
HKEY_CURRENT_USER\Software\Policies\Microsoft\MMC
Check for the keyRestrictToPermittedSnapins
and set it to 0. This would remove the restrictions assigned to it. If you're planning to disable it, you can select the value as 1. - Now reboot your computer for the changes to take effect. Check if its working. If not, you'll need to move down to the other methods.
- Open the Registry by typing
regedit
in the Run box. - Navigate to the following location
HKEY_CLASSES_ROOT\.msc
Now check and delete any key present on the right-side except the Default key. - After that, restart your computer and type
gpedit.msc
in the Run box. Group Policy Editor would ask you which file you'd like to open it with. Then select the Browse button and selectmmc.exe
fromC:\Windows\system32\
. - The next time you type
gpedit.msc
in Run, you'll be able to see it working.
Using Microsoft Management Console(MMC):
- Go to Start --> Run and type
mmc.exe
to open your Microsoft Management Console application. - Now go to File --> Add or Remove Snap-in. A box would open in which you'll have to select the Add option below the Description box.
- A long list of Windows applications appear from which you're supposed to select Group Policy Object Editor and you'll have it running in that console.
- Save the console in any place you want so that you can get it to work with just a Double-click!
Using the Command Prompt:
- Go to Start --> Run and type
cmd
to open the Command Prompt. - If you've come this far and still dint get your Gpedit working, that should mean the dlls associated with the Gpedit in your system are somehow unregistered. So you'll have to register these dlls.
- In the Command Prompt, type the following commands to register them
* regsvr32 gpedit.dll
* regsvr32 fde.dll
* regsvr32 gptext.dll
* regsvr32 appmgr.dll
* regsvr32 fdeploy.dll - Now type in
gpedit.msc
and you'll see it working.