Get all processes running on the local computer : Process « Windows System « VB.Net
- VB.Net
- Windows System
- Process
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
Related examples in the same category