A few years ago, before I retired, I was working as an IT Engineer professionally. In those days I relied heavily on the Group Policy Editor to limit or enhance what users could or could not do on their computers. After retiring I bought a new computer but bought it with a Windows 11 Home Edition. I didn't feel the need to spend the extra $100 for the Pro Edition I was used to using. I didn't really realize how much Microsoft had "dumbed down" the Home Edition. Yesterday I had an interest in using the Group Policy Editor, and to my dismay found that MS had removed it from the Home Edition. Currently it's only available in the Pro, Enterprise and Educational editions. Now let me just say, that nearly all typical home users will never need this, and I would recommend they don't because if you don't know what you're doing you could mess things up. However, if you're an IT Professional like I was you may find a situation where you need to know this. There is a way and the following is how.

This page was published on It was last revised on

1

2 Comments

  • Votes
  • Oldest
  • Latest
Commented
Updated

So far, we've learned that the Group Policy editor was removed from Windows 11 Home Edition. So how do we add it back?

This is a fairly simple process but does require a bit of patience. The execution of this method took nearly 4 hours to complete. I'll also add that this does require a persistent internet connection. While the script is running it is downloading and installing packages from the internet, so you can't do this if you are offline.

The first step is Copy the following code. Don't worry if you don't understand it. But you'll need to copy it in its entirety.

@echo off & Cls

(Net session >nul 2>&1)||(PowerShell start """%~0""" -verb RunAs & Exit /B)

pushd "%~dp0"

dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt
dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt

for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"


For /F %%B In ('wmic Os Get /Format:List ^| Find /I "Osarchitecture"') Do (Set Output=%%B)


If "%Output:~15,21%"=="64-bit"  (
    If Exist "%SystemRoot%\System32\gpedit.msc" (
    
    Goto :Skip
    
    ) Else (
    
    Copy "%SystemRoot%\SysWOW64\Gpedit.msc" "%SystemRoot%\System32"
    
    )

:Skip

Open Notepad and paste the code into it.

Code to add GPEdit.msc to Win 11 Home

Click File > Save As and give it any name you want. I named mine enable_gpedit.bat
**Important note: you need to include the .bat file extension in the name*
Then change the "Save As" type from the default "Text Documents (.txt)" to "All Files".
I choose Desktop to where I want to save it to make it easier to find.

Example:
Save the gpedit.bat file

Now find the batch file you saved, right click it and choose "run as administrator" and allow the security prompt.

This will open a Command Prompt Window and start running the batch script. For reference the term Deployment Image Servicing Management Tool is also known simply as DISM.

GPEdit Batch File deployment

Remember when I said earlier this requires some patience. I have a gaming computer with a ton of RAM and awesome processor, but this really slowed my computer down and took nearly four hours to complete.
DO NOT close the Command Prompt window while it's running.

When it is completely finished running it will close the Command Prompt automatically. That's what the ":Skip" command does at the end of the script. Once the script completes you will need to restart your computer. When you're logged back in, hit the Winkey+R on your keyboard and type gpedit.msc and hit enter.

Group Policy Editor

Congratulations! You now have the Group Policy Editor installed on your Windows 11 Home Edition PC!
(note: this also works on Windows 10 Home Edition)

add a comment
0
Commented
Updated

Interesting, I have had to use this a few times for some different machines. Never realized you could even install it on computers that didn't have it available.

  • 1
    Some features can easily be added or removed using Control Panel>Programs and Features in the Home Edition. Ones that would be relative to development and IT would be things like IIS, HyperV, Telnet, TFTP which are not enabled by default. So, if I wanted to add a virtual Hyper-V machine to this computer, I would have to enable the Virtual Machine Platform and Hypervisor Platform features. Likewise, if I wanted to add IIS I could do it in Turn Windows Features On/Off. So far the only one I've found I could do with DISM is the Group Policy Editor. But I haven't looked for any others yet since that was the only one I needed. — Mark Bowker
add a comment
0

User

Community

Market

Help Center

Legal

Company

Social Media