winutil/docs/dev/tweaks/Essential-Tweaks/DiskCleanup.md
2024-08-07 16:57:14 +00:00

1.2 KiB

Run Disk Cleanup

Last Updated: 2024-08-07

!!! info The Development Documentation is auto generated for every compilation of WinUtil, meaning a part of it will always stay up-to-date. Developers do have the ability to add custom content, which won't be updated automatically.

Description

Runs Disk Cleanup on Drive C: and removes old Windows Updates.

Preview Code
{
  "Content": "Run Disk Cleanup",
  "Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.",
  "category": "Essential Tweaks",
  "panel": "1",
  "Order": "a009_",
  "InvokeScript": [
    "
      cleanmgr.exe /d C: /VERYLOWDISK
      Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase
      "
  ],
  "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/DiskCleanup"
}

Invoke Script


      cleanmgr.exe /d C: /VERYLOWDISK
      Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase


View the JSON file