powershell
Clear-Host
Write-Host "1 -> Never check for updates (not recommened)"
Write-Host "2 -> Check for updates but let me choose whether to download and install them"
Write-Host "3 -> Download updates but let me choose whether to install them"
Write-Host "4 -> Install updates automatically (recommended)"
Write-Host "Enter any character to exit"
Write-Host
switch(Read-Host "Choose Window Update Settings"){
1 {$UpdateValue = 1}
2 {$UpdateValue = 2}
3 {$UpdateValue = 3}
4 {$UpdateValue = 4}
Default{Exit}
}
$AutoUpdatePath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update"
Set-ItemProperty -Path $AutoUpdatePath -Name AUOptions -Value $UpdateValue
Open your registry and find or create the key below.
Create the required DWORD values from table below:
Value: NoAutoUpdate
Value: AUOptions
Value: ScheduledInstallDay
Value: ScheduledInstallTime
Restart Windows for the changes to take effect.
On 7 November 2015 at 09:58, Tin KOH <tinkohsn@gmail.com> wrote:
http://gadgets.ndtv.com/laptops/features/how-to-disable-windows-10-automatic-updates-728049
On 7 November 2015 at 09:34, Tin KOH <tinkohsn@gmail.com> wrote:
https://4sysops.com/archives/disable-windows-update-in-windows-10/
The registry can be found in
https://drive.google.com/file/d/0B2gSi3Jo8NCES09nSUNBdmUxMjA/view?usp=sharing
No comments:
Post a Comment