vote up 0 vote down star
try
{
    RegistryKey rkApp = Registry.CurrentUser.OpenSubKey(
         "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);

    if (rkApp.GetValue("AdobeBitmapViewer") == null)
    {
        rkApp.SetValue("AdobeBitmapViewer", Application.ExecutablePath.ToString());
    }
    rkApp.Close();
}
catch (Exception) { }

This code works in Windows XP, but in Windows Vista I get an UnauthorizedException. Is there any way to bypass the UAC in Vista to set a registry key?

flag

2 Answers

vote up 1 vote down

I've seen pages saying use CreateKey as opposed to OpenKey - does that make a difference?

You may need to run as elevated authority. This may example help.

See here for another example of seeting rights.

link|flag
Elevation is needed for Registry.CurrentUser. – Michael May 1 at 23:28
I mean, not needed for Registry.CurrentUser. – Michael May 1 at 23:34
ok check the exception and see what's missing. – Preet Sangha May 1 at 23:45
vote up 1 vote down

This should not be a UAC issue. The key in question is in HKCU which is typically not protected by UAC. UAC typically removes your access to the keys like HKLM.

It is possible that a program on Vista came by and created that key with Admin priviledges and baring you from writing to the key on normal circumstances. Can you try passing false (means read only) and see if that allows you to open it? If so you should look at the actual permissions on the key and see what they are.

link|flag
I can confirm that the Tom's code works on my vanilla Vista machine. – brianpeiris May 2 at 2:44
note: the AdobeBitmapViewer key did not exist on my machine, so the key was created when I ran the code. – brianpeiris May 2 at 2:46

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.