获取 Windows 用户显示名称的可靠方法

A reliable way to obtain the Windows user display name

我需要获取当前用户的显示名称,但找不到始终有效的解决方案。为清楚起见,我不是在寻找用户名。我需要 "John Doe"。 “开始”菜单上显示的值。

关于这个问题的帖子很多,但是 none 已经解决了我的问题。

Get Windows User Display Name

How do I get the AD Display Name of the currently logged in user

这两个帖子将我引向:

PrincipalContext context = domain.Equals(Environment.MachineName, StringComparison.CurrentCultureIgnoreCase) ?
    new PrincipalContext(ContextType.Machine) :
    new PrincipalContext(ContextType.Domain, domain);

UserPrincipal userPrincipal = new UserPrincipal(context) { SamAccountName = username };
PrincipalSearcher searcher = new PrincipalSearcher(userPrincipal);
userPrincipal = searcher.FindOne() as UserPrincipal;

string displayName = userPrincipal.DisplayName;

这段代码大部分都有效。但是,如果用户在 his/her 计算机上有 disabled/stopped 服务器服务,我会得到一个异常 "The Server service is not started."

System.DirectoryServices.AccountManagement.UserPrincipal.Current.DisplayName

同样的错误。

How to get logged-in user's full name in windows?

StringBuilder name = new StringBuilder(1024);
uint userNameSize = (uint)name.Capacity;
const int NameDisplay = 3;
GetUserNameEx(NameDisplay, name, ref userNameSize)

Returns 没有错误,但如果用户不在域中则为空字符串。

How do you read the user's display (first and last) name on all versions of Windows reliably?

// get SAM compatible name <server/machine>\<username>
if (0 != GetUserNameEx(2, username, ref userNameSize))
{
    IntPtr bufPtr;
    try
    {
        string domain = Regex.Replace(username.ToString(), @"(.+)\.+", @"");
        DirectoryContext context = new DirectoryContext(DirectoryContextType.Domain, domain);
        DomainController dc = DomainController.FindOne(context);

        if (0 == NetUserGetInfo(dc.IPAddress,
                   Regex.Replace(username.ToString(), @".+\(.+)", ""),
                   10, out bufPtr))
        {
            var userInfo = (USER_INFO_10) Marshal.PtrToStructure(bufPtr, typeof (USER_INFO_10));
            return Regex.Replace(userInfo.usri10_full_name, @"(\S+), (\S+)", " ");
        }
    }
    finally
    {
        NetApiBufferFree(out bufPtr);
    }
}

当调用 DomainController.FindOne 时,我得到一个带有消息 "Domain controller not found in the domain.." 的 ActiveDirectoryObjectNotFoundException。

我没有找到显示名称的注册表设置。

我不知道还能尝试什么。请帮忙。

以上所有方法只有在您位于域中时才有效。如果不是,则必须依赖本地用户帐户存储。以下详细说明了如何检索此信息:How can I get a list Local Windows Users (Only the Users that appear in the windows Logon Screen)。但是在域情况下,用户帐户不会在本地存储中。

如果您在域中但未连接到域控制器,您将无法随时使用显示名称。此信息存储在域控制器上,而不是本地用户的计算机上。如果您的用户在域中,他们真的不应该禁用服务器服务(使用 GPO)。此外,他们失去的不仅仅是通过禁用该服务来检索其用户帐户的能力。

我会在尝试获取显示名称之前检查域可用性。如果失败,则显示一条指示失败的消息。这里可能有太多的边缘情况,无法解决所有这些问题。按照您打算使用该程序的场景进行操作,并为其他人提供错误消息。