Windows

Enable gpedit on Windows 10 Home

  1. Intro

    If your OS is Windows 10 Home Edition, then you can’t open gpedit.
    Because Microsoft disable gpedit under Windows 10 Pro.
    So Let’s Enable gpedit

  2. Make bat file & Execute Bat file

    @echo off 
    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" 
    pause

     

Back To Top