I'm in a situation where I need to uninstall all windows updates before a certain date to troubleshoot a strange bug. I found several vb/ps scripts to do this
However I'm trying to get at something along the lines of where date > 1/9/13 get rid of it !
The reason I ask is I feel like this is something I end up running into from time to time and ends up being pretty time consuming. Any ideas ?
I also found the following
wmic qfe get hotfixid,installedon | findstr %01/09/13% >> c:\list.txt
However this doesn't seem to return an accurate result set
I'm currently working with a windows server 2003 box. Thanks in advance.