Home  >  Article  >  System Tutorial  >  How to enable administrator rights when Win10 Home Edition has no local policy option

How to enable administrator rights when Win10 Home Edition has no local policy option

WBOY
WBOYforward
2024-01-05 11:59:48725browse

Many users will encounter the problem that there is no local policy group when using the win10 home version system. This is because the computer does not have settings to turn it on. We can enter the settings to turn on this function and then it can be used normally.

Win10 Home Edition administrator permissions are enabled without local policy

1. This is because the system does not enable this function, we can just enable it ourselves.

First create a new text document on the desktop, and then enter the following code into it.

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 /addlpackage:"C:\Windows\servicing\Packages1%%i"

pause

How to enable administrator rights when Win10 Home Edition has no local policy option

2. Click on the file above, and then select "Save As" below

How to enable administrator rights when Win10 Home Edition has no local policy option

3. Add the suffix ".bat", and then select "All Files" below ”

How to enable administrator rights when Win10 Home Edition has no local policy option

4. Double-click to run the program you saved, and then you’re done.

How to enable administrator rights when Win10 Home Edition has no local policy option

The above is the detailed content of How to enable administrator rights when Win10 Home Edition has no local policy option. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:somode.com. If there is any infringement, please contact admin@php.cn delete