Windows Home editions do not include Group Policy Editor (gpedit.msc) by default.
However, the required Group Policy Client packages are already present in the system and can be installed manually using DISM.
This document explains how to enable them safely using built-in Windows components.
Run the following commands in an elevated Command Prompt (Run as Administrator):
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"- Iterates through all matching
.mumpackage files. - Installs Group Policy Editor tools and client extensions using DISM.
- Applies changes to the currently running Windows installation.
- Prevents automatic restart after installation.
- Commands must be run as Administrator.
%Fworks only in interactive Command Prompt sessions. For.bator.cmdfiles, replace%Fwith%%F.- A system restart may be required.
- Uses official Windows packages already included in the OS.
After completion, launch Group Policy Editor with:
gpedit.mscThis method is not officially supported by Microsoft for Windows Home editions. It relies solely on built-in Windows components and does not modify files outside the Windows component store.