13

Is there a tool that will show me what applications are writing to the hard drive in real time? I'm thinking something like Task Manager but for I/O. I've got a number of background processes running, and can never tell when Visual Studio is holding everything up, or some other process is hogging the disk (especially when the processor is running at less than 20%).

Robert Gamble
  • 106,424
  • 25
  • 145
  • 137
gfrizzle
  • 12,419
  • 19
  • 78
  • 104

4 Answers4

19

ProcMon from Sysinternals/Microsoft.

Dirk Vollmar
  • 172,527
  • 53
  • 255
  • 316
  • 1
    FileMon is outdated, and not recommendable anymore. You will get more out of it's successor: ProcMon. In any case, that's the tool for the task. +1. – Tomalak Dec 15 '08 at 14:11
  • 4
    Then add filter: `operation - begins with - WriteFile` – BornToCode Mar 10 '16 at 21:40
9

Process Explorer from Microsoft SysInternals. You can view this info about all processes at once, or get even more detailed information when you double-click on a single process.

This is one of those tools I can't live without.

alt text
(source: microsoft.com)

alt text
(source: microsoft.com)

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Mick
  • 13,248
  • 9
  • 69
  • 119
6

You're aware Task maanger can have columns for

  • I/O Reads
  • I/O Read bytes
  • I/O Writes
  • I/O Write bytes
  • I/O Other
  • I/O Other bytes

? That might help - see View/Select Columns

The Archetypal Paul
  • 41,321
  • 20
  • 104
  • 134
  • 4
    HA, you'd think I would have looked there... However, it appears to just show totals, which doesn't tell me who is hogging it right now. Still worthy of an up-vote, though. – gfrizzle Dec 15 '08 at 16:09
  • 1
    Indeed. I usually just look at the screen to visually spot the ones that seem to be changing fast - which is a quick check but less useful if you want to log the results or something. – The Archetypal Paul Dec 15 '08 at 16:12
3

One can retrieve information on processes writing to disk by opening the Windows Task Manager --> Performance --> Resource Monitor

Resource Monitor can drill down to disk usage by process:

enter image description here

Teejay
  • 7,210
  • 10
  • 45
  • 76
duhaime
  • 25,611
  • 17
  • 169
  • 224