Skip to content

Instantly share code, notes, and snippets.

@lkurzyniec
Created April 23, 2020 10:08
Show Gist options
  • Save lkurzyniec/7f2c36822c8d9870ce811252486d7173 to your computer and use it in GitHub Desktop.
Save lkurzyniec/7f2c36822c8d9870ce811252486d7173 to your computer and use it in GitHub Desktop.
clean-up of Temporary ASP.NET Files
del "%WINDIR%\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET Files\*" /Q /S
del "%WINDIR%\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\*" /Q /S
del "%WINDIR%\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\*" /Q /S
del "%WINDIR%\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\*" /Q /S
del "%TEMP%\Temporary ASP.NET Files\*" /Q /S
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment