Win10 Home Edition calls Group Policy (default closed), turn off system automatic update!

Windows 10 Home Edition does not have a local group policy editor and has been complained by many users. Users who like to set it up by themselves have therefore abandoned the Home Edition.

For example, if you set to turn off the automatic update of the system, Xiaobai shared a tutorial before, but many users cannot cancel it without a policy group.

 

Open the local group policy mode: (Win+R enter gpedit.msc), things that are hard to find in the registry can be processed graphically with this, which is very convenient.

Share a method so that users of the home system can also use local group policies

Tutorial:

Create a new text document on the desktop and copy the following content into it:

@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

After saving it, change the file extension from .txt to .cmd

 

Then right-click "group policy.cmd" to run as an administrator. Finally, we use Win+R to enter gpedit.msc to use the group policy function.

 

The policy group turns off automatic updates:

Press and hold [Win+R] on the keyboard at the same time

 

Enter [gpedit.msc], click OK

 

Click [Computer Configuration], [Administrative Templates], [windows components] and find [windows update]

 

Then find [Configuration automatic update]

 

Select [Disabled] accordingly, click [Apply], and finally click [OK] to complete the setting

 

 

Guess you like

Origin blog.csdn.net/kakak2000/article/details/108321174