1

This page explains how to make a Mac application to handle custom URL schemes. How can I do the same thing with PC?

prosseek
  • 182,215
  • 215
  • 566
  • 871
  • possible duplicate of [How do I register a custom URL protocol in Windows?](http://stackoverflow.com/questions/80650/how-do-i-register-a-custom-url-protocol-in-windows) – dotancohen May 11 '14 at 08:00

2 Answers2

4

To register an application as a URL Protocol Handler, you simply create registry entries telling windows what you want to do.

http://msdn.microsoft.com/en-us/library/aa767914.aspx

Ben
  • 34,935
  • 6
  • 74
  • 113
0

DO you want to write a pluggable protocol handler for Windows Shell and Internet Explorer? If so, check out documentation for URLMon.

feroze
  • 7,380
  • 7
  • 40
  • 57