1
0
Fork 0
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:
Jay Piamjariyakul 2020-10-12 14:07:03 +01:00 committed by GitHub
parent c5f2b57ef1
commit 44cdd27869
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
pages/windows/chkdsk.md Normal file
View 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}}`