home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / infomt16.zip / loggedin.cmd < prev    next >
OS/2 REXX Batch file  |  1995-09-20  |  1KB  |  26 lines

  1. @ECHO OFF
  2. REM **********************************************************************
  3. REM *** LOGGEDIN.CMD (sample)
  4. REM *** Graham TerMarsch
  5. REM *** September 17, 1995
  6. REM **********************************************************************
  7. REM *** Keep in mind that this script must setup all of the applications
  8. REM *** so that they will start properly.  This might involve changing
  9. REM *** directories or drives.
  10. REM **********************************************************************
  11. REM *** I prefer to use DETACH as opposed to START as START opens an
  12. REM *** entire command shell while DETACH does not.
  13. REM **********************************************************************
  14.  
  15.  
  16. REM **********************************************************************
  17. REM *** Mail reader
  18. REM **********************************************************************
  19. D:
  20. CD \PMMail
  21. DETACH D:\PMMail\PMMail.Exe
  22.  
  23. REM **********************************************************************
  24. REM *** Finished, exit this command shell
  25. REM **********************************************************************
  26. EXIT