我有一个需要当前登录用户名的Windows服务。我尝试了System.Environment.UserName
,Windows身份和Windows窗体身份验证,但所有用户都返回“系统”,因为我的服务在系统特权中运行。有没有办法在不更改我的服务帐户类型的情况下获取当前登录的用户名?
答案 0 :(得分:75)
这是获取用户名的WMI查询:
ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT UserName FROM Win32_ComputerSystem");
ManagementObjectCollection collection = searcher.Get();
string username = (string)collection.Cast<ManagementBaseObject>().First()["UserName"];
您需要手动在参考文献下添加System.Management
。
答案 1 :(得分:34)
如果您在用户网络中,则用户名将不同:
Environment.UserName
将显示格式:'用户名', 而不是
System.Security.Principal.WindowsIdentity.GetCurrent().Name
将显示格式:'NetworkName \ Username'
选择所需的格式。
答案 2 :(得分:18)
ManagementObjectSearcher(“SELECT UserName FROM Win32_ComputerSystem”)解决方案对我来说很好。但是,如果通过远程桌面连接启动服务,则它不起作用。 要解决此问题,我们可以要求始终在PC上运行的交互式进程的所有者的用户名:explorer.exe。这样,我们始终从Windows服务中获取当前Windows登录的用户名:
foreach (System.Management.ManagementObject Process in Processes.Get())
{
if (Process["ExecutablePath"] != null &&
System.IO.Path.GetFileName(Process["ExecutablePath"].ToString()).ToLower() == "explorer.exe" )
{
string[] OwnerInfo = new string[2];
Process.InvokeMethod("GetOwner", (object[])OwnerInfo);
Console.WriteLine(string.Format("Windows Logged-in Interactive UserName={0}", OwnerInfo[0]));
break;
}
}
答案 3 :(得分:6)
修改后的Tapas's answer代码:
Dim searcher As New ManagementObjectSearcher("SELECT UserName FROM Win32_ComputerSystem")
Dim collection As ManagementObjectCollection = searcher.[Get]()
Dim username As String
For Each oReturn As ManagementObject In collection
username = oReturn("UserName")
Next
答案 4 :(得分:2)
试试WindowsIdentity.GetCurrent()
。您需要添加对System.Security.Principal
答案 5 :(得分:1)
您也可以尝试
System.Environment.GetEnvironmentVariable("UserName");
答案 6 :(得分:1)
以防万一有人正在寻找用户 显示名称 而不是 用户名 ,就像我一样。
这是款待:
System.DirectoryServices.AccountManagement.UserPrincipal.Current.DisplayName。
在项目中添加对System.DirectoryServices.AccountManagement
的引用。
答案 7 :(得分:0)
完成@xanblax的答案
private static string getUserName()
{
SelectQuery query = new SelectQuery(@"Select * from Win32_Process");
using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(query))
{
foreach (System.Management.ManagementObject Process in searcher.Get())
{
if (Process["ExecutablePath"] != null &&
string.Equals(Path.GetFileName(Process["ExecutablePath"].ToString()), "explorer.exe", StringComparison.OrdinalIgnoreCase))
{
string[] OwnerInfo = new string[2];
Process.InvokeMethod("GetOwner", (object[])OwnerInfo);
return OwnerInfo[0];
}
}
}
return "";
}