chore: Update generated dev docs (#4734)

This commit is contained in:
Chris Titus
2026-06-22 14:08:57 -05:00
committed by GitHub
parent 910c9f698c
commit b9e324b01a
41 changed files with 58 additions and 40 deletions
@@ -0,0 +1,18 @@
---
title: "Disable Reserved Storage"
description: ""
---
```json {filename="config/tweaks.json",linenos=inline,linenostart=890}
"WPFTweaksReservedStorage": {
"Content": "Disable Reserved Storage",
"Description": "Disables Windows Reserved Storage (7-10 GB held for updates/temp files). Recommended only on small drives. Re-enable before major Windows feature updates to avoid installation failures.",
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"InvokeScript": [
"DISM /Online /Set-ReservedStorageState /State:Disabled"
],
"UndoScript": [
"DISM /Online /Set-ReservedStorageState /State:Enabled"
],
```