检测PC是否安装了Microsoft ActiveSync的最佳/最可靠的方法是什么?我的PC程序使用RAPI从设备中取出文件,如果没有安装,则会出现无法找到RAPI.dll的错误。

有帮助吗?

解决方案

您可以阅读注册表以检测是否已安装ActiveSync

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows CE Services 

其他提示

/// <summary>
/// Checks to see if ActiveSync/Windows Mobile Device Center
/// is installed on the PC.
/// </summary>
/// <param name="syncVersion">The version of the synchronization tool installed.</param>
/// <returns>True: Either ActiveSync or Windows Mobile Device Center is 
/// installed. False: version is null
/// </returns>
private static bool isActiveSyncInstalled(out Version syncVersion)
{
            using (RegistryKey reg = 
                Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows CE Services"))
            {
                if (reg == null)
                {
                    syncVersion = null;
                    return false;
                }

                int majorVersion = (int)reg.GetValue("MajorVersion", 0);
                int minorVersion = (int)reg.GetValue("MinorVersion", 0);
                int buildNumber = (int)reg.GetValue("BuildNumber", 0);

                syncVersion = new Version(majorVersion, minorVersion, buildNumber);
            }
            return true;
}

您还可以检查是否 C:\ Windows \ System32 \ rapi.dll 存在
您是否尝试将rapi.dll文件包含在您的应用程序中?

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top