rafu5418 Posted May 23, 2010 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
Fire Posted May 23, 2010 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]
rafu5418 Posted May 27, 2010 Author 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
water Posted May 27, 2010 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 2024-07-28 - Version 1.6.3.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 (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
mdwerne Posted May 27, 2010 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!
rafu5418 Posted May 27, 2010 Author Posted May 27, 2010 Thanks 'mdwerne', 'Fire' and all of you... i got the result from your link .. really great, very nice.
GEOSoft Posted May 27, 2010 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 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!"
UEZ Posted May 27, 2010 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!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
GEOSoft Posted May 27, 2010 Posted May 27, 2010 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!"
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now