Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ADDING
- My.Computer.Registry.CurrentUser.CreateSubKey("TestKey")
- My.Computer.Registry.SetValue("HKEY_CURRENT_USER\TestKey", "TestValue", "This is a test value.")
- READING
- My.Computer.Registry.GetValue("HKEY_CURRENT_USER\TestKey", "TestValue", Nothing)
- DELETING
- - Key
- My.Computer.Registry.CurrentUser.DeleteSubKey("TestKey")
- -Value
- My.Computer .Registry .CurrentUser.DeleteValue("Test value")
Advertisement
Add Comment
Please, Sign In to add comment