I'm getting different results in output1 and output2. While the first one gives me the value I actually see in the registry, the latter only gives me the default value. What do I miss?
String output1 = Registry.GetValue(
@"HKEY_USERS\blobb", "beep", "nope!") as String;
String output2 = Registry.Users.GetValue(
@"blobb\beep", "nope!") as String;
I've tried quite a few different variation of the input string but none gave me the corrrect value.