Jump to content

Welcome to We Got Served Forums
Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, post status updates, manage your profile and so much more. If you already have an account, login here - otherwise create an account for free today!

Tutorial info

  • Added on: Dec 21 2011 06:29 AM
  • Date Updated: Dec 21 2011 06:30 AM
  • Views: 3519
 


* * * * *
0 Ratings

Check all Drives in your Server for errors

You may be asked to check all the drives in your server for errors as a troubleshooting step, or you may be experiencing file conflicts or other errors and need to do this. If you simply open a command prompt and use chkdsk on each drive, you may spend many hours waiting.

Posted by Drashna Jaelre (WGS) on Dec 21 2011 06:29 AM
You may be asked to check all the drives in your server for errors as a troubleshooting step, or you may be experiencing file conflicts or other errors and need to do this. If you simply open a command prompt and use chkdsk on each drive, you may spend many hours waiting (and rebooting your server to force the dismounting of drives).

You can use the following batch file to force chkdsk on all your drives. Copy the code below and paste it into notepad, then save it (on your server) as e.g. "checkall.cmd":

chkdsk c: /f /r
chkdsk d: /f /r
for /d %%1 in (C:fs*) do start chkdsk /f /r /x %%1
Log in to your server, copy the file to the administrator's desktop, and run it in a command prompt, or double click the checkall.cmd icon from there.

Powered by Tutorials 1.5.1 © 2013, by Michael McCune

Upgrade to a WGS Supporter Account to remove this ad.