How do I measure the upload and download bandwidth utilization per each process on windows xp/2003/2008 in realtime using C#?
How do I measure the upload and download bandwidth utilization per each process on
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use one of these 2 libraries to capture packets :
http://www.codeproject.com/KB/cs/pacanal.aspx
or
http://www.codeproject.com/KB/cs/pktcap.aspx
. Then:
In fact, once you manage to capture the packets, and associate them to a process, it’s done. Then all you have to do is a bit of algebra.
There may be other solutions, but that’s the only one I can think of right now.