mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 06:38:31 +00:00
19 lines
484 B
Markdown
19 lines
484 B
Markdown
---
|
|
title: "Run Disk Cleanup"
|
|
description: ""
|
|
---
|
|
|
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2054}
|
|
"WPFTweaksDiskCleanup": {
|
|
"Content": "Run Disk Cleanup",
|
|
"Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.",
|
|
"category": "Essential Tweaks",
|
|
"panel": "1",
|
|
"InvokeScript": [
|
|
"
|
|
cleanmgr.exe /d C: /VERYLOWDISK
|
|
Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase
|
|
"
|
|
],
|
|
```
|