home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Player 1994 January
/
CdPlayer94-01.iso
/
demos
/
lemmings
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1992-09-21
|
492b
|
18 lines
@echo off
rem PC-Lemmings Hard disk install batch file
rem usage - install [directory to install to]
rem example - install c:\games, to install in a directory c:\games\lemmings
if %1s == s goto fail
if %2s == s goto fail
md %2\lemmings
copy %1\*.* %2\lemmings
goto finish
:fail
echo usage :- install [drive to install from] [directory to install to]
echo example :- 'install a: c:\games', to install from drive a:
echo to a directory c:\games\lemmings
:finish