You can use the Management Utilities to silently remove Microsoft updates


Create a batch file with the KB number of the update you wish to have removed.


The following example remove the KB3097877 without forcing a reboot




echo off

cd\

cd c:\windows\system32

wusa.exe /uninstall /kb:3097877 /quiet /norestart

exit


Create a Third Party template to run the batch file