home *** CD-ROM | disk | FTP | other *** search
/ Mundo do CD-ROM 21 / CDROM21.iso / aplicat / mp98 / InstallPub.bat < prev    next >
Encoding:
DOS Batch File  |  1998-01-06  |  1.0 KB  |  34 lines

  1. Echo Off
  2. REM *********************************************************
  3. REM *                                                       *
  4. REM *   Microsoft Publisher 98 Trial Version Installation   *
  5. REM *                 Microsoft Corporation                 *
  6. REM *                  All Rights Reserved                  * 
  7. REM *                                                       *                     
  8. REM *********************************************************
  9.  
  10. REM Unpack cabinet files
  11.  
  12. Extract /E pub98TR1.cab
  13. @if errorlevel 1 goto failed
  14. Extract /E pub98TR2.cab
  15. @if errorlevel 1 goto failed
  16. Extract /E pub98TR3.cab
  17. @if errorlevel 1 goto failed
  18. Extract /E pub98TR4.cab
  19. @if errorlevel 1 goto failed
  20. Extract /E pub98TR5.cab
  21. @if errorlevel 1 goto failed
  22.  
  23. REM Run Publisher98 Setup
  24. Setup.exe
  25. @goto alldone
  26.  
  27. @:failed
  28. @echo
  29. @echo Failed to extract cabinet files correctly. 
  30. @echo
  31. @echo You may have run out of disk space or one of the cabinet
  32. @echo files may have become corrupted.
  33.  
  34. @:alldone