1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-01 17:15:32 +02:00
tldr/pages/windows/uwfmgr.md
Vedant Yadav 9538a12740
add-appxpackage: add Hindi translation; pages.*: remove locale from Microsoft links (#11286)
* add-appxpackage: add Hindi translation

* pages.*: remove locale from Microsoft links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-10-26 23:59:28 +05:30

29 lines
796 B
Markdown

# 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/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}}`