Public/Disable-Updates.ps1
function Disable-Updates { <# .DESCRIPTION This command disable automatic updates .Link https://github.com/TheTaylorLee/AdminToolbox #> [CmdletBinding()] param ( ) #Check For Admin Privleges Get-Elevation reg.exe add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v AUOptions /t REG_DWORD /d 1 /f net.exe stop wuauserv net.exe start wuauserv } |