wakajawaka
wakajawaka

Reputation: 163

.NET Windows Forms: How to get other running applications information?

Is there a way to get information about other running applications? for example: have my windows form application list all the running applications and their windows size.

Firefox: (info here)

Notepad: (info here)

I want to ultimately tile all open windows. Thanks!

Upvotes: 2

Views: 240

Answers (1)

Peter
Peter

Reputation: 1806

You should be able to retrieve a list of the processes running on the current machine by using

System.Diagnostics.Process.GetProcesses()

See this msdn link for further info

Upvotes: 1

Related Questions