as pointed out on my forums
CODE
@echo off
MD(BACKUPS) <---???
if "%1" == "" goto usage
if "%2" == "" goto usage
md BACKUPS\%1
md BACKUPS\%1\%2
Should be
CODE
@echo off
md BACKUPS
if "%1" == "" goto usage
if "%2" == "" goto usage
md BACKUPS\%1
md BACKUPS\%1\%2
Nothing wrong with your .bats, it's VS doing it's auto type correcting.
XBM now generates the .BAT files's itself rather than just including them.
This post has been edited by Klutsh: Oct 31 2006, 11:06 PM