2021-10-10 16:18:34 +02:00
|
|
|
# fsutil
|
|
|
|
|
|
|
|
> Displays information about file system volumes.
|
2022-10-04 20:36:23 +05:30
|
|
|
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/fsutil>.
|
2021-10-10 16:18:34 +02:00
|
|
|
|
|
|
|
- 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}}`
|