mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 15:05:59 +02:00
chkdsk: add page (#4657)
This commit is contained in:
parent
c5f2b57ef1
commit
44cdd27869
1 changed files with 20 additions and 0 deletions
20
pages/windows/chkdsk.md
Normal file
20
pages/windows/chkdsk.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# chkdsk
|
||||
|
||||
> Check file system and volume metadata for errors.
|
||||
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/chkdsk>.
|
||||
|
||||
- Specify the drive letter (followed by a colon), mount point, or volume name to check:
|
||||
|
||||
`chkdsk {{volume}}`
|
||||
|
||||
- Fix errors on a specific volume:
|
||||
|
||||
`chkdsk {{volume}} /f`
|
||||
|
||||
- Dismount a specific volume before checking:
|
||||
|
||||
`chkdsk {{volume}} /x`
|
||||
|
||||
- Change the log file size to the specified size (only for NTFS):
|
||||
|
||||
`chkdsk /l{{size}}`
|
Loading…
Add table
Reference in a new issue