home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Encyclopedia of Games
/
eog_disc2.iso
/
encyclop
/
dosgames
/
renegade
/
remov_r3.bat
< prev
next >
Wrap
DOS Batch File
|
1995-09-01
|
3KB
|
113 lines
echo off
cls
if "%1" == "" goto INSTRUCT
:REMOVE
echo RENEGADE ROBOT RETALIATION Hard Disk Removal
echo --------------------------------------------
echo This program will remove RENEGADE ROBOT RETALIATION files
echo stored a directory called %1\JUST4ME\RRR on your hard
echo disk.
pause
cls
del %1\JUST4ME\RRR\HELP.IMG
del %1\JUST4ME\RRR\GENERIC.IMG
del %1\JUST4ME\RRR\YOULOSE.IMG
del %1\JUST4ME\RRR\UPGRADE.IMG
del %1\JUST4ME\RRR\SCREEN.IMG
del %1\JUST4ME\RRR\ROBOTSGN.IMG
del %1\JUST4ME\RRR\FUNDS.IMG
del %1\JUST4ME\RRR\WALLS.IMG
del %1\JUST4ME\RRR\BATTERY.IMG
del %1\JUST4ME\RRR\EQUIPMNT.IMG
del %1\JUST4ME\RRR\ENERGY.IMG
del %1\JUST4ME\RRR\PURCHASE.IMG
del %1\JUST4ME\RRR\ASPINFO.TXT
del %1\JUST4ME\RRR\SHIELDS.IMG
del %1\JUST4ME\RRR\BARRIER.IMG
del %1\JUST4ME\RRR\EARNINGS.IMG
del %1\JUST4ME\RRR\SELECT.IMG
del %1\JUST4ME\RRR\TITLE.IMG
del %1\JUST4ME\RRR\ARMOR.IMG
del %1\JUST4ME\RRR\SENSOR.IMG
del %1\JUST4ME\RRR\MAP.IMG
del %1\JUST4ME\RRR\YOUWON.IMG
del %1\JUST4ME\RRR\LASER.DWD
del %1\JUST4ME\RRR\SAVEGAME.IMG
del %1\JUST4ME\RRR\DRONE.IMG
del %1\JUST4ME\RRR\SOLONG.IMG
del %1\JUST4ME\RRR\LABORER.IMG
del %1\JUST4ME\RRR\FLOATER.IMG
del %1\JUST4ME\RRR\RUNNER.IMG
del %1\JUST4ME\RRR\FJOCKB.DWM
del %1\JUST4ME\RRR\TOPSCORE.IMG
del %1\JUST4ME\RRR\BOSS1.IMG
del %1\JUST4ME\RRR\INSTRUCT.IMG
del %1\JUST4ME\RRR\SAVEGAME.DAT
del %1\JUST4ME\RRR\ZAPPER.IMG
del %1\JUST4ME\RRR\OBJECTS.IMG
del %1\JUST4ME\RRR\SCORE.IMG
del %1\JUST4ME\RRR\BOSS2.IMG
del %1\JUST4ME\RRR\SAVEGAME.BKU
del %1\JUST4ME\RRR\README.TXT
del %1\JUST4ME\RRR\REGINFO.IMG
del %1\JUST4ME\RRR\LASER.IMG
del %1\JUST4ME\RRR\LOGO.IMG
del %1\JUST4ME\RRR\HIT.DWD
del %1\JUST4ME\RRR\VAPROBOT.DWD
del %1\JUST4ME\RRR\SCSONG.DWM
del %1\JUST4ME\RRR\DOOR.DWD
del %1\JUST4ME\RRR\GO.EXE
del %1\JUST4ME\RRR\INSTALL.BAT
del %1\JUST4ME\RRR\ORDRFORM.TXT
del %1\JUST4ME\RRR\SOUND.IMG
del %1\JUST4ME\RRR\READY.IMG
del %1\JUST4ME\RRR\LEVEL1.DAT
del %1\JUST4ME\RRR\LEVEL2.DAT
del %1\JUST4ME\RRR\LEVEL3.DAT
del %1\JUST4ME\RRR\LEVEL4.DAT
del %1\JUST4ME\RRR\LEVEL5.DAT
del %1\JUST4ME\RRR\LEVEL6.DAT
del %1\JUST4ME\RRR\LEVEL7.DAT
del %1\JUST4ME\RRR\LEVEL8.DAT
del %1\JUST4ME\RRR\LEVEL9.DAT
del %1\JUST4ME\RRR\LEVELX.DAT
cls
echo REMAINING CLEAN-UP INSTRUCTIONS
echo -------------------------------
echo All RENEGADE ROBOT RETALIATION files have been removed
echo from your hard drive with the exception of this one.
echo To complete your clean-up, you should enter the
echo following instructions at the DOS prompt:
echo .
echo . DEL REMOV_R3.BAT <ENTER>
echo . CD\ <ENTER>
echo . RD\JUST4ME\RRR
echo . RD\JUST4ME
echo .
pause
cls
goto EXIT
:INSTRUCT
cls
echo RENEGADE ROBOT RETALIATION Hard Disk Removal
echo --------------------------------------------
echo This program removes RENEGADE ROBOT RETALIATION files from
echo a directory \JUST4ME\RRR on your hard drive. For this
echo program, please adopt the following format:
echo -
echo REMOV_R3 C:
echo -
echo where C: = hard drive on which the program is to be
echo installed
echo -
echo Substitute other drive letter as appropriate.
pause
cls
goto EXIT
:EXIT