mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 22:58:32 +00:00
* changed autolinks to now use frontmatter instead off #heading * updated all docs with front matter names * Update DisableLegacyRecovery.md this was the same as EnableLegacyRecovery file * made sure pages have got the corrects scripts on them * Update default.md updated the archetype default to make sure every new page had the title and description automatically on the front matter * Create BraveDebloat.md * added brave debloat link to tweaks.json * Update tweaks.json * Update tweaks.json
19 lines
430 B
Markdown
19 lines
430 B
Markdown
---
|
|
title: "Delete Temporary Files"
|
|
description: ""
|
|
---
|
|
```json
|
|
"WPFTweaksDeleteTempFiles": {
|
|
"Content": "Delete Temporary Files",
|
|
"Description": "Erases TEMP Folders",
|
|
"category": "Essential Tweaks",
|
|
"panel": "1",
|
|
"Order": "a002_",
|
|
"InvokeScript": [
|
|
"
|
|
Remove-Item -Path \"$Env:Temp\\*\" -Recurse -Force
|
|
Remove-Item -Path \"$Env:SystemRoot\\Temp\\*\" -Recurse -Force
|
|
"
|
|
],
|
|
```
|