Question modify registry?

just369

Member
Joined
May 12, 2010
Messages
17
Programming Experience
Beginner
how can i modify the registry withj vb net

this is what i want to modify



'To Enable Remote DCOM in the computer
"HKLM\SOFTWARE\Microsoft\Ole\EnableDCOM","Y","REG_SZ"

'To Set Authentication Level to Connect
"HKLM\SOFTWARE\Microsoft\Ole\LegacyAuthenticationLevel",2,"REG_DWORD"

'To Set Impersonation level to Impersonate
"HKLM\SOFTWARE\Microsoft\Ole\LegacyImpersonationLevel",3,"REG_DWORD"
 
Common Registry Tasks
for example:
VB.NET:
My.Computer.Registry.SetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Ole", "EnableDCOM", "Y")
 
Back
Top