Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Associate scheme (eg. cms://) to a Windows program [duplicate]

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.

like image 785
Ronald Avatar asked Jul 06 '09 20:07

Ronald


2 Answers

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

like image 112
nikmd23 Avatar answered Oct 10 '22 22:10

nikmd23


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.

like image 41
Wadih M. Avatar answered Oct 11 '22 00:10

Wadih M.