home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 8
/
CDASC08.ISO
/
NEWS
/
1662
/
ALTSETUP.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-10-07
|
2KB
|
47 lines
@echo off
cls
echo Alternate Installation for Route 1 v4.0.
echo (use only if INSTALL.EXE fails)
echo .
echo Syntax:
echo ALTSETUP [destdir]
echo where:
echo destdir is the full pathname of the destination directory.
echo (if it is left out, ALSETUP will fail)
echo example:
echo altsetup c:\windows\route1
echo .
echo ALTSETUP will create destdir, if it can, and copy the files to it.
echo Make sure that EXPAND.EXE (comes with Windows & DOS) is in the path.
echo .
echo press Ctrl-C to cancel, or
if "%1" == "" goto quit
pause
md %1
copy VBRUN200.DLL %1
copy README1.TXT %1
expand r1icons.dl_ %1\r1icons.dll
expand 1trash.ex_ %1\1trash.exe
expand putfocus.ex_ %1\putfocus.exe
expand taskmenu.ex_ %1\taskmenu.exe
expand route1.ex_ %1\route1.exe
expand rs1ed.ex_ %1\rs1ed.exe
expand rs1run.ex_ %1\rs1run.exe
expand route1.hl_ %1\route1.hlp
expand rs1ed.hl_ %1\rs1ed.hlp
expand blank.ic_ %1\blank.ico
expand route1.in_ %1\route1.ini
expand route1.ov_ %1\route1.ovl
expand startup.rs_ %1\startup.rs1
expand timer.rs_ %1\timer.rs1
expand route1.rs_ %1\route1.rs1
expand orderfrm.wr_ %1\orderfrm.wri
if exist r1reg.ex_ expand r1reg.ex_ %1\r1reg.exe
goto last
:quit
echo .
echo You must specify a target directory!
:last