vote up 3 vote down star
1

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%).

flag

3 Answers

vote up 9 vote down check

ProcMon from Sysinternals/Microsoft.

link|flag
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
Hi, thanks Tomalak! I updated the posting. – divo Dec 15 '08 at 14:28
vote up 3 vote down

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

link|flag
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
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. – Paul Dec 15 '08 at 16:12
vote up 3 vote down

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

alt text

link|flag
If you move the mouse over the I/O chart than you can see which process is doing the most I/O. – Kalmi Sep 20 at 21:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.