有没有办法在c#中找到Teamviewer ID?

时间:2013-06-18 10:35:30

标签: c#

我正在创建一个记录用户活动的程序,我希望能够获取Teamviewer ID并将其发送到日志,我知道如何通过将信息分配给日志来将信息发送到日志变量,但我不确定如何将团队查看者ID传递给所述变量,并希望得到一些帮助。

任何和所有帮助将不胜感激:)

5 个答案:

答案 0 :(得分:10)

这就是我正在使用的。

    public static string GetTeamviewerID()
    {
        var versions = new[] {"4", "5", "5.1", "6", "7", "8"}.Reverse().ToList(); //Reverse to get ClientID of newer version if possible

        foreach (var path in new[]{"SOFTWARE\\TeamViewer","SOFTWARE\\Wow6432Node\\TeamViewer"})
        {
            if (Registry.LocalMachine.OpenSubKey(path) != null)
            {
                foreach (var version in versions)
                {
                    var subKey = string.Format("{0}\\Version{1}", path, version);
                    if (Registry.LocalMachine.OpenSubKey(subKey) != null)
                    {
                        var clientID = Registry.LocalMachine.OpenSubKey(subKey).GetValue("ClientID");
                        if (clientID != null) //found it?
                        {
                            return Convert.ToInt32(clientID).ToString();
                        }
                    }
                }
            }
        }
        //Not found, return an empty string
        return string.Empty;
    }

答案 1 :(得分:10)

版本10在注册表中的位置略有不同。

以下代码适用于ver。 10和旧版本。它还考虑了32位和64位操作系统之间的差异:

long GetTeamViewerId()
{
    try
    {
        string regPath = Environment.Is64BitOperatingSystem ? @"SOFTWARE\Wow6432Node\TeamViewer" : @"SOFTWARE\TeamViewer";
        RegistryKey key = Registry.LocalMachine.OpenSubKey(regPath);
        if (key == null)
            return 0;
        object clientId = key.GetValue("ClientID");
        if (clientId != null) //ver. 10
            return Convert.ToInt64(clientId);
        foreach (string subKeyName in key.GetSubKeyNames().Reverse()) //older versions
        {
            clientId = key.OpenSubKey(subKeyName).GetValue("ClientID");
            if (clientId != null)
                return Convert.ToInt64(clientId);
        }
        return 0;
    }
    catch (Exception e)
    {
        return 0;
    }
}

答案 2 :(得分:8)

对于Windows 8中的TeamViewer 8,TeamViewer ID存储在HKEY_LOCAL_MACHINE \ SOFTWARE \ Wow6432Node \ TeamViewer \ Version8 \ ClientID

从这里开始,只需要在C#中读取该注册表项,然后随意执行任何操作,如果需要,我将提供注册表读取的代码:)但是http://www.codeproject.com/Articles/3389/Read-write-and-delete-from-registry-with-C解释了它真的很好!祝你好运!

答案 3 :(得分:2)

在某些情况下,接受的解决方案可能是正确的,但ClientID可以位于注册表中的其他位置。

  1. 这取决于您是否使用64位操作系统。在64位操作系统上,您需要包含\ Wow6432 \。
  2. 有时注册表位置以版本结尾(例如\ Version9),但我见过它没有的情况。
  3. 可能的位置:

    • HKEY_LOCAL_MACHINE \ SOFTWARE \ Wow6432Node \的TeamViewer \版[版]
    • HKEY_LOCAL_MACHINE \ SOFTWARE \ Wow6432Node \的TeamViewer
    • HKEY_LOCAL_MACHINE \ SOFTWARE \的TeamViewer \版[版]
    • HKEY_LOCAL_MACHINE \ SOFTWARE \的TeamViewer \版

答案 4 :(得分:0)

public static string TvId()
{
    return Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\TeamViewer\\Version6", "ClientID", "FAILED").ToString();
}