Reputation: 1
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
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
Reputation: 2574
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