Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows 10 / Enable Group Policy Editor (gpedit.msc) on Windows 10/11 Home Edition

June 20, 2024 Windows 10Windows 11

Enable Group Policy Editor (gpedit.msc) on Windows 10/11 Home Edition

The Local Group Policy Editor console (gpedit.msc) is used to configure Windows settings. Gpedit.msc is a built-in MMC snap-in available in all Windows editions (Pro/Enterprise/Education) except Home and Single Language. This guide covers how to use the local GPO editor, as well as how to install and open gpedit.msc in Windows 10 and Windows 11 Home editions.

Contents:
  • Using the Local Group Policy Editor (GPEdit.msc) on Windows
  • How to Install GPEdit.msc on Windows 10 and 11 Home
  • How to Apply Local Group Policy on Windows Home

Using the Local Group Policy Editor (GPEdit.msc) on Windows

To open the Local Group Policy Editor on Windows, run the gpedit.msc command:

open local gpo editor gpedit.msc on windows

The settings available in the Local GPO Editor console are organized in a tree structure and divided into two sections.

  • Computer Configuration – global settings of the Windows operating system and components. Make changes to the HKEY_LOCAL_MACHINE (HKLM) section of the registry.
  • User Configuration – settings that apply to computer users. Changes are applied to the HKEY_CURRENT_USER (HKCU) key of the user registry.

gpedit.msc console computer and user configuration sections

The GPO editor contains thousands of Windows settings, with a strict hierarchy, detailed descriptions, and predefined configuration options to choose from. Settings made in the gpedit.msc editor have a high priority and override any settings made by the user or administrator in the Windows GUI or Control Panel.

Tutorials covering different scenarios for using GPOs can be found in the Windows Group Policies (GPO) category.

Each GPO configuration section has three subsections:

  • Software Settings
  • Windows Settings — allows to configure basic Windows security settings (including password policy and account lockout settings, audit policy, user rights assignments)
  • Administrative Templates – settings of various Windows components, roles, and features. Both built-in Windows Administrative Templates and additional installed ADMX templates are available here (for example, admx templates for managing MS Office apps or templates for Google Chrome)

To change any GPO setting in the console, find the section in which it is in, and open its properties in the right pane of the GPO editor.

Most GPO settings have only three options available: Enabled, Disabled, andNot configured. By default, all GPO settings in the Administrative Templates section are not configured. Select Enabled or Disabled and click OK to configure the GPO option. Select Not Configured to return the GPO options to its default value.

edit gpo settings using gpedit.msc on windows 10 and 11

Some GPO settings can have additional parameters that can be configured in the Options section. For example, to set a desktop wallpaper file through a GPO, you need to enable the policy, specify the path to a JPEG image file in the Wallpaper name field, and select a wallpaper style.

configurable gpo options in gpedit console

See the Help section for a detailed description of each GPO option and its values. Windows versions to which this policy applies are listed in the Supported on section. For example, At least Windows 10 means that the policy only applies to computers running Windows 10/11 and Windows Server 2016/2019/2022. This GPO option doesn’t work on Windows 8.1 or 7.

The registry.pol files in the following directories store the settings of the configured GPO options:

  • %SystemRoot%\System32\GroupPolicy – computer policy
  • %SystemRoot%\System32\GroupPolicyUsers – user policy

If you clean up these folders, you will reset all local policy settings to their default values (Not Configured).

The lgpo.exe command line tool can be used to transfer local GPO settings to another computer.

GPO ADMX files define the registry settings and their values that need to be changed. Therefore, when you set a particular GPO option, the policy handler actually makes changes to the registry.

The following Excel file describes the correspondence between the names of the Group Policy options and the registry keys: Group Policy Settings Reference Spreadsheet for Windows 11 2023 Update 23H2 ( https://www.microsoft.com/en-us/download/details.aspx?id=105668 ).

How to Install GPEdit.msc on Windows 10 and 11 Home

The local Group Policy editor console (gpedit.msc) is missing from Home and Single Language editions of Windows. If you try to open the local GPO console, an error occurs:

Windows cannot find ‘gpedit.msc’. Make sure you’ve typed the name correctly, then try again.

Windows10 home edition - cannot find gpedit.msc

On Windows 10 or 11 Home, there is an undocumented workaround to install the gpedit.msc editor from the built-in packages and manifests repository. Open Command Prompt (cmd.exe) as an administrator and run the following two commands:

FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~*.mum") DO (DISM /Online /NoRestart /Add-Package:"%F")
FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~*.mum") DO (DISM /Online /NoRestart /Add-Package:"%F")

DISM will install the ClientTools and ClientExtensions servicing packages from the internal Windows store.

Now you can open and use the gpedit.msc console in the Windows Home 10 or 11 editions.

install gpedit.msc on windows 10 and 11 home editions

How to Apply Local Group Policy on Windows Home

However, once the local Group Policy has been modified, the new settings are not immediately applied to the registry as they are in the Pro/Enterprise edition. Neither the gpupdate /force command nor a restart of the computer will help you to apply the Group Policy setting that you have set. This is because Windows Home Edition doesn’t have a GPO handler that applies the settings from the registry.pol file to the registry. For GPOs to be applied automatically, you will need to upgrade your edition of Windows from Home to Pro, but this is not always possible.

Fortunately, there is a workaround to apply GPO settings in Windows Home using a third-party Policy Plus tool (https://github.com/Fleex255/PolicyPlus). Policy Plus is an alternative GPO editor for Windows. It allows to edit local GPO settings without using the gpedit snap-in.

policy plus GPO editor in windows 10 home edition

To apply new local GPO settings from the POL files, close the gpedit.msc MMC snap-in and select File -> Save Policy in Policy Plus.

edit and apply local gpo settings using policy plus

A message should appear:

User policies: saved to disk and applied diff to Registry.
Computer policies: saved to disk and applied diff to Registry.

apply policy settings to registry on windows home

To centrally manage Group Policy in an Active Directory domain environment, the Group Policy Management Console (gpmc.msc) is used instead of gpedit.
25 comments
13
Facebook Twitter Google + Pinterest
previous post
Writing Output to Log Files in PowerShell Script
next post
Installing Fonts in Windows Using GPO and PowerShell

Related Reading

How to Cancel Windows Update Pending Restart Loop

May 6, 2025

View Windows Update History with PowerShell (CMD)

April 30, 2025

Change BIOS from Legacy to UEFI without Reinstalling...

April 21, 2025

Remove ‘Your License isn’t Genuine’ Banner in MS...

April 21, 2025

Uninstalling Windows Updates via CMD/PowerShell

April 18, 2025

25 comments

Rose March 16, 2016 - 4:29 am

Page doesn’t exsist

Reply
admin March 16, 2016 - 6:07 am

 I’ve fixed error in the link . You can download archive  now.

Reply
Daniel Burns Sr. September 4, 2016 - 11:09 pm

It worked GREAT !!   Thanks a lot.

Reply
Mike December 3, 2016 - 6:12 am

Should I do step for a 64-bit Windows 10 version if i have Win 7 x64?

Reply
admin December 7, 2016 - 6:26 am

Yes, this console will work in both OS

Reply
sidik December 3, 2016 - 7:16 pm

i can’t copy, it’s said need administrator permission, what should i do?

Reply
admin December 7, 2016 - 6:36 am

try to copy files from cmd running with admin privileges

Reply
Ranger December 14, 2016 - 3:10 pm

Before the process would work, I had to go into the Windows folder and manually reset the security on 3 or 4 of the files listed above BEFORE I could replace them. Screw Microsoft for making this difficult AND taking steps to prevent it.

Reply
noi April 28, 2018 - 4:44 pm

Sukses dan manjur! Sekarang sudah bisa enable gpedit.msc, Terima kasih tip yang diberikan.
Success and efficacy! Now it can enable gpedit.msc, Thanks tip given.

Reply
Normunds December 17, 2018 - 5:19 am

At line:1 char:4
+ FOR %F IN (“%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPo …
+ ~
Missing opening ‘(‘ after keyword ‘for’.
At line:1 char:148
+ … ntTools-Package~*.num”) DO (DISM /Online /NoRestart /Add-Package:”%F”
+ ~
Missing closing ‘)’ in expression.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : MissingOpenParenthesisAfterKeyword

Reply
admin December 20, 2018 - 9:57 am

You should run this code in the usual cmd.exe prompt (not in the PowerShell console)

Reply
Tom March 3, 2020 - 1:10 am

Still doesn’t work.
Maybe if possible code a ‘gepdit-enabler.exe’ in C++ where the commands are passed to the system through the system call. i.e (source code)

#include
using namespace std
int main(){
printf(“Welcome to the installer”);
system(“<Your commands go here");
system("pause");
return 0;
}

Reply
Larry LA Cal February 10, 2019 - 6:28 am

gpedit.msc runs and the UI works but the edits are not carried out, for example
gpedit: Computer Config>Admin Templates>Start Menu>Remove and prevent access to
Shutdown, Restart = enable
should hide the power icon on the signin screen (lower right on/off icon), but it does not.
This gpedit setting (should) maps to the registry item
HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer – HidePowerOptions
(ref: https://www.microsoft.com/en-us/download/confirmation.aspx?id=56946
Excel spreadsheet with gpedit registry mapping)
Setting the HidePowerOptions does hide the signin screen power icon.
gpupdate /force, logoff/logon, restart do not execute the gpedit setting.
The gpedit settings persist after restart.
The event viewer shows GroupPolicy ran successfully with 1 change.

Does this example work for you? What should I look for? Do I need to add accounts under GroupPolicyUsers?
System: Win10 Home 1803 17134.556, with multiple accounts, run from account with admin rights.
Installed gpedit with the double for..Do DISM commands above

Reply
genio March 19, 2019 - 12:33 am

uauauauau fuiciona, obrigado

Reply
Anonymous June 23, 2019 - 8:01 pm

thanx

Reply
bob July 14, 2019 - 12:42 pm

please help I dont have the gpedit.msc file

Reply
Tom B August 25, 2019 - 3:55 am

after installing copy and paste gpedit.msc into system 32 and work great, success. thx a lot

Reply
Keith November 14, 2019 - 2:18 pm

The batch script code fails spectacularly. You should try testing your code before you post it.

Reply
User December 19, 2019 - 9:42 am

Is it possible to also enable secpol.msc on Windows 10 Home?

Reply
Geoffrey June 29, 2020 - 1:12 pm

Does this work with the power button too?

Reply
Skyler June 12, 2021 - 8:36 pm

Brilliant, thanks so much for posting!

Shame on Microsoft for not including it, like it takes much overhead.

Reply
Onur October 31, 2021 - 4:42 pm

The article makes NONSENSE a Group Policy settings on HOME edition will not take effect until you switch to Pro or greater. I can’t believe why the internet is full of copy-paste info without even confirming its accuracy.

Reply
Boys will be Boys January 13, 2022 - 7:08 am

hahaha..well said sir.

Reply
sky smith January 26, 2023 - 2:24 am

nice

Reply
desertjedi December 11, 2024 - 12:22 am

The commands appear to run fine but afterwards, it still cannot find GPEDIT.MSC. Even after rebooting. What gives?

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMware
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025
  • How to Write Logs to the Windows Event Viewer from PowerShell/CMD

    March 3, 2025
  • How to Hide (Block) a Specific Windows Update

    February 25, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Repair EFI/GPT Bootloader on Windows 10 or 11
  • How to Restore Deleted EFI System Partition in Windows
  • Network Computers are not Showing Up in Windows 10/11
  • Install and Manage Windows Updates with PowerShell (PSWindowsUpdate)
  • How to Download Offline Installer (APPX/MSIX) for Microsoft Store App
  • Updating List of Trusted Root Certificates in Windows
  • Fix: Windows Cannot Connect to a Shared Printer
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top