Quick Fix Engineering (QFE) is a Microsoft term for the delivery of individual service updates to its operating systems and application programs such as Microsoft Office.
Questions tagged [qfe]
8 questions
2
votes
2 answers
How do I check that a Windows QFE/patch has been installed from c#?
What's the best way in c# to determine is a given QFE/patch has been installed?

Ari Pernick
- 469
- 4
- 8
2
votes
3 answers
Windows batch file for invalid microsoft updates
I am struck while creating a windows batch file which just indicates if an invalid KB article is installed on my computer/ windows server.
This is where i am at now,
Script :
@ECHO OFF
WMIC QFE GET HOTFIXID>%~dp0QFE_list.txt
FOR /f "delims=," %%a IN…

prashanth tv
- 23
- 1
- 5
2
votes
1 answer
Get list of full installed updates in PC
I tried to get list of full installed updates in my pc using following command.
wmic qfe list
But I got only windows updates,
Can you tell how to get list of full updates?
like
contorl panel -> Installed Updates
Code will in c# or Command…

Vikram Bose
- 3,197
- 2
- 16
- 33
2
votes
3 answers
Install .NET Framework 2.0 on Embedded XP (Win XPE)
I'm trying to install the .Net framework version 2.0 on embedded Windows XP SP2 (aka XPE).
I'm using the XPE specific version of the installer from…
Davesw
2
votes
2 answers
Querying WMI class Win32_QuickFixEngineering returns mucho weirdo timestamps (C#)
Class documentation here. The InstalledOn property is supposed to have a timestamp of (well, duh) when the fix was installed. But the doc doesn't say what's the format. I get something unintelligible, but it clearly means something.…

JCCyC
- 16,140
- 11
- 48
- 75
1
vote
1 answer
Which is the most comprehensive way to check applied KBs to a Windows machine?
I am using Powershell to run a status of a list of KBs and see if they are applied or not.
I have found a few ways and I have seen inconsistencies with the numbers they are reporting. Which is right?
You can check SYSTEMINFO and get a list of…

Rincewind
- 412
- 1
- 10
- 26
1
vote
1 answer
maintain multiple versions of Windows CE (QFEs)
We build firmware using Windows CE (6 and 7) on a Windows XP system. We often install the QFEs (CE patches/updates) from Microsoft as they are released. When we have to go back to a certain release to develop a patch, it can be a real pain because…

GL2014
- 6,016
- 4
- 15
- 22
0
votes
1 answer
How to use wmic in order to generate a txt with many columns
I'm using
wmic qfe get HotFixID >> WindowsUpdateVersion.txt
in order to export a list of KB{num}. I am looking for a command to reshape this list in many columns (3 or 4 columns, .txt or .xls, not important).
I have already tried with
wmic…

Matteo
- 3
- 1