mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-08-10 01:51:18 +10:00
19 lines
664 B
Markdown
19 lines
664 B
Markdown
---
|
|
title: "Disable Reserved Storage"
|
|
description: ""
|
|
---
|
|
|
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=815}
|
|
"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"
|
|
],
|
|
```
|