Sometimes yes, sometimes no. Here at work, I am chained to a NT4 workstation that I use to scan and print large architectural drawings and let me tell you, that drive gets frag.ment.ed. If you remember, NT4 did not come with a defragger, so I need one. I heartily second the motion on Contig, fast and effective, and it stays out of my way. For that reason, I don't like Power Defragmenter. After it's done, it pops back up... in my way. There's no option to run and exit. So for further convenience, I use an AutoHotKey script to automate it. Here's an example from my script:
RunWait,[Path]\contig.exe -s [drive letter]:\*.*
ExitApp
To script it yourself, just replace [Path] with wherever your contig folder is and [drive letter] with, well, guess.
And you can also add lines for as many drive letters as you have, like so:
RunWait,E:\Progra~1\sysinternals\contig\contig.exe -s C:\*.*
RunWait,E:\Progra~1\sysinternals\contig\contig.exe -s D:\*.*
RunWait,E:\Progra~1\sysinternals\contig\contig.exe -s E:\*.*
RunWait,E:\Progra~1\sysinternals\contig\contig.exe -s Z:\*.*
ExitApp
but it seemed like only files that were fragmented tended to benefit from Disk Defragmenter.
can someone spell "Duh"?