mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 06:38:31 +00:00
* updated theme to the latest version * Update en.yaml * removed all the order from the docs * add the store link * update homepage * add filename and line number to all the code blocks and also removed pages * auto pull the code from the json files * Merge branch 'main' into winutil-new-features * the script updated linenostart= * Delete LaptopHibernation.md
18 lines
472 B
Markdown
18 lines
472 B
Markdown
---
|
|
title: "Delete Temporary Files"
|
|
description: ""
|
|
---
|
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2047}
|
|
"WPFTweaksDeleteTempFiles": {
|
|
"Content": "Delete Temporary Files",
|
|
"Description": "Erases TEMP Folders",
|
|
"category": "Essential Tweaks",
|
|
"panel": "1",
|
|
"InvokeScript": [
|
|
"
|
|
Remove-Item -Path \"$Env:Temp\\*\" -Recurse -Force
|
|
Remove-Item -Path \"$Env:SystemRoot\\Temp\\*\" -Recurse -Force
|
|
"
|
|
],
|
|
```
|