|
-
Mar 8th, 2007, 02:51 AM
#1
Thread Starter
Junior Member
How to read Registry tree ?
Hellow,
I have such function:
Private Function Registry_Read(Key_Path, Key_Name) As Variant
On Error Resume Next
Dim Registry As Object
Set Registry = CreateObject("WScript.Shell")
Registry_Read = Registry.RegRead(Key_Path & Key_Name)
End Function
How to read all the keys in Registry:
HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN\
I want to get all programs which RUNS at startup.
-
Mar 8th, 2007, 04:20 AM
#2
Re: How to read Registry tree ?
Windows scripting host cannot enumerate values. Use the registry APIs instead.
-
Mar 8th, 2007, 05:03 AM
#3
Thread Starter
Junior Member
Re: How to read Registry tree ?
 Originally Posted by schoolbusdriver
Windows scripting host cannot enumerate values. Use the registry APIs instead.
With script or API Please write a SAMPLE how to read ALL the keys in Registry:
HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN\
I want to get all programs which RUNS at startup.
Last edited by jikopa; Mar 8th, 2007 at 04:01 PM.
-
Mar 8th, 2007, 04:01 PM
#4
Thread Starter
Junior Member
Re: How to read Registry tree ?
Professionals PLEASE HELP!
-
Mar 8th, 2007, 04:06 PM
#5
Re: How to read Registry tree ?
-
Mar 8th, 2007, 04:12 PM
#6
Addicted Member
Re: How to read Registry tree ?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|