home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1999 February
/
VPR9902A.BIN
/
DRIVER
/
IBM
/
IIUA02
/
IIUA02.EXE
/
INSTALL.BAT
< prev
Wrap
DOS Batch File
|
1998-09-01
|
579b
|
23 lines
@echo off
goto Start
rem -<How to execute>------------------------------------
rem > INSTALL.BAT [Source_Location_Directory]
rem exp) INSTALL.BAT C:\samp\Ultrabay
rem if [Souce_Location_Directory] is empty,
rem it is assumed as "A:\"
rem -----------------------------------------------------
:Start
IF "%1"=="" GOTO DEFAULT
goto SELECTED
:SELECTED
rundll.exe setupx.dll,InstallHinfSection DefaultInstall 130 %1\ibmbay.inf
goto ENDD
:DEFAULT
rundll.exe setupx.dll,InstallHinfSection DefaultInstall 130 A:\ibmbay.inf
goto ENDD
:ENDD