running process
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hello all! how to monitor the running processes while some virus/spyware is attacking on the system. and what application/program is consuming what resources of the system. muhammad mahmood ilyas
-
hello all! how to monitor the running processes while some virus/spyware is attacking on the system. and what application/program is consuming what resources of the system. muhammad mahmood ilyas
Hy, Process processList = Process.GetProcesses(); foreach(Process p in processList) { p.PeakVirtualMemorySize; p.PagedSystemMemorySize; } And there are many other properties that can help you Do your best to be the best