I'm looking to programmatically modify the edit verb for the shell on Vista. For example, I want right click edit (in explorer) to open a .cs file w/ Notepad++.

How do I change a file association on Windows Vista?

Thanks

link|improve this question

This is really an OS configuration question in my opinion. – EBGreen Feb 19 '09 at 15:33
OK. So which part are you having trouble with? You haven't asked a question. – Rob Kennedy Feb 19 '09 at 15:53
My question is how to change the shell's edit file association on a Vista machine? – user38309 Feb 19 '09 at 15:55
Great. Now I think it looks like a programming question. – Rob Kennedy Feb 19 '09 at 15:59
Ehh...you have completely changed the intent of the question that was asked. The OP never said anything about doing this programatically. – EBGreen Feb 19 '09 at 16:11
feedback

1 Answer

up vote 1 down vote accepted

You'll need Administrative login for that, since you have to modify HKEY_CLASSES_ROOT. Find the registry key associated with .cs files; you'll find a description like "C# Source Code File" (although probably not that; I'm not on a machine with VS installed right now to check). That key will point you to another one (with MS, it's usually a GUID) which is where the settings for edit, open, and so forth are stored; that's where you'll need to make your changes.

That should get you started, unless Rob guessed wrong and you didn't mean "programmatically modify" in the first place. :-)

link|improve this answer
Thanks Ken, I was able to get this to work by copying the Open key format located in HKEY_CLASSES_ROOT\VisualStudio.cs.9.0\shell\ and create a sibling Edit key. – user38309 Feb 19 '09 at 16:21
feedback

Your Answer

 
or
required, but never shown

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