Clear current user temp files
PowerShell · Safe · Admin: No
Get-ChildItem -Path $env:TEMP -Recurse -Force -ErrorAction SilentlyContinue | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
Clears temporary files from the current Windows user temp folder. It should not delete personal documents, photos, or desktop files.
Close open apps first. Some temp files may be skipped if they are currently in use.