1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 06:22:07 +02:00

uwfmgr: add page (#10654)

* uwfmgr: add page

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
Randname666 2023-09-02 12:40:54 +08:00 committed by GitHub
parent e567936209
commit 77fb6d0af0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

29
pages/windows/uwfmgr.md Normal file
View file

@ -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: <https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/customize/unified-write-filter>.
- 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}}`