Jump to content

Enumerate Regkey - Find all strings and values underneath


Recommended Posts

Hi all,

I'm trying to find all the drivers on a system. I'm trying to find all of the keys underneath this key:

HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Devices

After searching, I still can't figure out how I'd go about this. Does anyone know how to create an array of strings and values underneath one key? Thank you ahead of time!

Link to comment
Share on other sites

Not tested but this should work. If Not I wrote a working version just a few days ago and it should be in an archived version of the script I was working on at the time. Let me know.

#include<array.au3> ;; For demo purposes only
Global $sKey = "HKCU\Software\Microsoft\Windows NT\CurrentVersion\Devices"
$sSep = Opt("GUIDataSeparatorChar")
$aResult = _RegEnum_KeyData($sKey)
If NOT @Error Then _ArrayDisplay($aResult)

Func _RegEnum_KeyData($s_Key)
    Local $sStr, $iCount = 1, $sHold, $aItems, $aRtn
    While 1
       $sHold = RegEnumKey($s_Key, $iCount)
       If @Error Then ExitLoop
       $sStr &= $sHold & $sSep
    WEnd
    If $sHold Then
        $aItems = StringSplit(StringTrimRight($sHold, StringLen($sSep)), $sSep)
        If IsArray($aItems) Then
            Dim $aRtn[Ubound($aItems)][2]
            For $i = 1 To Ubound($aItems)
                $aRtn[$i][0] = $aItems[$i]
                $aRtn[$i][1] = RegRead($s_Key, $aItems[$i])
            Next
        If $aRtn[1][0] = "" And $aRtn[1][1] <> "" Then $aRtn[1][0] = "(Default)" ;; This can be removed without affecting anything
        Return $aRtn
        EndIf
    EndIf
    Return SetError(1)
EndFunc

EDIT Added an Error return

Edited by GEOSoft

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

RegRead("HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows", "Device")

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...