Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want set default icon of some extension by C#. But this gives me error -> Security Exception was unhandled

RegistryKey FileExt = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Classes", RegistryKeyPermissionCheck.ReadWriteSubTree);

How can I do that?

share|improve this question

4 Answers

up vote 1 down vote accepted

try to run your application as administrator.

share|improve this answer
Thanks this is working. Can I request run as admin window by C#? – sczdavos Jul 26 '11 at 13:05
check this stackoverflow.com/questions/2818179/… – maniacneron Jul 26 '11 at 13:07

Maybe the user you are using to log in on the machine does not have privileged to access or modify the registry. try run the code with administrator account and see what happens. also if there is no user logged in the same error maybe occurs for instance check this.

share|improve this answer

I presume this is on Windows Vista or 7.

You may need to have elevated privileges to change some values in the registry. Even a user with administrative privileges will get the UAC pop up to ask permission before a program can do this.

Have a look at a question about this.

Here is a codeproject article about gaining elevated privileges.

share|improve this answer

try this method instead of yours:

public RegistryKey OpenSubKey(
    string name,
    bool writable
)

Maybe a true is enough ;-)

Registry.LocalMachine.OpenSubKey("SOFTWARE\\Classes", true);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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