Skip to content

Instantly share code, notes, and snippets.

@nordineb
Last active May 15, 2022 07:50
Show Gist options
  • Save nordineb/aa5d878495761d0677115b9dcf9973ee to your computer and use it in GitHub Desktop.
Save nordineb/aa5d878495761d0677115b9dcf9973ee to your computer and use it in GitHub Desktop.
DeleteAspNetTempfiles.ps1
Remove-Item "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\*" -ErrorAction SilentlyContinue -Force -Recurse 2>&1 | out-null
Remove-Item "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\*" -ErrorAction SilentlyContinue -Force -Recurse 2>&1 | out-null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment