Hello,
I need to makes an inventory of system patches installed on a group of machines.
I thought of writing an action that writes on a file the list of hotfixes and then read it with an analyse.
The action must be runnable on machines where PowerShell is not installed.
Regarding the action I tried something like this:
dos wmic /OUTPUT:HotfixList.temp qfe get Hotfixid
dos TYPE HotfixList.temp | FIND /V /I "HotFixID" > HotfixList
delete HotfixList.temp
but when I try it in the Fixlet Debugger it does not seem to produce any output.
Where am I wrong?