Home >System Tutorial >Windows Series >gpedit.msc file cannot be found win10 home version solution
Some home version win10 users want to open the Group Policy Editor, but after entering the command, a prompt that the gpedit.msc file cannot be found pops up. This does not actually mean that the home version cannot use Group Policy. It can be solved. of.
1. First, right-click a blank space on the desktop and select "New"
2. Then create a new "text document"
3. After opening Notepad, enter the following content: (note the line breaks and Space)
@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
4. After the input is completed, click "File" to save it as a file with the ".bat" suffix.
5. After saving, right-click the file and select "Run as administrator"
6. Wait for the automatic run to complete , you can open gpedit.msc normally.
The above is the detailed content of gpedit.msc file cannot be found win10 home version solution. For more information, please follow other related articles on the PHP Chinese website!