From 77fb6d0af04562684988926e22d894f7bdea86a6 Mon Sep 17 00:00:00 2001 From: Randname666 <38984096+Randname666@users.noreply.github.com> Date: Sat, 2 Sep 2023 12:40:54 +0800 Subject: [PATCH] uwfmgr: add page (#10654) * uwfmgr: add page --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/windows/uwfmgr.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/windows/uwfmgr.md diff --git a/pages/windows/uwfmgr.md b/pages/windows/uwfmgr.md new file mode 100644 index 000000000..329736e0e --- /dev/null +++ b/pages/windows/uwfmgr.md @@ -0,0 +1,29 @@ +# uwfmgr + +> Unified Write Filter (UWF). +> Protect drives by redirecting any writes to the drive to a virtual overlay. Writes are discarded upon reboot unless committed by default. +> More information: . + +- Get the current status: + +`uwfmgr get-config` + +- Set a drive as protected: + +`uwfmgr volume protect {{drive_letter}}:` + +- Remove a drive from protection list: + +`uwfmgr volume unprotect {{drive_letter}}:` + +- Enable or disable protection (Applies after reboot): + +`uwfmgr filter {{enable|disable}}` + +- Commit changes of a file on protected drive: + +`uwfmgr file commit {{drive_letter:\path\to\file}}` + +- Commit deletion of a file on protected drive: + +`uwfmgr file commit-delete {{drive_letter:\path\to\file}}`