This is basically what I want in a batch file. I want to be able to re-run \"Do Stuff\" whenever I press any key to go past the \"Pause\".
while(true){
How about using good(?) old goto?
:loop echo Ooops goto loop
See also this for a more useful example.