I am trying to create values in the registry. I have worked out how to create string values but I have no idea on how to create DWORDS and Binary Values. Does anyone have any idea of how this is done under .NET?
Printable View
I am trying to create values in the registry. I have worked out how to create string values but I have no idea on how to create DWORDS and Binary Values. Does anyone have any idea of how this is done under .NET?
I have found how to create a dword value but I still do not know how to create a reg_multi_sz and a reg_binary. Here is the code for the dword thanks to this forum :
VB Code:
Dim Reg As RegistryKey Reg = Registry.LocalMachine.OpenSubKey("Software", True) Reg.SetValue("TestDword", (Int(1))) Reg.Close()
If anyone has any idea on how to create reg_multi_sz and reg_binary for vb .net I would really apprectiate it.