Recently, many Win10 users have discovered that there is no Group Policy Editor in the system, which has become a big problem. So why doesn’t Win10 have a Group Policy Editor? This problem has troubled many users. In this article, PHP editor Xigua will analyze this problem for everyone and provide solutions so that everyone will no longer worry about the lack of Group Policy Editor in Win10.
What to do if Win10 does not have the Group Policy Editor Analysis
Method 1,
1. Press and hold "win R" at the same time to open the run window, enter "mmc" and click " Sure".
#2. After entering the console, click "File" in the upper left corner and select "Add/Remove Snap-in".
#3. In the new page that pops up, find "Local Users and Groups" and click "Add".
#4. In the subsequent pop-up window, select "Local Computer" and click "Finish".
Method 2,
1. First, create a notepad file on the desktop, and then paste the code into the notepad
@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
In the operation, select "File"-"Save As".
2. When saving as operation, add ".bat" after the name, then select "All files" as the file type below, and then click "Save" That's it.
3. Next, you can see a ".bat" command running file on the desktop. Click to open and run, and you can add a new group policy function to win10. .
4. For final verification, use "win r" to open the run dialog box, enter the open group policy command "gpedit.msc", and click "OK" to open it successfully. Group Policy.
The above is the detailed content of Why doesn't Win10 have a Group Policy Editor? What should I do if there is no Group Policy Editor in Win10?. For more information, please follow other related articles on the PHP Chinese website!