Win10 Home Edition does not have many functions, including Group Policy. So how can novice users enable it? The editor below will teach you how to enable it for your reference.
1. Right-click on the desktop and create a new text document.
2. Open the new text document and paste the document content:
@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
3. Click File--Save and close the text document.
#4. Change the extension of the text document from txt to cmd. When the extension modification prompt appears, press the OK button.
5. Right-click the New Text Document.cmd file and select Run as administrator.
#6. The batch processing window appears, wait for the processing to be completed, press any key to end and exit the cmd window.
7. Restart your computer, wait for the system configuration to be completed, and run-- gpedit.msc started group policy and succeeded.
The above is the solution to the useless win10 home edition group policy. I hope it can help everyone.
The above is the detailed content of What should I do if the group policy of Windows 10 Home Edition doesn't work?. For more information, please follow other related articles on the PHP Chinese website!