Mega Code Archive
Categories
/
VB.Net
/
Windows System
Get all processes running on the local computer
Imports System Imports System.Diagnostics Imports System.ComponentModel Class MyProcess Shared Sub Main() Dim localAll As Process() = Process.GetProcesses() End Sub End Class