[Help] Automatic Updates Installation Without Any Notifications

Discussion in 'Windows 11' started by ashish1989, Mar 5, 2022.

  1. ashish1989

    ashish1989 MDL Senior Member

    Sep 20, 2013
    357
    30
    10
    Hello members.........
    I really don't like my system to be notified for restart or any other update related notification.
    I am using Windows 11 Pro 64 bit.
    Can anyone tell me how can I configure my windows 11 update group policies so that all the updates are downloaded and installed automatically without any user intervention.
    And most important, I must not get any restart notification or any update related notification.
    Kindly help....
     
  2. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,685
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,141
    84,319
    340
    #6 abbodi1406, Mar 5, 2022
    Last edited: Mar 5, 2022
    ----
     
  4. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,685
    60
    It should not nag you. And eventually force-updates to pre-install. But you are now responsible to check if there's a restart needed, almost all windows updates cannot be applied without a restart.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,685
    60
    #9 AveYo, Mar 6, 2022
    Last edited: Mar 14, 2022
    So you did not bother checking it out else the date should have made the question unnecessary.. but anyway, both.

    Edit: turns out 11 (at least Dev) uses another exe for systray. Updated the script!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. ashish1989

    ashish1989 MDL Senior Member

    Sep 20, 2013
    357
    30
    10
    Thank you brother, I have run the script, but how can I can check it out, my OS is currently upto date
     
  7. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,685
    60
    Tuesday
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. ashish1989

    ashish1989 MDL Senior Member

    Sep 20, 2013
    357
    30
    10
    Ok brother, will reply after checking shortly
     
  9. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    3,702
    5,104
    120
    #14 Dark Dinosaur, Mar 12, 2022
    Last edited: Mar 12, 2022
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    3,702
    5,104
    120
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    3,702
    5,104
    120
    #19 Dark Dinosaur, Mar 14, 2022
    Last edited: Mar 14, 2022
    for whom interesting
    work good almost without any notification
    better to run with Admin Privileges
    Copy / Paste To console, Notepad & save it as .CMD file
    Credit is yours

    Code:
    set WA="HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate"
    set AU="HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU"
    reg delete %WA% /f
    
    REG ADD %WA% /f /v SetRestartWarningSchd /t REG_DWORD /d 0
    REG ADD %WA% /f /v SetActiveHours /t REG_DWORD /d 1
    REG ADD %WA% /f /v ActiveHoursStart /t REG_DWORD /d 5
    REG ADD %WA% /f /v ActiveHoursEnd /t REG_DWORD /d 23
    REG ADD %WA% /f /v SetUpdateNotificationLevel /t REG_DWORD /d 0
    REG ADD %WA% /f /v SetAutoRestartNotificationConfig /t REG_DWORD /d 0
    REG ADD %WA% /f /v SetAutoRestartNotificationDisable /t REG_DWORD /d 1
    REG ADD %WA% /f /v SetAutoRestartRequiredNotificationDismissal /t REG_DWORD /d 0
    REG ADD %WA% /f /v SetUpdateNotificationLevel /t REG_DWORD /d 1
    REG ADD %WA% /f /v UpdateNotificationLevel /t REG_DWORD /d 2
    
    REG ADD %AU% /f /v NoAutoUpdate /t REG_DWORD /d 0
    REG ADD %AU% /f /v AUOptions /t REG_DWORD /d 2
    REG ADD %AU% /f /v NoAUShutdownOption /t REG_DWORD /d 1
    REG ADD %AU% /f /v NoAUAsDefaultShutdownOption /t REG_DWORD /d 1
    REG ADD %AU% /f /v AlwaysAutoRebootAtScheduledTime /t REG_DWORD /d 0
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,685
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...