user1996985
user1996985

Reputation: 1

How to get currently running applications in windows 8 programmatically?

I want to create an app for Listing currently running applications in windows 8 using vsExpress 2012 (Windows store C#)

I tried to get using System.Diagnostics.Process, but in windows 8 its not supporting "Process" class,

if anybody knows, share it .

Upvotes: 0

Views: 352

Answers (2)

Meenakshi
Meenakshi

Reputation: 1

Is there is a way by using System.Threading.task (or) Anyother way is there to get Currently running applications list in windows 8 (windows store apps)

Upvotes: 0

Process is available with Windows 8, but not with Windows RT. Are you developing a store application (Windows RT)? If so, there's no way to get the information you want (security!).

Upvotes: 1

Related Questions