home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / INIT_D.ZIP / INSTALL.CMD < prev    next >
OS/2 REXX Batch file  |  1991-10-16  |  524b  |  27 lines

  1.  
  2. @ECHO OFF
  3. Rem  Create a directory for your application
  4. MKDIR C:\dmapp
  5. MKDIR C:\os2\dmem
  6. MKDIR C:\os2\dll\shared
  7.  
  8. Rem  Use DLL and Data File Installation Utility to
  9. Rem  install the Dialog Manager run-time files
  10.  
  11. INSTTOOL dmdll C:\OS2\DLL\SHARED
  12. if errorlevel 1 goto ABEND
  13. INSTTOOL dmmri C:\OS2\DMEN
  14. if errorlevel 1 goto ABEND
  15.  
  16. Rem  Install application-specific files
  17. COPY a:\install\app\*.*  C:\DMAPP
  18.  
  19.  
  20. ECHO Installation completed successfully.
  21. goto EXIT
  22.  
  23. :ABEND
  24. ECHO Installation failed!
  25.  
  26. :EXIT
  27.