Creates a new Process component for each process resource on the specified computer.
Assembly: System (in System.dll)
Public Shared Function GetProcesses ( _ machineName As String _ ) As Process()
public static Process[] GetProcesses( string machineName )
public: static array<Process^>^ GetProcesses( String^ machineName )
static member GetProcesses : machineName:string -> Process[]
Parameters
- machineName
- Type: System.String
The computer from which to read the list of processes.
Return Value
Type: System.Diagnostics.Process[]An array of type Process that represents all the process resources running on the specified computer.
| Exception | Condition |
|---|---|
| ArgumentException |
The machineName parameter syntax is invalid. It might have length zero (0). |
| ArgumentNullException |
The machineName parameter is null. |
| PlatformNotSupportedException |
The operating system platform does not support this operation on remote computers. |
| InvalidOperationException |
There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. |
| Win32Exception |
A problem occurred accessing an underlying system API. |
Use this method to create an array of new Process components and associate them with all the process resources on the specified (usually remote) computer. The process resources must already exist on the local computer, because GetProcesses does not create system resources but rather associates resources with application-generated Process components. Because the operating system itself is running background processes, this array is never empty.
If you do not want to retrieve all the processes running on the computer, you can restrict their number by using the GetProcessById or GetProcessesByName method. GetProcessById creates a Process component that is associated with the process identified on the system by the process identifier that you pass to the method. GetProcessesByName creates an array of Process components whose associated process resources share the executable file you pass to the method.
This overload of the GetProcesses method is generally used to retrieve the list of process resources running on a remote computer on the network, but you can specify the local computer by passing ".".
Windows 98, Windows Millennium Edition Platform Note: The machineName parameter is not supported on Windows 98 or Windows Millennium Edition (Windows Me).
The following example retrieves information of the current process, all instances of Notepad running on the local computer, all instances of Notepad running on a specific computer using the computer alias and an IP address, all processes running on the local computer and a remote computer, a specific process on the local computer or a remote computer using the process id.
Imports System Imports System.Diagnostics Imports System.ComponentModel Namespace MyProcessSample _ '/ <summary> '/ Shell for the sample. '/ </summary> Class MyProcess Sub BindToRunningProcesses() ' Get the current process. Dim currentProcess As Process = Process.GetCurrentProcess() ' Get all instances of Notepad running on the local ' computer. Dim localByName As Process() = Process.GetProcessesByName("notepad") ' Get all instances of Notepad running on the specifiec ' computer. ' 1. Using the computer alias (do not precede with "\\"). Dim remoteByName As Process() = Process.GetProcessesByName("notepad", "myComputer") ' 2. Using an IP address to specify the machineName parameter. Dim ipByName As Process() = Process.GetProcessesByName("notepad", "169.0.0.0") ' Get all processes running on the local computer. Dim localAll As Process() = Process.GetProcesses() ' Get all processes running on the remote computer. Dim remoteAll As Process() = Process.GetProcesses("myComputer") ' Get a process on the local computer, using the process id. Dim localById As Process = Process.GetProcessById(1234) ' Get a process on a remote computer, using the process id. Dim remoteById As Process = Process.GetProcessById(2345, "myComputer") End Sub 'BindToRunningProcesses Shared Sub Main() Dim myProcess As New MyProcess() myProcess.BindToRunningProcesses() End Sub 'Main End Class 'MyProcess End Namespace 'MyProcessSample
using System; using System.Diagnostics; using System.ComponentModel; namespace MyProcessSample { /// <summary> /// Shell for the sample. /// </summary> class MyProcess { void BindToRunningProcesses() { // Get the current process. Process currentProcess = Process.GetCurrentProcess(); // Get all instances of Notepad running on the local // computer. Process [] localByName = Process.GetProcessesByName("notepad"); // Get all instances of Notepad running on the specifiec // computer. // 1. Using the computer alias (do not precede with "\\"). Process [] remoteByName = Process.GetProcessesByName("notepad", "myComputer"); // 2. Using an IP address to specify the machineName parameter. Process [] ipByName = Process.GetProcessesByName("notepad", "169.0.0.0"); // Get all processes running on the local computer. Process [] localAll = Process.GetProcesses(); // Get all processes running on the remote computer. Process [] remoteAll = Process.GetProcesses("myComputer"); // Get a process on the local computer, using the process id. Process localById = Process.GetProcessById(1234); // Get a process on a remote computer, using the process id. Process remoteById = Process.GetProcessById(2345, "myComputer"); } static void Main() { MyProcess myProcess = new MyProcess(); myProcess.BindToRunningProcesses(); } } }
#using <System.dll> using namespace System; using namespace System::Diagnostics; using namespace System::ComponentModel; int main() { // Get the current process. Process^ currentProcess = Process::GetCurrentProcess(); // Get all instances of Notepad running on the local // computer. array<Process^>^localByName = Process::GetProcessesByName( "notepad" ); // Get all instances of Notepad running on the specific // computer. // 1. Using the computer alias (do not precede with "\\"). array<Process^>^remoteByName = Process::GetProcessesByName( "notepad", "myComputer" ); // 2. Using an IP address to specify the machineName parameter. array<Process^>^ipByName = Process::GetProcessesByName( "notepad", "169.0.0.0" ); // Get all processes running on the local computer. array<Process^>^localAll = Process::GetProcesses(); // Get all processes running on the remote computer. array<Process^>^remoteAll = Process::GetProcesses( "myComputer" ); // Get a process on the local computer, using the process id. Process^ localById = Process::GetProcessById( 1234 ); // Get a process on a remote computer, using the process id. Process^ remoteById = Process::GetProcessById( 2345, "myComputer" ); }
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1-
LinkDemand
for full trust for the immediate caller. This member cannot be used by partially trusted code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.