i am developing a application that tracks what all applications are running on my pc.i want a list of all applications in asp or c#.i am able to get a list of all running processes but unable to get a list of running applications.
also i want to track a process.exe even if the user rename the exe file and run it.
please help if possible also mail me at 400632@infosys.com
i am developing a application that tracks what all applications are running on my pc.i want a list of all applications in asp or c#.i am able to get a list of all running processes but unable to get a list of running applications.
also i want to track a process.exe even if the user rename the exe file and run it.
please help if possible also mail me at 400632@infosys.com
I want to know the applications which are running on the desktop currently and read the output of the current active window.
here is an example of it.... If i am running a "Yahoo Messenger", that will be displayed as a Process and all the individual chat windows will be running as the individual applications on the system.
To view this, go to the task manager -> Applications tab, if you are chatting with multiple users in yahoo at a time, there will be several applications running under the same process "Yahoo messenger". I want to know all the applications details and also
read the output content of the current active window.
How can i achieve this?
Thank you very much for your help in advance...!
ukr
Mark this as Answer if it helps you, As some other might get the solution quickly...!
er.rohitsing...
0 Points
1 Post
getting a list of running applications(not processes) in asp or c#
Mar 27, 2008 08:45 AM|LINK
i am developing a application that tracks what all applications are running on my pc.i want a list of all applications in asp or c#.i am able to get a list of all running processes but unable to get a list of running applications.
also i want to track a process.exe even if the user rename the exe file and run it.
please help if possible also mail me at 400632@infosys.com
thanks in advance
Hong-Gang Ch...
All-Star
74696 Points
6768 Posts
Re: getting a list of running applications(not processes) in asp or c#
Apr 01, 2008 05:34 AM|LINK
Hi er.rohitsingla,
How can I understand "applications" here?
Waiting for your feedback,
Hong Gang
If you have any feedback about my replies,please contactmsdnmg@microsoft.com.
Microsoft One Code Framework
ukr
Participant
822 Points
157 Posts
Re: getting a list of running applications(not processes) in asp or c#
May 29, 2009 07:11 AM|LINK
Hello All,
I want to know the applications which are running on the desktop currently and read the output of the current active window.
here is an example of it.... If i am running a "Yahoo Messenger", that will be displayed as a Process and all the individual chat windows will be running as the individual applications on the system.
To view this, go to the task manager -> Applications tab, if you are chatting with multiple users in yahoo at a time, there will be several applications running under the same process "Yahoo messenger". I want to know all the applications details and also read the output content of the current active window.
How can i achieve this?
Thank you very much for your help in advance...!
Mark this as Answer if it helps you, As some other might get the solution quickly...!
neeraj247
Member
324 Points
85 Posts
Re: getting a list of running applications(not processes) in asp or c#
May 29, 2009 09:08 AM|LINK
This might help, This will give u the list of Applications, not the processes...
StringBuilder sb = new StringBuilder();
foreach (Process p in Process.GetProcesses("."))
{
try
{
if (p.MainWindowTitle.Length > 0)
{
Response.Write("\r\n");
Response.Write("\r\n Window Title:" + p.MainWindowTitle.ToString());
Response.Write("\r\n Process Name:" + p.ProcessName.ToString());
Response.Write("\r\n Window Handle:" + p.MainWindowHandle.ToString());
Response.Write("\r\n Memory Allocation:" + p.PrivateMemorySize64.ToString());
}
}
catch { }
}