Skip to content

Instantly share code, notes, and snippets.

@Youngermaster
Created June 26, 2022 00:01
Show Gist options
  • Save Youngermaster/9ad0c498d606506656e05212b60d1d7d to your computer and use it in GitHub Desktop.
Save Youngermaster/9ad0c498d606506656e05212b60d1d7d to your computer and use it in GitHub Desktop.
This batch script enables gpedit.msc
@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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment