home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / o / os2_util.zip / ATI100.EXE / INSTALL.CMD next >
OS/2 REXX Batch file  |  1992-09-01  |  2KB  |  65 lines

  1. @echo off
  2.  
  3. rem Argument error checking
  4. if %1. == . goto noparms
  5. if %2. == . goto noparms
  6. if not %3. == . goto doinstall
  7.  
  8. rem Restart with default destination directory
  9. %1\install %1 %2 \ARCADIA
  10. goto end
  11.  
  12. :noparms
  13. echo     .                                                                .
  14. echo     .   Arcadia Workplace Companion Installation Batch File          .
  15. echo     .                                                                .
  16. echo     .                                                                .
  17. echo     . Syntax:  install [source drive] [destination drive] [directory].
  18. echo     .                                                                .
  19. echo     . Example: install a: c: mydir                                   .
  20. echo     .                                                                .
  21. echo     . NOTES:   If no directory is specified, \ARCADIA is the default .
  22. echo     .          The target directory is automatically created.        .
  23. echo     .                                                                .  
  24. pause
  25. goto end
  26.  
  27. :doinstall
  28. echo     .   Arcadia Workplace Companion Installation Batch File      .
  29. echo     .                                                            .
  30. echo     .                                                            .
  31. echo     .  Installing Clock/Calender from %1 to %2                   .
  32. echo     .                                                            .
  33. echo     .                                                            .
  34.  
  35. :check1
  36. if exist %1\wpc.zip goto check2
  37. echo     .
  38. echo     .    Insert Arcadia Clock/Calendar disk into drive %1
  39. pause
  40. goto check1
  41.  
  42. :check2
  43. if exist %2%3 goto check3
  44. goto unzip
  45.  
  46. :check3
  47. echo     .    Destination directory already exists.  You must either remove 
  48. echo     .  this directory and re-run INSTALL or re-run INSTALL with a new
  49. echo     .  destination directory.                                       
  50. pause
  51. goto end
  52.  
  53. :unzip
  54. %2
  55. cd \
  56. md %3
  57. %1pkunzip -o -d %1wpc.zip %2%3
  58. echo     .                                                            .
  59. echo     .   For detailed instructions on how to insert the           .
  60. echo     .  Arcadia Clock/Calendar into the Workplace Shell:          .
  61. echo     .  View the READ.ME file on the installation diskette        .
  62.  
  63. :end
  64. echo on
  65.