Also, that little echo script thing you have goin on is mega cute bro. Mad props.
Yeah, I like it too. I made an echo notice based on Kano's script.

@echo off
:Loop
cls
color 0C
REM NOW=YYYY-MM-DD_HHMMSS
REM file name = "miner-session.%NOW%.log"
Set NOW=%date:~10,4%-%date:~4,2%-%date:~7,2%_%time:~0,2%%time:~3,2%%time:~6,2%
cgminer --scrypt -I 12,16 -g 1 --shaders 800,1120 --no-submit-stale --auto-fan --gpu-fan 0-99,20-80 --auto-gpu --gpu-engine 800-925,820-900 --gpu-memclock 1050,1000 --temp-target 77,79 --temp-overheat 80,85 --temp-cutoff 90,95 -o http://litecoinpool.org:9332 -u Panda.1 -p 12345 --failover-only -o http://notroll.in:6332 -u Panda.failover1 -p 12345 2> "miner-session.%NOW%.log"
REM use these to enable the API stuff...
REM --api-network --api-listen --api-allow W:127.0.0.1,W:192.168.0.0/24 --api-description DoubleTrouble
cls
@color 02
@echo - - - - - - - - - - - -
@echo cgMiner has quit.
@echo - - - - - - - - - - - -
@echo Auto restarting in 15 sec
@echo.
@echo If you want to cancel
@echo the restart, press:
@echo.
@echo Ctrl+C, Y, ENTER
@echo - - - - - - - - - - - -
@echo Waiting for user input
@echo - - - - - - - - - - - -
@ping -n 15 127.0.0.1 > NUL
GOTO Loop
It gives me time to quit the endless loop, time to read the notice, etc. Somehow "@echo off" doesn't work, i keep seeing "echo" in the output, so that's why I also @ the other echos.