how can i edit registry value in binary type in vb.net?

See the Microsoft.Win32.Registry class, and start from there. The GetValue method of the RegistryKey class seems to support getting binary data from a key, I would guess it would return a byte array.
 
Back
Top