C# 如何获取 Windows 会话列表?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1088091/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to get a list of Windows sessions?
提问by Martin
I am trying to find a way to get a list of Windows sessions? I need the same information as the one displayed in the Task Manager on the User tab. I need to know if the user is active or not and if s/he is logged on in the Remote Desktop session.
我想找到一种方法来获取 Windows 会话列表?我需要与“用户”选项卡上“任务管理器”中显示的信息相同的信息。我需要知道用户是否处于活动状态,以及他/她是否已登录远程桌面会话。
Any idea on how to do that with C# / Windows XP Pro?
关于如何使用 C#/Windows XP Pro 做到这一点的任何想法?
采纳答案by Reed Copsey
I believe you'll need to use P/Invoke to retrieve this information.
我相信您需要使用 P/Invoke 来检索此信息。
The relevant APIs are documented in this MSDN page.
相关 API 记录在此 MSDN 页面中。
回答by pjp
As a starting point you can get a list of users logged on by running the command
作为起点,您可以通过运行以下命令获取登录的用户列表
qwinsta
From the command prompt.
从命令提示符。
This will give output like
这将给出类似的输出
C:\WINDOWS\system32>qwinsta
SESSIONNAME USERNAME ID STATE TYPE DEVICE
>console me 0 Active wdcon
rdp-tcp 65536 Listen rdpwd
and will list any remote sessions.
并将列出任何远程会话。
回答by Kevin Montrose
Use LsaEnumerateLogonSessionsvia P/Invoke. You'll also need LsaFreeReturnBufferto cleanup after enumerating.
通过 P/Invoke使用LsaEnumerateLogonSessions。您还需要LsaFreeReturnBuffer在枚举后进行清理。
回答by xpmatteo
Another way is to use the Logonsessions utility from Sysinternals:
另一种方法是使用 Sysinternals 的 Logonsessions 实用程序:
http://technet.microsoft.com/en-us/sysinternals/bb896769.aspx
http://technet.microsoft.com/en-us/sysinternals/bb896769.aspx
回答by JRrelyea
You do not need to use Pinvoke. WMI does it, and well: "select Name, SessionId from Win32_Process" in the root\cimv2 namespace. And, it can be called from a remote machine. Simpler. Add in a where clause in the select to fine tune what you get back.
您不需要使用 Pinvoke。WMI 做到了,而且很好:在 root\cimv2 命名空间中“从 Win32_Process 中选择名称、SessionId”。而且,它可以从远程机器调用。更简单。在选择中添加 where 子句以微调您返回的内容。