Jump to content

How to determine which Hotfix i have ?


Recommended Posts

$hkey="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Hotfix"



$i=0
Do
    $i+=1

$kbN=RegEnumKey($hkey,$i)
MsgBox(64,"",$kbN)

Until $kbN=""

Thanks sir,

but it will be more satisfied for me that if you can determine for me that is that Hotfix 'KB 943232'is installed or not.. by a single msg box.. thanks again please reply :mellow:

Link to comment
Share on other sites

Thanks sir,

but it will be more satisfied for me that if you can determine for me that is that Hotfix 'KB 943232'is installed or not.. by a single msg box.. thanks again please reply :mellow:

Come on - that's quite simple and can easily be done by yourself. That's AutoIt scripting, Lesson 1.

Hint: If ... Then ...

Edited by water

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

It was actually pretty simple just with a line or two of AutoIt code as well.

If RegRead("HKLM64\Software\Microsoft\Windows NT\Currentversion\KBKB 943232", "Installed") Then
    MsgBox(0, "Result", "Installed")
Else
    MsgBox(0, "Result", "Not Installed")
EndIf

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

You can use also WMI:

Global $objWMIService = ObjGet("winmgmts:{impersonationLevel=impersonate}!\\" & @ComputerName & "\root\cimv2")
Global $colItems = $objWMIService.ExecQuery("SELECT HotFixID from Win32_QuickFixEngineering", "WQL", 0x30)
Global $HF_KB
If IsObj($colItems) Then
    For $objItem In $colItems
        If StringLeft($objItem.HotFixID, 1) <> "{" Then $HF_KB &= $objItem.HotFixID & " "
    Next
EndIf

$search = "KB943232"

If StringInStr($HF_KB, $search) > 0 Then
    ConsoleWrite("Hotfix " & $search & " is installed!" & @CRLF)
Else
    ConsoleWrite("Hotfix " & $search & " is NOT installed!" & @CRLF)
EndIf

BR,

UEZ

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Link to comment
Share on other sites

Great! That fits right in with me being in multiple choice mode today. Options, let there be options.

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...