---

Enable Group Policy Editor on Windows 10 and 11 Home Editions

 

  1. Enter "cmd" in the search field.
  2. Run cmd as administrator.
  3. The code you need to copy paste
  4. Restart your computer.

The code you need to copy paste:

@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

Video tutorial:

-

Newsletter