Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I add a custom url handler on Windows. Like iTunes itms://

I would like telnet://blah to open putty and not the native windows telnet client.

I don't even know what this 'feature' is called under windows so I'm having no luck find any information about it.

Thanks in advance, Jan

like image 933
Jan Bannister Avatar asked Apr 28 '09 08:04

Jan Bannister


People also ask

What are URL handlers?

The URL Handler is a Sling Model and can be adapted either from a request or a resource. It automatically reads the context-specific configuration for the Site URLs based on the resource path of the current request or the path of the resource adapted from. Example: UrlHandler urlHandler = request.


1 Answers

If it's simple, you can do it via the command line:

ftype telnet # view current binding
ftype telnet=\path\to\putty.exe %1

Otherwise you'll need to use the registry as previously posted.

like image 130
Richard Szalay Avatar answered Oct 02 '22 06:10

Richard Szalay