Advertisement
Guest User

WSUS Settings

a guest
Oct 26th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. Code between the dashed lines for Adding WSUS settings: (Replace DESTINY with the PC name of your server, or FQDN if on a domain) Save as WSUS ADD.reg, run on client machines, reboot the machine and you should see "managed by system admin in Windows Update.
  2. -------------------------------------------------------------
  3. Windows Registry Editor Version 5.00
  4.  
  5.  
  6. [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
  7. "ElevateNonAdmins"=dword:00000000
  8. "AcceptTrustedPublisherCerts"=dword:00000001
  9. "WUServer"="http://DESTINY"
  10. "WUStatusServer"="http://DESTINY"
  11.  
  12. [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
  13. "AUOptions"=dword:00000004
  14. "NoAutoUpdate"=dword:00000000
  15. "NoAutoRebootWithLoggedOnUsers"=dword:00000001
  16. "ScheduledInstallDay"=dword:00000000
  17. "ScheduledInstallTime"=dword:00000002
  18. "UseWUServer"=dword:00000001
  19. -------------------------------------------------------------
  20.  
  21.  
  22. Code between the dashed lines for Removing WSUS settings: This is critical, or the client will not be able to do Windows Updates once it leaves your shop. Save as WSUS REMOVE.reg, run after updates are done, reboot.
  23. -------------------------------------------------------------
  24. Windows Registry Editor Version 5.00
  25.  
  26. [-HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
  27.  
  28. [-HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
  29. -------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement