home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1999 February / VPR9902A.BIN / DRIVER / IBM / IIUA02 / IIUA02.EXE / INSTALL.BAT < prev   
DOS Batch File  |  1998-09-01  |  579b  |  23 lines

  1. @echo off
  2. goto Start
  3. rem -<How to execute>------------------------------------
  4. rem  > INSTALL.BAT [Source_Location_Directory]
  5. rem  exp)  INSTALL.BAT  C:\samp\Ultrabay
  6. rem        if [Souce_Location_Directory] is empty,
  7. rem           it is assumed as "A:\"
  8. rem -----------------------------------------------------
  9. :Start
  10.  
  11. IF "%1"==""  GOTO DEFAULT
  12. goto SELECTED
  13.  
  14. :SELECTED
  15. rundll.exe setupx.dll,InstallHinfSection DefaultInstall 130 %1\ibmbay.inf
  16. goto ENDD
  17.  
  18. :DEFAULT
  19. rundll.exe setupx.dll,InstallHinfSection DefaultInstall 130 A:\ibmbay.inf
  20. goto ENDD
  21.  
  22. :ENDD
  23.