mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-13 18:55:43 +02:00
fsutil: add page (#6717)
This commit is contained in:
parent
21ab1681c2
commit
b808834269
1 changed files with 24 additions and 0 deletions
24
pages/windows/fsutil.md
Normal file
24
pages/windows/fsutil.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# fsutil
|
||||||
|
|
||||||
|
> Displays information about file system volumes.
|
||||||
|
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/fsutil>.
|
||||||
|
|
||||||
|
- Display a list of volumes:
|
||||||
|
|
||||||
|
`fsutil volume list`
|
||||||
|
|
||||||
|
- Display information about a volume's file system:
|
||||||
|
|
||||||
|
`fsutil fsInfo volumeInfo {{drive_letter|volume_path}}`
|
||||||
|
|
||||||
|
- Display the current state of the file system auto-repair for all volumes:
|
||||||
|
|
||||||
|
`fsutil repair state`
|
||||||
|
|
||||||
|
- Display the dirty bit state of all volumes:
|
||||||
|
|
||||||
|
`fsutil dirty query`
|
||||||
|
|
||||||
|
- Set the dirty bit state of a volume:
|
||||||
|
|
||||||
|
`fsutil dirty set {{drive_letter|volume_path}}`
|
Loading…
Add table
Reference in a new issue