Skip to content

Instantly share code, notes, and snippets.

@aruruka
Created July 16, 2020 06:16
Show Gist options
  • Save aruruka/1fd019f2c78d8a7b966a36e81f1049b3 to your computer and use it in GitHub Desktop.
Save aruruka/1fd019f2c78d8a7b966a36e81f1049b3 to your computer and use it in GitHub Desktop.
enable gpedit on windows
@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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment