vote up 0 vote down star

Hi there, first time posting in StackOverflow. :D I need my software to add a couple of things in the registry.

My program will use

Process.Start(@"blblabla.smc");

to launch a file, but the problem is that most likely the user will not have a program set as default application for the particular file extension.

How can I add file associations to the WindowsRegistry?

flag

4 Answers

vote up 7 vote down check

In addition to the answers already provided, you can accomplish this by calling the command line programs "ASSOC" and "FTYPE". FTYPE associates a file type with a program. ASSOC associates a file extension with the file type specified through FTYPE. For example:

FTYPE SMCFile="C:\some_path\SMCProgram.exe" -some_option %1 %*
ASSOC .smc=SMCFile

This will make the necessary entries in the registry. For more information, type ASSOC /? or FTYPE /? at the command prompt.

link|flag
Nice! I didn't know those! – Treb Jul 4 at 21:20
Worked 100%. WTF, how is this site so amazing? The community here is fantastic. – Papuccino1 Jul 4 at 22:44
vote up 1 vote down

Use the Registry class in Microsoft.Win32.

Specifically, you want the ClassesRoot property of Registry to access the HKEY_CLASSES_ROOT key (cf. Understanding MS Windows File Associations and HKEY_CLASSES_ROOT: Core Services).

using Microsoft.Win32;
Registry
    .ClassesRoot
    .CreateSubKey(".smc")
    .SetValue("", "SMC", RegistryValueKind.String);
Registry
    .ClassesRoot
    .CreateSubKey("SMC\shell\open\command")
    .SetValue("", "SMCProcessor \"%1\"", RegistryValueKind.String);

Replace "SMCProcessor \"%1\"" with the command-line path and argument specification for the program that you wish to associate with files with extension .smc.

But, instead of messing with the registry, why not just say

Process.Start("SMCProcessor blblabla.smc");
link|flag
I have this code: 'Process EmulatorProcess; EmulatorProcess = Process.Start(@"C:\Documents and Settings\serg\Desktop\Emubox v0.01\SuperNintendo\Roms\Super Mario RPG (U).smc"); EmulatorProcess.WaitForInputIdle();' I used a hardcoded path just to test things out. How could I apply your last line of code to my needs? Thanks! :D – Papuccino1 Jul 4 at 20:45
vote up 0 vote down

Well, do you definitely want to change the file associations, or do you just want to make sure that the right application is started for the file? If you know the application to use, start that explicitly with Process.Start.

If you really want to message around with the registry, use the registry classes in the Microsoft.Win32 namespace, probably starting with RegistryKey.

I don't know offhand where file assocations are stored though...

link|flag
I 100% most definitely want to change file associations for the types of files I'll be opening with my software. If you figure out what I need please help me out! :D Thank you! – Papuccino1 Jul 4 at 20:16
vote up 0 vote down

If you are planning on providing an installer for your application, simply use the file association feature available in whatever installer framework you choose to use - even the Visual Studio setup project knows how to do this.

To alter file type associations directly from your code, I believe you have to look into HKEY_CLASSES_ROOT and find/create a key with the extension you want to bind to (ie ".pdf"). Within this key, the default value is a string containing a reference to another key within HKEY_CLASSES_ROOT. Go follow that pointer, expand/create the shell subkey and add/change your commands here. Look around this area with regedit to get the fealing of how it looks.

I have some C# code in a pet project of mine, which looks up the binding for PDF files and adds an extra option to their context menus. Feel free to have a look.

link|flag

Your Answer

Get an OpenID
or

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