Why can't I check more than 1 disk at a time on a dual CPU machine ?

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

Hi,

I've got a dual CPU machine, however I can't seem to run more than one Disk
check at a time on my external USB drives (even thought they're attached to
different controllers)... why is that ?
 
Because.

--
Manny Borges
MCSE NT4-2003 (+ Security)
MCT, Certified Cheese Master

There are 10 kinds of people in the world. Those who do understand binary
and those who don't.
 
Steve said:
Hi,

I've got a dual CPU machine, however I can't seem to run more than one Disk
check at a time on my external USB drives (even thought they're attached to
different controllers)... why is that ?


Because that's the way Chkdsk is designed to work.

--

Bruce Chambers

Help us help you:



You can have peace. Or you can have freedom. Don't ever count on having
both at once. - RAH
 
Fri, 9 Dec 2005 22:19:33 +0900 from Steve
Hi,

I've got a dual CPU machine, however I can't seem to run more than one Disk
check at a time on my external USB drives (even thought they're attached to
different controllers)... why is that ?

You can run them sequentially from the command line:

for %x in (c d e f g h) do chkdsk %x:

Or (untested) create a shortcut to run that command.

It's not exactly what you asked, but it at least leaves you free to
do other things.
 
Back
Top