-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
layout: page | ||
title: windows/uwfmgr (English) | ||
description: "Unified Write Filter (UWF)." | ||
content_hash: babb5028b362761ea9bca2b9ca198dc5c3f8df16 | ||
last_modified_at: 2023-09-02 | ||
--- | ||
|
||
This entry is very new in the [tldr-pages](https://github.com/tldr-pages/tldr) project, hence translation data is currently unavailable for a while. | ||
|
||
<hr># 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 `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">drive_letter</span>`:` | ||
|
||
- Remove a drive from protection list: | ||
|
||
`uwfmgr volume unprotect `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">drive_letter</span>`:` | ||
|
||
- Enable or disable protection (Applies after reboot): | ||
|
||
`uwfmgr filter `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">enable|disable</span> | ||
|
||
- Commit changes of a file on protected drive: | ||
|
||
`uwfmgr file commit `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">drive_letter:\path\to\file</span> | ||
|
||
- Commit deletion of a file on protected drive: | ||
|
||
`uwfmgr file commit-delete `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">drive_letter:\path\to\file</span> |