8

我有一个小项目来处理tel:协议链接。这是一个桌面应用程序,我正在使用 Visual Studio 2013 社区版进行开发。

以前,我使用简单的注册表修改来注册处理程序:

Microsoft.Win32.Registry.SetValue(registryKey, string.Empty, registryValue, Microsoft.Win32.RegistryValueKind.String);
Microsoft.Win32.Registry.SetValue(registryKey, "URL Protocol", String.Empty, Microsoft.Win32.RegistryValueKind.String);

registryKey = @"HKEY_CLASSES_ROOT\tel\shell\open\command";
registryValue = "\"" + AppDomain.CurrentDomain.BaseDirectory + "TelProtocolHandler.exe\" \"%1\"";
Microsoft.Win32.Registry.SetValue(registryKey, string.Empty, registryValue, Microsoft.Win32.RegistryValueKind.String);

但是,这似乎不再适用于 Windows 8。虽然注册表项具有所需的值,但链接仍由不同的应用程序处理。我的工具甚至没有出现在协议处理程序选择中:

在此处输入图像描述

我查看了演练:使用 Windows 8 自定义协议激活,但我无法将上述信息与我的应用程序相关联。文章提到了一个.appxmanifest文件,我的项目中没有该文件,因此无法添加为新项目。

4

1 回答 1

11

问完这个问题后,我偶然发现了在 Windows 8 中注册协议处理程序

尽管还有其他问题,但投票率最高的答案让我走上了正确的道路。最后,这就是我的结果:

// Register as the default handler for the tel: protocol.
const string protocolValue = "TEL:Telephone Invocation";
Registry.SetValue(
    @"HKEY_CLASSES_ROOT\tel",
    string.Empty,
    protocolValue,
    RegistryValueKind.String );
Registry.SetValue(
    @"HKEY_CLASSES_ROOT\tel",
    "URL Protocol",
    String.Empty,
    RegistryValueKind.String );

const string binaryName = "tel.exe";
string command = string.Format( "\"{0}{1}\" \"%1\"", AppDomain.CurrentDomain.BaseDirectory, binaryName );
Registry.SetValue( @"HKEY_CLASSES_ROOT\tel\shell\open\command", string.Empty, command, RegistryValueKind.String );

// For Windows 8+, register as a choosable protocol handler.

// Version detection from https://stackoverflow.com/a/17796139/259953
Version win8Version = new Version( 6, 2, 9200, 0 );
if( Environment.OSVersion.Platform == PlatformID.Win32NT &&
    Environment.OSVersion.Version >= win8Version ) {
    Registry.SetValue(
        @"HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TelProtocolHandler",
        string.Empty,
        protocolValue,
        RegistryValueKind.String );
    Registry.SetValue(
        @"HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TelProtocolHandler\shell\open\command",
        string.Empty,
        command,
        RegistryValueKind.String );

    Registry.SetValue(
        @"HKEY_LOCAL_MACHINE\SOFTWARE\TelProtocolHandler\Capabilities\URLAssociations",
        "tel",
        "TelProtocolHandler",
        RegistryValueKind.String );
    Registry.SetValue(
        @"HKEY_LOCAL_MACHINE\SOFTWARE\RegisteredApplications",
        "TelProtocolHandler",
        @"SOFTWARE\TelProtocolHandler\Capabilities",
        RegistryValueKind.String );
}

TelProtocolHandler是我的应用程序的名称,应替换为您的处理程序的名称。

另一个问题中接受的答案也存在ApplicationDescription于注册表中。对于我检查过的任何其他注册处理程序,我都没有看到相同的密钥,所以我把它排除在外,无法检测到任何问题。

另一个关键问题是,如果我设置处理程序的应用程序是 32 位的,那么所有这些都不起作用。在 Wow6432Node 中创建条目时,我无法选择处理程序作为给定协议的默认值。我花了一段时间才弄清楚这一点,因为我的应用程序被编译为 AnyCPU。我首先错过的是项目属性中的这个小标志:

在此处输入图像描述

于 2014-12-03T09:25:46.910 回答