简体   繁体   中英

Get user login name in C#

How to check login user name from the system in c# I tried it using this method

static string whoisLoggedIn(string HostOrIP)
{
     GUFlag = true;
     HostOrIP = Environment.MachineName;
     System.Management.ConnectionOptions myConnectionOptions = new System.Management.ConnectionOptions();
     myConnectionOptions.Impersonation = System.Management.ImpersonationLevel.Impersonate;

     System.Management.ManagementScope objwmiservice;
     System.Management.ManagementObjectSearcher myObjectSearcher2;
     System.Management.ManagementObjectCollection myCollection2;

     try
     {
         objwmiservice = new System.Management.ManagementScope(("\\\\" + (HostOrIP +
"\\root\\cimv2")), myConnectionOptions);
         objwmiservice.Connect();
         myObjectSearcher2 = new System.Management.ManagementObjectSearcher(objwmiservice.Path.ToString(),
"Select UserName from Win32_ComputerSystem");
         myObjectSearcher2.Options.Timeout = new TimeSpan(0, 0, 0, 0, 7000);
         myCollection2 = myObjectSearcher2.Get();
         GUFlag = false;

         foreach (System.Management.ManagementObject myObject in myCollection2)
         {
             if (!(myObject.GetPropertyValue("Username") == null))
             {
                 string Userx = myObject.GetPropertyValue("Username").ToString();
                 int posx = Userx.LastIndexOf("\\");
                 if ((posx > 0))
                 {
                     Userx = Userx.Substring((posx + 1));
                     return Userx.ToUpper();
                 }
             }
         }
         return "<Nobody>";
     }
     catch (Exception)
     {
         return "<Nobody>";
     }
     finally {

         GUFlag = false;
     }

 }

But the problem is some time deadlock occur on myObjectSearcher2.Get(); Is there any way available to get login username

did you try that?

Environment.UserName

it will give you the user name of the user currently login on windows

EDIT

I found this bit of code here http://www.debugging.com/bug/20243 , it may solve your issue.

solution by using WMI ( http://msdn.microsoft.com/en-us/library/system.management.aspx ):

    private string GetUserName()
    {
        string result = "";
        using (ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT UserName, Name FROM Win32_ComputerSystem"))
        {
            foreach (ManagementObject mo in searcher.Get())
            {
                if (mo["UserName"] != null)
                    result = mo["UserName"].ToString();
                if (mo["Name"] != null)
                    result += " (" + mo["Name"].ToString() + ")";
            }
        }
        return result;
    }

Unless I'm not understanding you correctly, I believe it's just:

using System.Security.Principal;

this.nametext = WindowsIdentity.GetCurrent().Name;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM