rafu5418 0 Posted May 23, 2010 hi, i want to know that is my windows xp has 'Hotfix KB 943232' installed ? if so how to detect with autoit? please let me know how to detect 'Hotfix KB 943232' is installed.. Thank you Share this post Link to post Share on other sites
Fire 3 Posted May 23, 2010 $hkey="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Hotfix" $i=0 Do $i+=1 $kbN=RegEnumKey($hkey,$i) MsgBox(64,"",$kbN) Until $kbN="" [size="5"] [/size] Share this post Link to post Share on other sites
rafu5418 0 Posted May 27, 2010 $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 Share this post Link to post Share on other sites
water 2,409 Posted May 27, 2010 (edited) 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 Come on - that's quite simple and can easily be done by yourself. That's AutoIt scripting, Lesson 1.Hint: If ... Then ... Edited May 27, 2010 by water My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
mdwerne 3 Posted May 27, 2010 hi, i want to know that is my windows xp has 'Hotfix KB 943232' installed ? if so how to detect with autoit? please let me know how to detect 'Hotfix KB 943232' is installed.. Thank you CheckIt! Share this post Link to post Share on other sites
rafu5418 0 Posted May 27, 2010 Thanks 'mdwerne', 'Fire' and all of you... i got the result from your link .. really great, very nice. Share this post Link to post Share on other sites
GEOSoft 68 Posted May 27, 2010 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 GeorgeQuestion 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!" Share this post Link to post Share on other sites
UEZ 1,290 Posted May 27, 2010 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!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ Share this post Link to post Share on other sites
GEOSoft 68 Posted May 27, 2010 Great! That fits right in with me being in multiple choice mode today. Options, let there be options. GeorgeQuestion 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!" Share this post Link to post Share on other sites