I'm doing some fanciful work of launching a particular program (created by us) from a website. Currently, I'm still in the research phase, so I'm open to very outlandish suggestions.
Basically, our app will open through a "myapp://something" link; something Steam users might be familiar with. However, for usability, we want to safely provide some error scenario if someone clicks such a link without the appropriate program installed. Most browsers simply take you to an unhelpful, full-tab error page, but we have several potential solutions in place, even for older IE browsers.
For the newer IE browsers, I wanted to make use of this API function, apparently introduced in v10: navigator.msLaunchUri()
http://msdn.microsoft.com/en-us/library/ie/jj154912(v=vs.85).aspx
However, myself and several developers have looked for this method using the Developer Console - we're running IE11 on Windows 7 - and it doesn't appear to be present. I've tried on Windows 8 and it appears to be available, but part of me is hoping this is to do with some other possible variance in systems. Can anyone suggest to me why this method might or might not be available?