home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Shareware - Software Farm 2
/
wosw_2.zip
/
wosw_2
/
GENERAL
/
STORM611.ZIP
/
HINSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-07-24
|
935b
|
41 lines
echo off
cls
echo.
echo STORM Hard Disk Install
if $$%1% == $$A: GOTO sourceok
if $$%1% == $$B: GOTO sourceok
if $$%1% == $$a: GOTO sourceok
if $$%1% == $$b: GOTO sourceok
echo Error - no source disk identified.
goto badpar1
:sourceok
if $$%2% == $$ GOTO badpar2
goto continue
:badpar2
echo Error - no destination disk identified.
:badpar1
echo.
echo Please use the following syntax for installing to the hard disk:
echo HINSTALL [SOURCE FLOPPY DISK] [DESTINATION HARD DISK]
echo.
echo For example:
echo HINSTALL A: C:
goto done
:continue
%2
cd\
echo Making a subdirectory called %2\STORM
mkdir storm > nul:
cd storm
echo Copying the storm files into %2\STORM. Please wait....
copy %1*.* *.* > nul:
COPY STORM61H.DFT STORM61.DFT >nul:
del storm61h.dft > Nul:
del HINSTALL.BAT > NUL:
echo.
echo Finished.
echo.
echo.
echo To run STORM, Type STORM from the %2\STORM directory.
:done