home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 May / PCW596.iso / wtest / microsft / msiisp~2.exe / RCDATA / CABINET / install.bat next >
DOS Batch File  |  1996-02-28  |  700b  |  36 lines

  1. REM @echo off
  2. set SRC=%tmp%\
  3. if NOT exist %SRC%w3svc.dll goto TryTemp
  4. if NOT exist %SRC%install.inf goto TryTemp
  5. goto noargs
  6.  
  7. :TryTemp
  8. set SRC=%temp%\
  9. if NOT exist %SRC%w3svc.dll goto TryCwd
  10. if NOT exist %SRC%install.inf goto TryCwd
  11. goto noargs
  12.  
  13. :TryCwd
  14. set SRC=%1%\
  15. if NOT exist %SRC%w3svc.dll goto Error
  16. if NOT exist %SRC%install.inf goto Error
  17. goto noargs
  18.  
  19. :Error
  20. echo .
  21. echo IExplore setup error:
  22. echo   You must specify the directory where installing from
  23. echo .
  24. echo   EXAMPLE:
  25. echo     %0 %SRC% (default)
  26. echo .
  27. pause
  28. goto end
  29.  
  30. :noargs
  31. net stop w3svc
  32. %SystemRoot%\system32\setup.exe /f /i %SRC%install.inf /t SrcDir = %SRC%
  33. REM net start w3svc
  34. :end
  35. set SRC=
  36.