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.
Re: How to read Registry tree ?
Windows scripting host cannot enumerate values. Use the registry APIs instead.
Re: How to read Registry tree ?
Quote:
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.
Re: How to read Registry tree ?
Professionals PLEASE HELP!
Re: How to read Registry tree ?
Re: How to read Registry tree ?