Mega Code Archive

 
Categories / VB.Net / Windows System
 

Get all processes running on the remote computer

Imports System Imports System.Diagnostics Imports System.ComponentModel Class MyProcess    Shared Sub Main()       Dim remoteAll As Process() = Process.GetProcesses("myComputer")    End Sub End Class