Skip to content

Instantly share code, notes, and snippets.

@teradyne
Created December 12, 2011 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teradyne/1468692 to your computer and use it in GitHub Desktop.
Save teradyne/1468692 to your computer and use it in GitHub Desktop.
clear shit from temporary files
@echo off
iisreset /stop
echo Clearing Temporary ASP.Net Files
for /d %%d in ("%SYSTEMROOT%\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET Files\*") do echo %%d && rmdir /s /q "%%d"
iisreset /start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment