Skip to content

Instantly share code, notes, and snippets.

@lelegard
Last active July 1, 2026 10:40
Show Gist options
  • Select an option

  • Save lelegard/8da0b20cc35708852c14fcf899651204 to your computer and use it in GitHub Desktop.

Select an option

Save lelegard/8da0b20cc35708852c14fcf899651204 to your computer and use it in GitHub Desktop.
Enabling the Group Policy Editor on Windows 10 Home

Enabling the Group Policy Editor on Windows 10 Home

On Windows 10 Home edition, there is no Local Group Policy Editor (gpedit.msc) and no Local Security Policy Editor (secpol.msc). These tools are reserved to Professional editions of Windows.

It is however possible to install them on Windows 10 Home if you need them.

Open a PowerShell window as administrator and run the following command:

Get-ChildItem @(
    "C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package*.mum",
    "C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package*.mum"
) | ForEach-Object { dism.exe /online /norestart /add-package:"$_" }
@mamunaco

mamunaco commented Oct 5, 2024

Copy link
Copy Markdown

Thanks bro, It worked perfectly on my system! Other codes that I found don't. 🤙

@GrievousSoul

Copy link
Copy Markdown

Thank you! Worked perfectly on Windows 22H2

@raffleberry

Copy link
Copy Markdown

perfect😎🎉

@DustynB12

Copy link
Copy Markdown

Oh my God Thank You lifesaver!

@BOROLASTHOPEINtheWORLD

Copy link
Copy Markdown

fcking genius

@wwian

wwian commented Aug 18, 2025

Copy link
Copy Markdown

THANK YOU! Worked exactly as you outlined. Cheers!

@melczer

melczer commented Feb 24, 2026

Copy link
Copy Markdown

perfect...!!! and thank you..!!

@lucien-gh

Copy link
Copy Markdown

谢谢你

@devnull93

Copy link
Copy Markdown

omg <3

@emrekara369

Copy link
Copy Markdown

perfect!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment