How do I set a value to the registry that is NOT in HKEY_CURRENT_USER?
My.Computer.Registry.CurrentUser.CreateSubKey("..\HKEY_CLASSES_ROOT\")
This above only puts it in a folder named ..
How do I set a value to the registry that is NOT in HKEY_CURRENT_USER?
My.Computer.Registry.CurrentUser.CreateSubKey("..\HKEY_CLASSES_ROOT\")
This above only puts it in a folder named ..
Use My.Computer.Registry.LocalMachine
to access HKEY_LOCAL_MACHINE
.
If that does not solve your problem, please let me know in comments.