33

I am using Windows XP and am looking for a utility that can tell me the percentage of hard drive activity a program is using.

Basically, I'm looking for something like Task Manager and its ability to show CPU use but for hard drive activity. There are many times where my computer will be mostly idle on CPU, but because of hard drive activity, everything slows down. I'd like to see the programs causing that.

If it can be done by using something like SNMP or WMI with another program, I am also open to that. It doesn't have to be realtime as long as I can tell what is doing the most hard drive thrashing.

slhck
  • 223,558
  • 70
  • 607
  • 592
Joseph
  • 2,219
  • 3
  • 25
  • 30

6 Answers6

30

What you are looking for is Process Explorer. Go to "View" -> "Select Columns" then select the tab "Process Performance" and select what you want to know:

  • I/O Delta Read - The total amount of reading operations caused by this process in real-time
  • I/O Delta Read Bytes - The total amount of reading operations caused by this process in bytes in real-time
  • I/O Delta Write - The total amount of writing operations caused by this process in real-time
  • I/O Delta Write Bytes - The total amount of writing operations caused by this process in bytes in real-time
  • I/O Delta Other - The total amount of other operations caused by this process in bytes real-time
  • I/O Delta Other Bytes - The total amount of other operations caused by this process in bytes in real-time
  • I/O Delta Total Bytes - The total amount of all operations (read, write, other) caused by this process in bytes in real-time

It looks something like that:

alt text

Gaff
  • 18,569
  • 15
  • 57
  • 68
Grumpy ol' Bear
  • 6,271
  • 12
  • 58
  • 78
  • 2
    This is EXACTLY what I was looking for. Thanks! – Joseph Nov 26 '09 at 06:55
  • 2
    Unfortunately it doesn't seem to show anything done by the system, so you're likely to quite often find yourself staring at a nearly all-zeroes list in ProcExp despite your HDD thrashing like crazy. Still, a very handy tool. – RomanSt Dec 13 '09 at 19:19
  • Um...trashing like crazy = activity by an app except when you've a broken HDD. HDD's don't trash like crazy in "idle" mode. – Grumpy ol' Bear Dec 14 '09 at 00:19
  • I have once or twice a day heavy HDD activity and ProcessExplorer does not show anything. – Ignacio Soler Garcia Jan 20 '10 at 09:16
  • +1 **Thank you** , I've wanted this tool *so many times*. – T.J. Crowder Apr 29 '10 at 10:50
  • It says it's Client Server Runtime Process (csrss.exe). what to do? – Mark Jeronimus Mar 12 '16 at 23:41
  • Unfortunately, it doesn't have a feature to log the accumulation of any of these statistics. That's what I need to see what's destroying my system NVMe. I could let it run for a day and see what the deal is if that feature was available. – m4heshd Jun 21 '23 at 21:12
8

Process Monitor from Sysinternals will show you all of the disk I/O going on in your system. It shows a lot of info, so you'll have to mess around with the settings to get what you're looking for.

Joe Internet
  • 5,305
  • 2
  • 18
  • 14
6

There's a tool called Diskmon from Microsoft that's used exactly for this purpose. I think that's what your looking for.

Avis
  • 282
  • 1
  • 7
  • 1
    Diskmon is a great tool to see where and what is using up so much of your hard drive. – AskaGamer Nov 12 '09 at 05:38
  • How do you show which program is doing the reading and writing? – Joseph Nov 12 '09 at 05:43
  • you can use process monitor from Microsoft to find that out, sadly there isn't a program out there that combines the functionality of diskmon and process monitor together. – Avis Nov 12 '09 at 07:11
  • Actually there is. It’s called [FileMon](http://technet.microsoft.com/en-us/sysinternals/bb896642). You’ll have to find a copy, but it’s worth the effort. – Synetech Aug 08 '11 at 06:39
2

Hexagora Performance monitor gives good Graphical information
http://www.hexagora.com/en_dw_davperf.asp

enter image description here

nixda
  • 26,823
  • 17
  • 108
  • 156
Dewsun
  • 21
  • 1
2

In the task manager processes tab, go to View -> Select columns. You can add columns for each process to show hard drive IO.

enter image description here

John T
  • 163,373
  • 27
  • 341
  • 348
  • How can you tell which program is currently producing the most hard drive activity? – Joseph Nov 12 '09 at 05:52
  • 1
    The IO Write Bytes and IO Read bytes tell you how much data the application has read/written from the hard disk in total since execution, in bytes obviously. You can enable the other columns to see the amount of reads/writes and check which one is increasing most rapidly. – John T Nov 12 '09 at 05:56
  • 1
    Can is be sorted by most rapidly increasing? The only way I can figure it out is with a few screenshots and a calculator. – Joseph Nov 12 '09 at 06:20
1

Anvir Task Manager does exactly what you're looking for. You can sort by disk load (i.e. current bytes per second). There are free and paid versions, and it can run portably. Works on XP through 7. This feature is in all variants.

http://www.anvir.com/task-manager-windows-startup.htm

user139849
  • 11
  • 1