Home > Article > System Tutorial > How to enable administrator rights when Win10 Home Edition has no local policy option
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.
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
2. Click on the file above, and then select "Save As" below
3. Add the suffix ".bat", and then select "All Files" below ”
4. Double-click to run the program you saved, and then you’re done.
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!