Home › Forums › Computer Problems › Operating System Problems › Windows XP › Check Disk Windows XP
Tagged: chkdsk
This topic contains 1 reply, has 2 voices, and was last updated by Mitz 6 years, 8 months ago.
-
AuthorPosts
-
June 5, 2012 at 4:41 am #29342
Can somebody please walk me through step by step, in simple blonde English, how to stop check disk from running every time I turn on my computer???
June 8, 2012 at 3:27 am #33692Hi there
Hmm it might not be a good thing as it is picking up that there is something wrong.
I could tell you to disable this process from happening but that would not be dealing with the problem if there is one. So Lets try something. When you are logged in…
Clean The Dirty Bit That Is Stopping Chkdsk
To clear the NTFS dirty bit on a drive/partition, try this. The drive you want to clear, is usually c:
XP- Click on Start, All Programs, Accessories, Command Prompt
Vista & WIndows 7- Click on Start, All Programs, Accessories. Right click on Command Prompt and select Run as AdministratorType fsutil dirty query yourdrive: so fsutil dirty query c: if you’re having a problem with drive c:. This queries the drive, and more than likely it will tell you that it is dirty.
Next, type chkntfs /x c:. The /X tells Windows to NOT check that particular drive on the next reboot. Now manually reboot your computer, it should not do a chkdsk and should take you directly to normal Windows login.
Once Windows has fully loaded, bring up another Command Prompt and enter chkdsk c: /f /r.
Reply Y for yes if you want this to happen on the next boot. This should take you through 5 stages of the chkdsk scan on the next boot and will unset that dirty bit.
Be patient as this can take an hour or more depending on the size of the hard drive or partition.
Once booted back to Windows, open another Command Prompt and query the dirty bit again by entering fsutil dirty query c: and Windows will confirm that the dirty bit is not set on that drive.
Check Chkdsk Settings In Registry
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
In the right hand pane, double click BootExecute.
The default value of the key is autocheck autochk *
* means every drive is checked for consistency. Just add /K:C at the end before *. /K switch will disable autocheck on C: drive at Windows startup. So the final value should look like this:
autocheck autochk /k:C *
If you want to add more drives, the key should look like this: (disabling C and D drives)
autocheck autochk /k:C /k:D *
If you want to restore everything to default, just replace the key with the default one i.e.
autocheck autochk *
source: http://answers.microsoft.com
I also had an article a few years ago about when chkdsk stops responding because it gets stuck when you have a corrupt temporary file.. So deleting temporary files can help.
-
AuthorPosts
You must be logged in to reply to this topic.