views:

76

answers:

2

Possible Duplicates:
how do I create my own URL protocol? (e.g. so://…)
How do I register a custom URL protocol in Windows?

Is there a way to associate a scheme, like cms:// to a Windows program?

So when an user types cms://user:[email protected], it opens the program and can automatically connect using the given credentials.

A: 

What you need to know to register an application to a URL Protocol:

http://msdn.microsoft.com/en-us/library/aa767914(VS.85).aspx

Tells you the registry details and gives you a code sample.

Wadih M.
+3  A: 

This is covered in an MSDN article called Registering an Application to a URL Protocol

nikmd23
Didn't knew it was that easy... Couldn't find it, because I was searching on scheme instead of protocol :S Thank you!
Ronald
No problem - have fun!
nikmd23