LabtechConsulting
5/17/2017 - 3:39 AM

Windows stores the password temporarily if updates or upgrades request a restart of the operating system. ARSOUserConsent - This password i

Windows stores the password temporarily if updates or upgrades request a restart of the operating system.

ARSOUserConsent - This password is then used this one time to sign the active user back in without displaying a login prompt. It works exactly like the permanent automatic sign in feature in this regard but with the difference that it works only when updates or upgrades require a restart and not all the time.

##Windows Update settings
New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon' -Name 'ARSOUserConsent' -PropertyType DWORD -Value '1' -ea SilentlyContinue | Out-Null
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config' -Name 'DODownloadMode' -Value '0' -ea SilentlyContinue | Out-Null
Set-Service AppIDSvc -StartupType Automatic -ea SilentlyContinue | Out-Null
Set-Service BITS -StartupType Automatic -ea SilentlyContinue | Out-Null
Set-Service wuauserv -StartupType Automatic -ea SilentlyContinue | Out-Null
sc.exe config wuauserv type= own | Out-Null