Reading binary registry values using regobj.dll 
Author Message
 Reading binary registry values using regobj.dll

Does anyone know how to output the values of binary registry data in hex/string/other
format?  I am using the regobj.dll provided at ( http://www.*-*-*.com/ ).

I am trying to output registry data in a single line that will contain hive,
key, subkey, value name, value type and value.  I can get everything except
binary values and Reg_Full_Resource_Descriptor entries.  Is there a newer
version of Regobj that will allow me to get these entires?  Is there another
easier way to do this?

Any assistance is greatly appreciated.  TIA.

kinfuzed

-----=  Posted via Newsfeeds.Com, Uncensored Usenet News  =-----
http://www.*-*-*.com/ - The #1 Newsgroup Service in the World!
 Check out our new Unlimited Server. No Download or Time Limits!
-----==  Over 80,000 Newsgroups - 19 Different Servers!  ==-----



Sat, 28 Feb 2004 00:00:04 GMT  
 Reading binary registry values using regobj.dll
Try this function:

Function Bin2Hex(Value,nDigit)
dim res,ib,i
res=""
For i=1 To LenB(Value)
  ib=Hex(AscB(MidB(value,i)))
  if len(ib) < 2 then ib="0"+ib
  res=res+ib
Next
If nDigit-Len(res)>0 Then res=String(nDigit-Len(res),"0") & res
Bin2Hex=res
End Function


Quote:

> Does anyone know how to output the values of binary registry data in
hex/string/other
> format?  I am using the regobj.dll provided at

(http://msdn.microsoft.com/vbasic/downloads/download.asp?ID=026).
Quote:

> I am trying to output registry data in a single line that will contain
hive,
> key, subkey, value name, value type and value.  I can get everything
except
> binary values and Reg_Full_Resource_Descriptor entries.  Is there a newer
> version of Regobj that will allow me to get these entires?  Is there
another
> easier way to do this?

> Any assistance is greatly appreciated.  TIA.

> kinfuzed

> -----=  Posted via Newsfeeds.Com, Uncensored Usenet News  =-----
> http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
>  Check out our new Unlimited Server. No Download or Time Limits!
> -----==  Over 80,000 Newsgroups - 19 Different Servers!  ==-----



Sat, 28 Feb 2004 16:59:45 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. RP: Need help - reading/writing binary values using regobj.dll

2. Need help - reading/writing binary values using regobj.dll

3. RP: Need help - reading/writing binary values using regobj.dll

4. Newbie needs help in reading installed programs from the registry using RegObj.dll

5. Adding a value to the registry of a remote PC using REGOBJ.DLL

6. Creating registry values (using Regobj.dll)

7. Newbie needs help in reading installed programs from the registry using RegObj.dll

8. Newbie needs help in reading installed programs from the registry using RegObj.dll

9. Newbie needs help in reading installed programs from the registry using RegObj.dll

10. Registry access using regobj.dll on NT

11. Registry access using regobj.dll on NT

12. Reading Binary Registry Values

 

 
Powered by phpBB® Forum Software