Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How i can check if a particular hotfix (windows update) is installed in my system?

Tags:

delphi

hotfix

I have some issues with the Riched20.dll file which is used by my application, this problem is fixed applying the KB884047 hotfix, in order to avoid problems with old windows versions, I want to detect when this hotfix is applied in the system, so How i can check if a particular hotfix (windows update) is installed in my system using delphi?

like image 553
Salvador Avatar asked May 12 '11 00:05

Salvador


1 Answers

Some time ago, I blogged about this topic search for installed windows updates using Delphi, WMI and WUA

The key is use the Windows Update Agent API

check this sample code.

//use in this way ISHotFixID_Installed('KB982799')
function  ISHotFixID_Installed(const HotFixID : string): Boolean;
var
  updateSession      : OleVariant;
  updateSearcher     : OleVariant;
  updateEntry        : OleVariant;
  updateSearchResult : OleVariant;
  UpdateCollection   : OleVariant;
  oEnum              : IEnumvariant;
  iValue             : LongWord;
begin
 result:=False;
  updateSession:= CreateOleObject('Microsoft.Update.Session');
  updateSearcher    := updateSession.CreateUpdateSearcher;
  //this line improves the performance , the online porperty indicates whether the UpdateSearcher goes online to search for updates. so how we are looking for already installed updates we can set this value to false
  updateSearcher.online:=False;
  updateSearchResult:= updateSearcher.Search(Format('IsInstalled = 1 and Type=%s',[QuotedStr('Software')]));
  UpdateCollection  := updateSearchResult.Updates;
  oEnum         := IUnknown(UpdateCollection._NewEnum) as IEnumVariant;
  while oEnum.Next(1, updateEntry, iValue) = 0 do
  begin
    Result:=Pos(HotFixID,updateEntry.Title)>0;
    updateEntry:=Unassigned;
    if Result then break;
  end;

end;
like image 177
RRUZ Avatar answered Oct 21 '22 14:10

RRUZ