How to use checkdisk?

This is a discussion about How to use checkdisk? in the Windows Software category; Since Win XP replaced Scandisk with Checkdisk (chkdsk) how do you use it?

Windows Software 5498 This topic was started by , . Last reply by ,


data/avatar/default/avatar04.webp

44 Posts
Location -
Joined 2002-01-17
Since Win XP replaced Scandisk with Checkdisk (chkdsk) how do you use it?

Participate in our website and join the conversation

You already have an account on our website? To log in, use the link provided below.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This subject has been archived. New comments and votes cannot be submitted.
Jan 17
Created
Jan 19
Last Response
0
Likes
1 minute
Read Time
User User User
Users

Responses to this topic


data/avatar/default/avatar16.webp

364 Posts
Location -
Joined 2000-07-30
open the command prompt and type:
 
chkdsk x:
 
where x is the drive u want check disk to scan. also try typing
 
chkdsk /?
 
to view the options you can use when scanning. Alternatively open My Computer, right-click on a drive > Tools > Error Checking > Check Now...

data/avatar/default/avatar26.webp

134 Posts
Location -
Joined 2001-08-02
Hi!
 
Press START, RUN type CMD and in console type:
 
CHKDSK C: /F /X
 
(where C: is disk drive you want to check...)
 
/F Fixes errors on the disk.
/X Forces the volume to dismount first if necessary. All opened handles to the volume would then be invalid...

data/avatar/default/avatar04.webp

44 Posts
Location -
Joined 2002-01-17
OP
Thanks for the help. One more thing, where is the location of the scan log?

data/avatar/default/avatar26.webp

134 Posts
Location -
Joined 2001-08-02
I remembered of a better way to start CHKDSK:
 
In "My Computer" right click your disk, go to "Properties", then select "Tools" tab and click "Check Now..." button...
 
But I have no idea where the logs could be...

data/avatar/default/avatar04.webp

314 Posts
Location -
Joined 2000-01-17
The /V flag gives you the info of what's been fixed.
 
example: chkdsk d: /F /V >c:\log.txt whould log to log.txt on your c:\ instead of the screen.
 
/Toby