如何获取远程机器正在运行的进程信息
我想知道如何在VC++中获取远程PC正在运行的进程或任务。
I want to know how to get running process or tasks of remote PC in VC++.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道如何在VC++中获取远程PC正在运行的进程或任务。
I want to know how to get running process or tasks of remote PC in VC++.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
有几种方法。一种是打开该机器的注册表,并通过注册表接口枚举进程以获得性能数据。
另一种方法是连接到该计算机上的 WMI 命名空间,然后枚举
Win32_Process
的实例。There are a couple of ways. One is to open that machine's registry, and enumerate processes via the registry interface to the performance data.
Another would be to connect to that the WMI namespace on that machine, and then enumerate the instances of
Win32_Process
.