From b808834269010e5f19b3bc66fd1adda2aec47757 Mon Sep 17 00:00:00 2001 From: Sebastian Staudt Date: Sun, 10 Oct 2021 16:18:34 +0200 Subject: [PATCH] fsutil: add page (#6717) --- pages/windows/fsutil.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/windows/fsutil.md diff --git a/pages/windows/fsutil.md b/pages/windows/fsutil.md new file mode 100644 index 0000000000..b35986634c --- /dev/null +++ b/pages/windows/fsutil.md @@ -0,0 +1,24 @@ +# fsutil + +> Displays information about file system volumes. +> More information: . + +- 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}}`