Advertisement
Python253

disable_windows_auto_update

Mar 21st, 2024
600
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REG 0.62 KB | None | 0 0
  1. """
  2. === DISCLAIMER ===
  3. The following comments are for reference only and should not be included in the saved script.
  4.  
  5. File Data:
  6. - Filename: disable_windows_auto_update.reg
  7. - Version: 1.00
  8. - Author: Jeoi Reqi
  9.  
  10. Registry Modification Notes:
  11. - This '.reg' file enables the no auto update setting for Windows by setting a new key under the Windows Update policy.
  12. - It is recommended to create a backup of the registry before applying any changes.
  13. ==================
  14. """
  15.  
  16. Windows Registry Editor Version 5.00
  17.  
  18. [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
  19. "NoAutoUpdate"=dword:00000001
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement