1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/windows/fsutil.md
Lena c9775847b6
pages/*: use the imperative in descriptions (#12574)
* pages/*: use the imperative in descriptions

* go-fmt: put the description on one line
2024-04-18 09:34:00 +05:30

24 lines
584 B
Markdown

# fsutil
> Display information about file system volumes.
> More information: <https://learn.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}}`