Last active
May 15, 2022 07:50
-
-
Save nordineb/aa5d878495761d0677115b9dcf9973ee to your computer and use it in GitHub Desktop.
DeleteAspNetTempfiles.ps1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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