WiseCleaner Think Tank

Encounter difficult computer problems?
All about maintenance and optimization of your Windows System.

Home > Think Tank > How to Install Local Group Policy Editor in Windows 10 Home

How to Install Local Group Policy Editor in Windows 10 Home

Jun 2, 2020

We regularly reference a special command gpedit.msc through our windows-tips, this command will open the Local Group Policy Editor. However, if your OS is Windows 10 Home Edition, the Local Group Policy Editor is unavailable, and you will receive the error message - "Windows cannot find gpedit.msc. Make sure you typed the name correctly, and then try again." This post will guide you on how to fix the above GPEDIT issue and enable Local Group Policy in Windows Home edition.

Windows cannot find gpedit.msc

Don't know Windows Group Policy? >>>Click this link to learn What is Local Group Policy.

Method 1, Running a batch file

(1) Create a new text document.

(2) Copy and paste the following commands to the newly created text document and save it.

@echo off

pushd "%~dp0"

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

dir /b C:\Windows\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:"C:\Windows\servicing\Packages\%%i"

pause

(3) Rename the file and change the file type to bat, for example, gpedit.bat

(4) Right-click on gpedit.bat and select Run as administrator

Run as administrator

(5) Wait for a few minutes until the installation is completed.

(6) Reboot the system.

Method 2, Using the Command Prompt

(1) Press Win+s and type cmd (or command prompt) in the search box.

(2) Right-click on Command Prompt and select Run as administrator

command prompt

(3) Copy and Paste the following commands to the Command Prompt window. These 2 commands will run automatically, please wait a few minutes until the installation is completed.

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")

(4) Reboot the system.

Latest
How to Change Your Hotspot Name and Password on iPhoneHow to Find Your Lost iPhoneHow to Use Windows Reliability Monitor to Diagnose Crashes
Read more >>
Recommend
Understanding Windows Power Plans: Balanced, Battery Saver, High Performance, and Ultimate PerformanceWindows Update Delivery Optimization: How It Works & How to Disable It (2025 Guide)Should I enable or disable Trim of SSD?
Read more >>
Hottest
How to Install a macOS in VMware Workstation PRO 17How to Enable Task Manager Option in Taskbar Menu on Windows 11How to Fix Office Application Error 0xc0000142
Read more >>