up vote 0 down vote favorite
share [g+] share [fb]

There is some program running that is creating .tmp files in my \Windows\Temp folder and filling up the hard drive. How can I determine what program is doing that? Is there some utility that I can run that tells me what program is writing to a files on disk?

link|improve this question

feedback

migrated from stackoverflow.com Aug 7 '09 at 22:31

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 5 down vote accepted

Sysinternals filemon will be the solution.

FileMon

Update : I think it is replaced by Process Monitor.

Process Monitor

link|improve this answer
Yes, it'd been replaced and that's what the tool will tell you too :-) – Joey Aug 8 '09 at 0:23
feedback

If it really bothers you then create either a scheduled or startup task that runs:

del c:\windows\temp\*.* /F /Q /S

You may also want to do the same for \Local Settings\Temp

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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