AllInWorld99 provides a reference manual covering many aspects of web programming, including technologies such as HTML, XHTML, CSS, XML, JavaScript, PHP, ASP, SQL,FLASH, jQuery, java, for loop, switch case, if, if else, for...of, for...in, for...each,while loop, blogger tips, blogger meta tag generator, blogger tricks, blogger pagination, client side script, html code editor, javascript editor with instant output, css editor, online html editor, materialize css tutorial, materialize css dropdown list,break, continue statement, label,array, json, get day and month dropdown list using c# code, CSS button,protect cd or pendrive from virus, cordova, android example, html and css to make android app, html code play,telerik show hide column, Transparent image convertor, copy to clipboard using javascript without using any swf file, simple animation using css, SQL etc. AllInWorld99 presents thousands of code examples (accompanied with source code) which can be copied/downloaded independantly. By using the online editor provided,readers can edit the examples and execute the code experimentally.



Usage of chkdsk Command


In case when you working with your hard disk, the power failure then your hard disk data may loss the data so operating system check when we on the system after power failure.

computer start up desk check

This check should disply first time only but some time it will check every time, so we can disable this type of checking, the steps are


open start=>run=>type "regedit" and
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 *

Manual checking we can check manually chkdsk command using command prompt
open command prompt (start=>run=>type "cmd" and hit enter


Chkdsk Command Syntax:
chkdsk [drive:] [/p] [/r]


drive: = This is the drive letter of the partition you want check for errors.
/p = This option instructs chkdsk to perform an extensive check of the drive and correct any errors.
/r = This option instructs chkdsk to locate bad sectors and recover any readable information from them.

Note: When using this option, the /p option is implied so it's not necessary to use it in addition to/r.


Chkdsk Command Examples:
chkdsk

In the above example, since no drive or additional options were entered, chkdsk simply displays the status of the current drive.

Advertisement

0 comments:

Post a Comment

Total Pageviews