For along time ive been using commercial software to bacup my system on a nightly basis(when i sleep). I don\'t mean like backup as in ghost\'n or making recovery tools. I mean just mainly my download\'s. Ive always heard of people using the DAO32 from
www.goldenhawk.com (a.k.a. cdrwin publisher\'s) but since i was using commercial gui zhit i left it alone. Well tonight I can\'t find any of the software i have bought ironically...seem\'s to be misplaced somewhere. So the alternative was to some hope it would be downloadable off a pTOp and do it up as normal...or find a alternative that\'s free. Well i found one in the dao32v39. Now DAO itself is not free...but the file that comes in it called copy2cd is. This is below how i have my .bat setup with rar and copy2cd.
MOVE /Y J:@STORAGEDOWNLOAD@PAGES*.* J:@STORAGEBACKUPCOPY_BAK@PAGES
start J:@STORAGEBACKUPWAIT.EXE
J:@STORAGEBACKUPRAR a -m5 -ed -ep1 -tk J:@STORAGEBACKUPCOPY_BAK@PAGESHTML_IMAGES.RAR J:@STORAGEDOWNLOAD@PAGES
MOVE /Y J:@STORAGEDOWNLOAD@MUSIC*.* J:@STORAGEBACKUPCOPY_BAK@MUSIC
MOVE /Y J:@STORAGEDOWNLOAD@PICTURES*.* J:@STORAGEBACKUPCOPY_BAK@PICTURES
MOVE /Y J:@STORAGEDOWNLOAD@FILES*.* J:@STORAGEBACKUPcopy_bak@FILES
MOVE /Y J:@STORAGEDOWNLOADMISC*.* J:@STORAGEBACKUPcopy_bakMISC
RD /S /Q J:@STORAGEDOWNLOAD@PAGES
MKDIR J:@STORAGEDOWNLOAD@PAGES
RD /S /Q J:@STORAGEDOWNLOAD@MUSIC
MKDIR J:@STORAGEDOWNLOAD@MUSIC
RD /S /Q J:@STORAGEDOWNLOAD@FILES
MKDIR J:@STORAGEDOWNLOAD@FILES
RD /S /Q J:@STORAGEDOWNLOAD@PICTURES
MKDIR J:@STORAGEDOWNLOAD@PICTURES
RD /S /Q J:@STORAGEDOWNLOADMISC
MKDIR J:@STORAGEDOWNLOADMISC
COPY2CD @BACKUP.TXT /BATCH /JOLIET /NOCONFIRM /NODOS /NOUNDERRUN /SESSION /VERIFY /VOLUME=BACKUP /SPEED=24 /HIDDEN /SYSTEM
pause
as you can see i compress what i want, move it to a backup folder called copy_bak, and burn it out from there. Then afterwards delete the existing dir\'s. Note i have no clue on how to move & delete all files and folder\'s from a directory in console mode so if you know that please tell.
That\'s it...small but might help ya.