home *** CD-ROM | disk | FTP | other *** search
/ Computerworld 1996 March / Computerworld_1996-03_cd.bin / idg_cd3 / aplikace / domacnos / rmd230a / install.bat < prev    next >
Encoding:
DOS Batch File  |  1995-01-26  |  593 b   |  25 lines

  1. @ECHO OFF
  2. if "%1" == ""  goto instruct
  3. echo Installing Windows Reminder...
  4.  
  5. md %1
  6. copy README.TXT   %1\README.TXT 
  7. if exist %1\items.cat goto skipdatafiles
  8. copy ITEMS.CA_    %1\ITEMS.CAT
  9. copy ITEMS.DA_    %1\ITEMS.DAT
  10. :skipdatafiles
  11. copy CAL.EX_      %1\CAL.EXE
  12. copy REMINDER.EX_ %1\REMINDER.EXE
  13. copy WWWDBMS.DL_  %1\WWWDBMS.DLL
  14. copy CTL3D.DL_    %1\CTL3D.DLL
  15. copy REMINDER.HL_ %1\REMINDER.HLP
  16. echo Windows Reminder is now installed.
  17. goto end
  18.  
  19. :instruct
  20. echo  Please provide the drive and path you want Reminder installed to.
  21. echo  Example:  install c:\reminder
  22.  
  23. :end
  24.  
  25.