#Get Currently logged in user
$ExplorerProcess = gwmi win32_process | where name -Match explorer
if($ExplorerProcess.getowner().user.count -gt 1){
$LoggedOnUser = $ExplorerProcess.getowner().user[0]
}
else{
$LoggedOnUser = $ExplorerProcess.getowner().user
}
if 是因为有时 getowner 由于某种原因会报告多个用户,不知道为什么,但在我的情况下,它是同一个用户,所以这不是问题。
strComputer = "." ' " use "." for local computer
Set objWMI = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\cimv2")
Set colSessions = objWMI.ExecQuery _
("Select * from Win32_LogonSession Where LogonType = 2 OR LogonType = 10")
If colSessions.Count = 0 Then
Wscript.Echo "No interactive users found"
Else
For Each objSession in colSessions
If objSession.LogonType = 2 Then
WScript.Echo "Logon type: Console"
Else
WScript.Echo "Logon type: RDP/Terminal Server"
End If
Set colList = objWMI.ExecQuery("Associators of " _
& "{Win32_LogonSession.LogonId=" & objSession.LogonId & "} " _
& "Where AssocClass=Win32_LoggedOnUser Role=Dependent" )
For Each objItem in colList
WScript.Echo "User: " & objItem.Name
WScript.Echo "FullName: " & objItem.FullName
WScript.Echo "Domain: " & objItem.Domain
Next
Wscript.Echo "Session start time: " & objSession.StartTime
WScript.Echo
Next
End If
这是原始来源,但现在是 404 :
他们建议使用 windows 上可用的(Windows 管理界面命令)WMIC:
将返回当前登录 xxx.xxx.xxx.xxx 的用户名,或
将返回当前登录到“workstation_name”的用户名
更新:这也应该适用于 Windows 10 - 如果您是远程计算机上的管理员。
抱歉,没有注意到您不想使用 Sysinternals。
那现在是 Microsoft technet 工具,有什么不使用它的具体原因吗?在Mark Russinovich进入 Microsoft
之前,我更喜欢 Sysinternals 而不是其他第三方工具。
Microsoft Sysinternals Suite 有一个名为Psloggedon的工具,
还有NBTSTAT,
我使用了 win32_loggedonuser,但遇到了返回多个域用户的问题,因此它不适用于我的目的。相反,我使用了(在 powershell 中)
if 是因为有时 getowner 由于某种原因会报告多个用户,不知道为什么,但在我的情况下,它是同一个用户,所以这不是问题。
您可以从 win32_loggedonuser 获取此信息。
从这个页面: