Here is a simple script I use to get rid of temporary files
I created a file called CLEANTMP.BAT (using Notepad), then I placed following script to quickly remove files from mp folder.
You can just Copy/Paste to your own.
NOTE: This is only for SC8+ and only for those who used standard installation folder. Make sure to do appropriate changes if you SC installed elsewhere!
Backup your SC entire folder before first run.
@echo off
cls
echo REMOVING SC TEMP FILES
echo ----------------------
pause
c:
cd\
cd Program Files
cd NetMake
cd v8
cd wwwroot
cd scriptcase
cd tmp
del *.*
dir
pause
HTH - Arthur