In WiX you can register file types easily:

<ProgId Id="MyApp.File" Description="MyApp File" Icon="MyAppEXE" IconIndex="0">
  <Extension Id="ext" ContentType="application/x-myapp-file">
    <Verb Id="open" Command="&amp;Open" TargetFile="MyAppEXE" Argument="&quot;%1&quot;"/>
  </Extension>
</ProgId>

What if I want to register an URL protocol, as specified here? Obviously, it has no extension so where would I put the Verb tag? Or should I use another approach?

Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I doubt there's an out-of-the-box feature for this in WiX (probably, in 3.6?), but as far as I can see by the link you provided, the process of registering a URL protocol is adding a bunch of entries to the system registry. Hence, you can add RegistryKey/RegistryValue elements manually to emulate this.

link|improve this answer
Thanks! I believe this is the right way to go. The most straight-forward solution is to export a valid protocol entry from the Registry, and then run it through heat.exe. This will produce the necessary RegistryKey/RegistryValue elements. – NOP slider Nov 29 '11 at 15:08
Yes, this sounds like a good approach. – Yan Sklyarenko Nov 29 '11 at 15:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.