In
Jo-Anne said:
I just had a new hard drive installed on my WinXP computer.
I installed a bunch of programs and datafiles and then
tried to back up with Acronis True Image. It stopped at
around 45% with an error message of
E000101F4: Failed to read data from the sector 88,109,519
of the hard disk 1
I'm guessing that there are bad sectors on this new drive.
Would running CHKDSK C:/r be the right way to go at this
point? Are there any other parameters I should include
(especially so I can get a report on where the problems
were)?
Thank you!
Jo-Anne
That should do what you want quite well. FYI if you open the command
prompt and enter "chkdsk /?" (without the quotes" you'll get the list of
possible commands as listed below. It works the same for all DOS commands
that work in XP. Many, not all, of the DOS commands will work. Several
others wouldn't make sense to work on XP so they were removed. Also there
are many more commands available for the Command Prompt (DOS-like) window
in additioin to those but Help doesn't show them.
NOTE: IIRC You'll have to do a Restart to do the chkdsk on C; it'll tell
you onscreen when it's ready for restart. Chkdsk runs after the Restart.
NOTE: If you enter chkdsk without any switches,, it'll do a read-only
test but doesn't fix anything. /r is the better switch to use.
NOTE: If you do have bad sectors, continue to minitor the drive for a
few months; if more appear over time, the drive is failing - get it
replaced on warranty.
HTH,
Twayne`
==============
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\Twayne>chkdsk /?
Checks a disk and displays a status report.
CHKDSK [volume[[path]filename]]] [/F] [/V] [/R] [/X] [/I] [/C] [/L[:size]]
volume Specifies the drive letter (followed by a colon),
mount point, or volume name.
filename FAT/FAT32 only: Specifies the files to check for
fragmentation.
/F Fixes errors on the disk.
/V On FAT/FAT32: Displays the full path and name of every
file
on the disk.
On NTFS: Displays cleanup messages if any.
/R Locates bad sectors and recovers readable information
(implies /F).
/L:size NTFS only: Changes the log file size to the specified
number
of kilobytes. If size is not specified, displays current
size.
/X Forces the volume to dismount first if necessary.
All opened handles to the volume would then be invalid
(implies /F).
/I NTFS only: Performs a less vigorous check of index
entries.
/C NTFS only: Skips checking of cycles within the folder
structure.
The /I or /C switch reduces the amount of time required to run Chkdsk by
skipping certain checks of the volume.
===============