A Manchester Developers Site

You know.. technical stuff..

This site contains all my technical blog posts, and soon latest projects, code samples and articles.

Eventually it will also outline my career, experience and also detail how you can request me for freelance work.

Latest Blog Post..

Clear temporary asp.net files via command line

Want to clear out temporary asp.net files via command line?

Put this in a batch file and away you go.

iisreset /stop

for /d %i in ("%systemroot%\Microsoft.Net\Framework\v2.0.50727\Temporary ASP.NET Files\*") do RD /q/s %i


for /d %i in ("%systemroot%\Microsoft.Net\Framework\v4.0.30319\Temporary ASP.NET Files\*") do RD /q/s %i

iisreset /start