Update 'README.md'

This commit is contained in:
Fierelier 2021-10-31 15:53:39 +00:00
parent 7a74bed2a1
commit 10f319e4ba
1 changed files with 15 additions and 2 deletions

View File

@ -1,6 +1,19 @@
A manual update client for W10 (Should work with older versions as well, though). Lets you pick the updates to install. Though you will still have to turn off automatic updates yourself.
A manual update client for W10 (Should work with older versions as well, though). Lets you pick the updates to install. Though you will still have to turn off automatic updates yourself, I personally use this method (run as admin):
```bat
rem Disable automatic updates:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 0x00000001 /f
rem Disable driver updates (GPU updates still happen though, on W10, I think):
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "ExcludeWUDriversInQualityUpdate" /t REG_DWORD /d 0x00000001 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata" /v "PreventDeviceMetadataFromNetwork" /t REG_DWORD /d 0x00000001 /f
rem Disable automatic update check schedule:
schtasks /Change /DISABLE /TN "\Microsoft\Windows\UpdateOrchestrator\Schedule Scan"
schtasks /Change /DISABLE /TN "\Microsoft\Windows\UpdateOrchestrator\Schedule Scan Static Task"
```
Requires [.NET Framework 3.5](https://docs.microsoft.com/en-us/dotnet/framework/install/dotnet-35-windows), but Windows should suggest to install it automatically when you run the script for the first time (script will crash, non-destructively). Just run `update.bat` as administrator.
**Based on:** [https://superuser.com/a/893915](https://superuser.com/a/893915) ([http://msdn.microsoft.com/en-us/library/aa387102%28VS.85%29.aspx](http://msdn.microsoft.com/en-us/library/aa387102%28VS.85%29.aspx), [https://docs.microsoft.com/en-us/windows/win32/wua_sdk/searching--downloading--and-installing-updates](https://docs.microsoft.com/en-us/windows/win32/wua_sdk/searching--downloading--and-installing-updates))
**Based on:** [https://superuser.com/a/893915](https://superuser.com/a/893915) ([http://msdn.microsoft.com/en-us/library/aa387102%28VS.85%29.aspx](http://msdn.microsoft.com/en-us/library/aa387102%28VS.85%29.aspx), [https://docs.microsoft.com/en-us/windows/win32/wua_sdk/searching--downloading--and-installing-updates](https://docs.microsoft.com/en-us/windows/win32/wua_sdk/searching--downloading--and-installing-updates))
No license.