win10 home version gpedit.msc can not find the policy group solution pro-test effective

Create a new txt file and copy the following content into the text:

@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

save as bat file

Run the file with administrator privileges, after the execution is complete

Use gpedit.msc to open the policy group editor

Guess you like

Origin blog.csdn.net/JavaLLU/article/details/128704017