使用.net查询所有RDP会话
我很难找到一种使用 .net 查询所有 RDP 会话的方法。任何人都知道一种无需解析 qwinsta.exe 调用结果即可返回此数据的方法吗?
目前我正在使用 qwinsta 方法,但是在查询不同的操作系统安装(2003/2008/2008r2 等)时,这会返回一些非常意外的结果。
I am a lot of difficulty finding a way to query all RDP sessions using .net. Anyone know of a way to return this data without having to parse the results of a qwinsta.exe call?
Currently i am using the qwinsta method, but this is returning some very unexpected results when querying different os installations (2003/2008/2008r2 etc.).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用各种 WTS* 函数(WTSEnumerateSessions 等)或使用 Cassia 库,它为那些非托管 API 调用提供了包装器。
You can do this using the various WTS* functions (WTSEnumerateSessions and friends), or using the Cassia library, which provides a wrapper for those unmanaged API calls.