Hello
I want to retrieve the list of all the applications running in a windows xp machine, i'm talking about the applications that are in the first tab of the task manager?
thanks
Printable View
Hello
I want to retrieve the list of all the applications running in a windows xp machine, i'm talking about the applications that are in the first tab of the task manager?
thanks
The applications showing in the first tab of the taskmanager are simply processes with a window, so if youd loop through all running processes on a machine and find the ones where MainWindowTitle is not equal to String.Empty or "", you'll find the applications your looking for.
thanks for the quick answer...
resolved