Awesome... Thanks man.
Some of the info did not show up in your post, but I was able to figure it out.
- Obtain the list of updates:
wmic qfe get hotfixid >> c:\list.txt(This will get you the list of all updates that are currently installed.) 2. Open C:\list.txt in Notepad. (Remove the first line, it's just the title) 3. Generate this uninstall script:
for /f %i in ('type c:\list.txt') do echo wusa /uninstall /kb:%i /quiet /norestart >> c:\uninstall.cmd
4. Go to Edit > Replace and set the following field values: (CTRL+H, Replace "/kb:KB " with "/KB:" )
5. Run the resulting script.
6. Reboot the node.
NOTE: This is what the syntax should look like after you edit with CTRL+H.
wusa /uninstall /KB:981391 /quiet /norestart