home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 15 / CDACTUAL15.iso / cdactual / program / asm / NETUTILS.ZIP / NETUTILS.DOC < prev   
Encoding:
Text File  |  1991-06-19  |  2.4 KB  |  64 lines

  1. BATCH FILE UTILITIES FOR NOVELL NETWORKS
  2. 06-19-91
  3.  
  4. Dave Holden      CompuServe ID: 76264,2347
  5.                  Internet ID: DHOLDEN@info_cntr.pepperdine.edu
  6.  
  7.  
  8. Program:  NETTEST.COM
  9. Purpose:  Used in a DOS batch file to test if the Novell network      
  10.           shell (IPX & NETn) has been loaded.
  11. Version:  1.00   06-19-90
  12. Format:   NETTEST
  13. Remarks:  When run, NETTEST sets DOS's ERRORLEVEL to either           
  14.           0 or 1 to indicate if the Novell network shell has been     
  15.           loaded.  A value of 1 indicates the shell is present.
  16.  
  17.  
  18. Program:  NETDRIVE.COM
  19. Purpose:  Used in a DOS batch file to find the first Novell network
  20.           drive that contains the directory \LOGIN, then switches     
  21.           to that drive and directory.  Typically used in an          
  22.           environment with work stations that don't all use drive     
  23.           F: as the first network drive.  This allows you to create
  24.           one login batch file that can be used on all work           
  25.           stations.
  26. Version:  1.10   06-19-91  Version 1.1 fixes a problem that caused Netdrive
  27.                            to not look past drive P: for the first network
  28.                            drive when you were already logged in.  It will
  29.                            now check through drive Z:.
  30. Format:   NETDRIVE
  31.  
  32.  
  33. Example:  The following is a listing of an example batch file         
  34.           that uses the NETTEST and NETDRIVE programs.  In this       
  35.           example, NETTEST and NETDRIVE are stored in a directory     
  36.           call C:\NET along with the IPX and NETn files.
  37.  
  38.           Rem LAN.BAT
  39.           ECHO OFF
  40.           CLS
  41.           ECHO Connecting to the Network...
  42.           C:
  43.           CD\NET
  44.           NETTEST
  45.           IF ERRORLEVEL 1 GOTO Login
  46.           IPX
  47.           NET3
  48.           NETTEST
  49.           IF ERRORLEVEL 1 GOTO Login
  50.           CLS
  51.           ECHO Error connecting to network!
  52.           GOTO Exit
  53.           :Login
  54.           NETDRIVE
  55.           LOGIN
  56.           :Exit
  57.  
  58.           
  59. Note:     Both NETTEST and NETDRIVE are very new programs and have
  60.           had little testing.  If you decide to use them YOU DO SO
  61.           AT YOUR OWN RISK.  If you find bugs in the programs, feel
  62.           free to let me know.  I can't make any promises, but I      
  63.           will try to correct any problems that I hear about.
  64.