The text of this article is not in this database — only its details are. Read it on the old site: Get all the running process on your machine using VB.NET
4 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.

Romie BehunineditedPosted Dec 14, 2010, 1:01 AMEdited Dec 14, 2010, 1:01 AM
Not sure why you did it that way... to get ALL the processes you can do this: Dim procList() As Process = Process.GetProcesses() Dim i As Integer Dim x As Integer x = procList.Length For i = 0 To x - 1 Step i + 1 ...... Was a helpful article though.... thanks
paresh khokharPosted Oct 18, 2007, 11:58 AM
how can we get other properties of processes like priority,time,threads etc. is it also possible with c#? if yes, can you tell me how?
Abdulmottaleb ElabourPosted Aug 10, 2006, 10:47 AM
how to Get all the running process in other machine , not in local machine . please i want example.