Solve the problem that win10 cannot find group policy gpedit.msc

Create a text document and copy the following content:

@echo off

  pushd "%~dp0"

  dir /b %systemroot%\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >gp.txt

  dir /b  %systemroot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>gp.txt

  for /f %%i in ('findstr /i . gp.txt 2^>nul') do dism /online /norestart /add-package:"%systemroot%\servicing\Packages\%%i"

  pause

Save it as a gpedit.bat file, and then right-click to run it as an administrator.

Guess you like

Origin blog.csdn.net/baidu_39043816/article/details/108023087