Skip to content

Instantly share code, notes, and snippets.

@Eddy-Barraud
Last active December 10, 2020 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Eddy-Barraud/55150477a6d4594fdf8ca506a08c8245 to your computer and use it in GitHub Desktop.
Save Eddy-Barraud/55150477a6d4594fdf8ca506a08c8245 to your computer and use it in GitHub Desktop.

To enable Gpedit on windows 10 HOME run the following :

Copy this inside a 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

Then execute it with admin rights.

After that you will have access to gpedit.msc.

But it won't be the full version. I recommend using an alternative software like PolicyPlus right there : Policy Plus Release Build

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment