本文介绍了如何获取另一台计算机的任务管理器的运行程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法从另一台计算机上获取任务管理器的运行过程?



我想在另一台电脑上运行所有正在运行的程序。



我有什么尝试过:



我尝试使用以下代码,但它适用于所有联网计算机



//使用机器名称获取在特定计算机上运行的所有记事本实例。

处理[] remoteByName = Process.GetProcessesByName(notepad,anotherComputerName);



//使用IP地址获取特定计算机上运行的所有记事本实例。

处理[] ipByName = Process.GetProcessesByName(notepad, 172.168.40.12);

Is there any way to get the running process of task manager from another computer?

I want to get all the running process on another computer.

What I have tried:

I have tried with the following code but it is working for all networked computers

// Get all instances of Notepad running on the specific computer, using machine name.
Process[] remoteByName = Process.GetProcessesByName("notepad","anotherComputerName");

// Get all instances of Notepad running on the specific computer, using IP address.
Process[] ipByName = Process.GetProcessesByName("notepad", "172.168.40.12");

推荐答案


这篇关于如何获取另一台计算机的任务管理器的运行程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 19:22