本文介绍了远程机器的应用程序(所有打开的窗口)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我正在尝试获取远程计算机上所有打开的窗口的列表,如本地计算机的任务管理器的应用程序"选项卡所示.是否可以使用rasapi32.dll来获取它们?如果是这样,我将如何处理?

Hi,

I am trying to get the list of all opened windows on a remote machine as seen in task manager''s application tab for local machine. Is it possible to get them using rasapi32.dll? If so, how would I go about this?

推荐答案

Process[] processes = Process.GetProcesses("RemoteMachineName"); // You can also use an IP address here

您可以在此处 [ ^ ].


这篇关于远程机器的应用程序(所有打开的窗口)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 01:29