Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. :: Remove a list of updates from a Windows workstation
  2. :: Don't forget to blacklist (e.g. in WSUS) to prevent reinstaling
  3.  
  4. :: KB3035583 -> Windows 10 update nagscreen
  5. :: KB971033 -> Windows 7 legit check :)
  6.  
  7. @echo off
  8. set updates=(3035583 971033)
  9. for %%i in %updates% do wusa /uninstall /kb:%%i /quiet /norestart
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement