windows 10 1709 disable updates powershell

0

How to disable windows update in windows 10 1709?

I have tried

New-Item "HKLM:SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Force
Set-ItemProperty -Path "HKLM:SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name NoAutoUpdate -Value 1
Get-ScheduledTask -TaskPath "\Microsoft\Windows\WindowsUpdate\" | Disable-ScheduledTask
Get-ScheduledTask -TaskPath "\Microsoft\Windows\UpdateOrchestrator\" | Disable-ScheduledTask
Stop-Service wuauserv
Set-Service wuauserv -StartupType Disabled

Windows update is still running and downloading updates, installing, restarting, etc.

Evlo

Posted 2018-06-12T21:41:26.673

Reputation: 79

Question was closed 2018-06-13T15:42:10.983

Easiest way: set all WAN connections, including Ethernet as well as WiFi, as metered. See https://www.windowscentral.com/how-set-ethernet-connection-metered-windows-10 . MS is apparently ignoring its own update settings.

– DrMoishe Pippik – 2018-06-12T22:32:53.017

Windows keeps changing, so the question needs to be re-asked. – wayofthefuture – 2018-06-13T04:55:27.290

No answers