home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / pcmag / vol7n18.arc / PCNET.BAT < prev    next >
DOS Batch File  |  1988-07-18  |  2KB  |  74 lines

  1. echo off
  2. rem     /* decode argument - determine what user wants to do */
  3. :BEGIN
  4.         if .%1 == . goto DEFAULT
  5.         if  %1 == c goto CONNECT
  6.         if  %1 == C goto CONNECT
  7.         if  %1 == d goto DETACH
  8.         if  %1 == D goto DETACH
  9.         if  %1 == s goto START
  10.         if  %1 == S goto START
  11.         if  %1 == v goto VIEW
  12.         if  %1 == V goto VIEW
  13.  
  14. rem     /* no argument - give list of options */
  15. :DEFAULT
  16.         echo
  17.         echo    Please Enter One of the Following NETS Commands
  18.         echo
  19.         echo    NETS C - To connect to network devices
  20.         echo    NETS D - To disconnect from network devices
  21.         echo    NETS S - To start network and connect to network devices
  22.         echo    NETS V - To view list of connected network devices
  23.         goto END
  24.  
  25. rem     /* show list of network devices currently connected */
  26. :VIEW
  27.         net use
  28.         goto END
  29.  
  30. rem     /* start network and connect to network devices */
  31. :START
  32.         echo
  33.         echo    Starting PC as Receiver on Network
  34.         cd \network
  35.         loadniu -r -d niuws.xfm stdlc > NUL
  36.         niubios > NUL
  37.         net start rcv USER > NUL
  38.         if errorlevel 1 goto ERROR1
  39.         goto CONNECT
  40.  
  41. rem     /* connect to network devices */
  42. :CONNECT
  43.         echo
  44.         echo    Connecting PC to Network Devices
  45.         net use E:    \\server\apps password > NUL
  46.         if errorlevel 1 goto ERROR2
  47.         net use lpt2: \\server\laser password > NUL
  48.         if errorlevel 1 goto ERROR2
  49.          goto END
  50.  
  51. rem     /* detach from network devices */
  52. :DETACH
  53.         echo
  54.         echo    Disconnecting PC from Network Devices
  55.         net use E:    /d > NUL
  56.         net use lpt2: /d > NUL
  57.         goto END
  58.  
  59. rem     /* network system did not start properly */
  60. :ERROR1
  61.         cls
  62.         echo             Network failed to start properly !!!
  63.         pause
  64.         goto END
  65.  
  66. rem     /* could not connect to network device */
  67. :ERROR2
  68.         cls
  69.         echo             Network Connection Failed !!!!
  70.         echo              Contact System Administrator
  71.         pause
  72.         goto END
  73. :END
  74.