home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 7 Games / 07-Games.zip / mmine123.zip / install.cmd < prev    next >
OS/2 REXX Batch file  |  1996-08-29  |  923b  |  28 lines

  1. /* Installations-Script für MegaMine 1.23 */
  2.  
  3. /* Bitte geben Sie bei der Installation der vollen Pfad inkl. Laufwerk an! */
  4. /* Install.cmd kann nur eine weitere Verzeichnisebene erstellen!           */
  5.  
  6. Cls
  7.  
  8. Call RxFuncAdd 'SysLoadFuncs','REXXUTIL','SysLoadFuncs';
  9. Call SysLoadFuncs; 
  10.  
  11. Say 'Wohin soll ich MegaMine 1.23 kopieren?';
  12. Say 'Bitte geben Sie den vollen Pfad inkl. Laufwerk an!';
  13. Say 'Dabei kann jedoch nur ein neues Verzeichnis erzeugt werden, d. h. Spiele';
  14. Say 'muß schon existieren!!!!';
  15. Say 'Pfad: (z. B.: D:\Spiele\MegaMine)';
  16. Pull pfad; 
  17.  
  18. md pfad
  19. copy megamine.exe pfad"\MegaMine.ExE"
  20. copy megamine.hlp pfad"\MegaMine.Hlp"
  21. copy register.txt pfad"\Register.Txt"
  22. copy liesmich.txt pfad"\LiesMich.Txt"
  23. copy history.lst  pfad"\History.Lst"
  24. cd pfad
  25.  
  26. rc=SysCreateObject("WPProgram","MegaMine 1.23","<WP_DESKTOP>",,
  27.                    "ICONPOS=20,20;"||"EXENAME="pfad"\MegaMine.Exe")
  28.