How can i count number of browsers running on my system
-
How can i count number of browsers running on my system by using .net application. regards, basha'
-
How can i count number of browsers running on my system by using .net application. regards, basha'
-
How can i count number of browsers running on my system by using .net application. regards, basha'
Are you talking about Client or Server ? IF you are talking about Your own machine, you can just use
System.Diagnostics.Process.GetProcesses
and point out all the application exe's running on the system. If you are talking about Clients who logs in to your system, you cant do that. :(Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
Are you talking about Client or Server ? IF you are talking about Your own machine, you can just use
System.Diagnostics.Process.GetProcesses
and point out all the application exe's running on the system. If you are talking about Clients who logs in to your system, you cant do that. :(Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascriptin my system only...if u have any samples code plz post it. Regards, Basha.
-
in my system only...if u have any samples code plz post it. Regards, Basha.
inayat basha wrote:
in my system only
So that makes this a wrong forum. There is a method
GetProcesses
in the classProcess
. That will give you list of all the processes running on your computer. From them, you will need to filter out the processes related to the browsers. For eg. chrome.exe for chrome browser.50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
-
in my system only...if u have any samples code plz post it. Regards, Basha.
It is easy to do this. I think this is what I am talking about http://www.vbdotnetheaven.com/UploadFile/prvn_131971/machineprocessvb11182005001454AM/machineprocessvb.aspx[^] Cheers.:rose:
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript