How to uninstall Windows updates using a CMD batch file
2 answers
According to MSDN , to remove update # 980302 you have to use the command:
wusa /uninstall /kb:980302
Since the documentation wusa /?
doesn't show anything about specifying more than /kb
s, your batch file should be multiple lines above (one for kb #).
Don't forget to run the batch file as Administrator!
+3
source to share