I have been trying to find a way to change the default file association for a specific file extension in windows 7. I have an app that is used to view .tif files that I want to prompt th user if its not the default viewer for that file type. If they choose to make it the default, I want to override the current default viewer. This works fine if there are no other viewers installed on the system. When there is another viewer that has been selected by the user, I cannot change the registry key that controls that here:

HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts.tif\UserChoice

I have scoured the web trying to find someone that has done this, but nobody seems to have any answers. When I try to update the "Progid" value within this key, I get a "Cannot write to the registry key" or "Requested registry access is not allowed" errors. The code is simple enough:

var path = @"Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.tif\UserChoice";
var key = Registry.CurrentUser.OpenSubKey(path, true);
key.SetValue("Progid", "myprogid...");

Is there some special protection on this key that prevents it from being programmatically edited?

link|improve this question

39% accept rate
Have you tried updating it, for example in a console application, which you run with administrator privileges? – ChristiaanV May 31 '11 at 17:29
It is a desktop app, running as myself but without admin privileges. That was my next step. – Jason Jun 1 '11 at 18:30
Running as administrator did not help. – Jason Jun 1 '11 at 18:43
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.