Share via

How to Enable the GPEdit.msc on Windows 10 and 11 Home?

Reported
Anonymous
2022-03-27T16:28:44+00:00

Ive recently had to search for this informtion and thought I would share the answer. Sorce - Enable Group Policy Editor (gpedit.msc) on Windows 10/11 Home Edition | Windows OS Hub (woshub.com) "It is likely that, according to the Microsoft logic, the home user doesn’t need to edit the local settings through the gpedit.msc GUI. Accordingly, users of the Windows 10 home editions have to make changes through the registry editor regedit.exe`, which is not so clear and more risky since it is possible to make a mistake and break the system.

Fortunately, Windows 10 Home has the undocumented option to install the gpedit.msc editor from the Windows image packages and manifests repository (\Windows\servicing\packages).

How to Enable the GPEdit.msc on Windows 10 and 11 Home?

To install the Local Group Policy Editor in Windows 10 Home edition, open a command prompt as administrator and run two one-line commands in sequence:

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") Also these commands can be used to install gpedit.msc console in Windows 11 Home. For convenience, you can save this code to a text file gpedit-install.bat and run it as administrator. Wait a while until DISM installs the packages from the Windows 10 component store.

In my case, the ClientTools and ClientExtensions packages were installed in Windows 10 Home:

Microsoft-Windows-GroupPolicy-ClientTools-Package~…~amd64~~….mum
Microsoft-Windows-GroupPolicy-ClientTools-Package~…~amd64~en-US~….mum
Microsoft-Windows-GroupPolicy-ClientExtensions-Package~…~amd64~~….mum
Microsoft-Windows-GroupPolicy-ClientExtensions-Package~…~amd64~en-US~….mum

Now try to run the gpedit.msc console. The Local Group Policy Editor interface should open (no reboot required). The GPO editor is fully functional even in the Home edition of Windows 10 or Windows 11, and contains all the necessary policy sections that are available in the Pro/Enterprise editions."

Windows for home | Windows 10 | Settings

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

114 answers

Sort by: Most helpful
  1. Anonymous
    2023-09-27T15:36:26+00:00

    try these:

    #1 foreach ($F in Get-ChildItem -Path "$env:SystemRoot\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~*.mum") {

    DISM /Online /NoRestart /Add-Package:"$F"

    }

    #2 foreach ($_ in (Get-ChildItem -Path "$env:SystemRoot\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~*.mum")) {

    DISM /Online /NoRestart /Add-Package:"$_"

    }

    then type gpedit in terminal

    ~gcoder~

    Worked like a charm where multiple other sources and responses did not. Thank you!

    For those copying and pasting into the terminal (did not copy/paste as one line from this post):

    foreach ($F in Get-ChildItem -Path "$env:SystemRoot\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~*.mum") {DISM /Online /NoRestart /Add-Package:"$F"}

    foreach ($_ in (Get-ChildItem -Path "$env:SystemRoot\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~*.mum")) {DISM /Online /NoRestart /Add-Package:"$_"}

    0 comments No comments
  2. Anonymous
    2022-09-24T13:04:05+00:00

    thank you very much my friend

    0 comments No comments
  3. Anonymous
    2023-06-26T23:46:01+00:00

    Gives this error on Powershell:

    Line |
    1 | FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPo …
    | ~
    | Missing opening '(' after keyword 'for'.

    Doesn't matter if I add a second % to the Fs.

    0 comments No comments
  4. Anonymous
    2023-06-04T15:43:59+00:00

    If the .bat file errors from the command line with "was unexpected at this time" edit the bat file adding a second % to each of the four entries. Example %F will read %%F. If you have issues creating or saving the bat file I suggest NotePad ++ as the text editor. Once this change was made it ran fine on MS Windows 11 Home.

    0 comments No comments
  5. Anonymous
    2022-12-23T21:03:37+00:00

    sorry, I lost you at "it is possible to make a mistake and break the system." Is there any other way I can use Cortana to write my email?

    0 comments No comments