2

I'm researching whether it would be possible to use Custom URL Application Protocols (such as custom://) to launch my application but it looks like all implementations modify the HKCR. This causes some nasty security warnings (I believe because of UAC). Does anyone know if it's possible to install Custom URL Protocols as the HKCU level? Or an alternate way to avoid these warnings?

Thanks!

Tim
  • 159
  • 2
  • 11

1 Answers1

5

Use the same information you found for HKCR, but use the following path:

HKCU\Software\Classes

Chris
  • 1,118
  • 8
  • 24
  • For those that don't know the method - you can find that here: http://blogs.msdn.com/b/noahc/archive/2006/10/19/register-a-custom-url-protocol-handler.aspx – Chris Feb 23 '11 at 21:25