home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t115 / 1.ddi / WDNET.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-03-04  |  7.8 KB  |  162 lines

  1. @Echo Off
  2. REM [WATCHDOG] 7.0.1 - NOT CUSTOMIZED
  3. REM [NOVELL]
  4. Cls
  5. Echo **************************************************************
  6. Echo *                                                            *
  7. Echo *              WDNET.BAT located in \SYSLIB                  *
  8. Echo *        has not been customized for your machine.           *
  9. Echo *                                                            *
  10. Echo **************************************************************
  11. Pause
  12. GoTo Done
  13.  
  14.  
  15. @Echo off
  16. REM ********* WARNING! DO NOT DELETE/CHANGE BETWEEN THESE LINES! *********
  17. REM [WATCHDOG] 7.0.1 - CUSTOMIZED
  18. REM [NOVELL]
  19. REM ********* WARNING! DO NOT DELETE/CHANGE BETWEEN THESE LINES! *********
  20. Cls
  21. Rem **********************************************************************
  22. Rem *                                                                    *
  23. Rem *  This batch file may be used as a sample for setting up a          *
  24. Rem *  WDNET.BAT file that will automatically log a user                 *
  25. Rem *  onto a Novell server, providing the Watchdog User ID and          *
  26. Rem *  password match the Novell ID and password.  The Novell drivers    *
  27. Rem *  IPX, NETX, etc. should be loaded in the AUTOEXEC.BAT file         *
  28. Rem *  for this batch file to execute properly.                          *
  29. Rem *                                                                    *
  30. Rem *  This batch file contains important information regarding          *
  31. Rem *  the customization of WDNET.BAT for your specific network          *
  32. Rem *  environment.  Please, make sure you read this file entirely       *
  33. Rem *  before attempting to activate it.                                 *
  34. Rem *                                                                    *
  35. Rem *  To activate this batch file remove all lines above the            *
  36. Rem *  "Goto Done" statement, including "Goto Done".                     *
  37. Rem *                                                                    *
  38. Rem *  To maximize security, full paths should be specified for all      *
  39. Rem *  commands run in this batch file. (i.e.  F:\LOGIN\LOGIN.EXE)       *
  40. Rem *                                                                    *
  41. Rem *  For LAN Manager/LAN Server networks, please refer to the file     *
  42. Rem *  WDNET.MAN located in the local \SYSLIB directory.                 *
  43. Rem *                                                                    *
  44. Rem *                                                                    *
  45. Rem *  IMPORTANT!!!  YOU SHOULD REVIEW THIS BATCH FILE CAREFULLY TO      *
  46. Rem *                DETERMINE WHETHER YOU NEED TO MAKE ANY CHANGES      *
  47. Rem *                TO THE NOVELL LOGIN DRIVE, THE temp_path OR OTHER   *
  48. Rem *                PARAMETERS AFFECTED BY YOUR SPECIFIC SETUP.         *
  49. Rem *                                                                    *
  50. Rem *                                                                    *
  51. Rem **********************************************************************
  52.  
  53.  
  54.  
  55. Rem **********************************************************************
  56. Rem *                                                                    *
  57. Rem *  TEMP_PATH is a variable used to define a drive where a temporary  *
  58. Rem *  file, created in this batch file, may be stored.  TEMP_PATH may   *
  59. Rem *  be assigned to a RAMDRIVE.  This environment variable may either  *
  60. Rem *  be defined here or in the AUTOEXEC.BAT.                           *
  61. Rem *                                                                    *
  62. Rem **********************************************************************
  63.  
  64.  
  65.     Set TEMP_PATH=C:\
  66.  
  67.  
  68. Rem **********************************************************************
  69. Rem *                                                                    *
  70. Rem *  The next statement echos the password into a temporary file for   *
  71. Rem *  input into Novell LOGIN using I/O redirection.                    *
  72. Rem *                                                                    *
  73. Rem **********************************************************************
  74.  
  75.  
  76.     Echo %4>%TEMP_PATH%xyzzy.tmp
  77.  
  78.  
  79. Rem **********************************************************************
  80. Rem *                                                                    *
  81. Rem *  Actual Novell LOGIN.  Replace F: with the drive letter where the  *
  82. Rem *  Novell LOGIN directory is located.  If you need to log into a     *
  83. Rem *  particular server, the server name should precede "%2".           *
  84. Rem *                                                                    *
  85. Rem **********************************************************************
  86.  
  87.  
  88.     F:
  89.     LOGIN %2 <%TEMP_PATH%xyzzy.tmp
  90.  
  91. Rem **********************************************************************
  92. Rem *                                                                    *
  93. Rem *  If the login is unsuccessful, jump to the alternate Novell login  *
  94. Rem *  process.                                                          *
  95. Rem *                                                                    *
  96. Rem **********************************************************************
  97.  
  98.     If ERRORLEVEL 1 GoTo Alternate_Login
  99.  
  100.  
  101. Rem **********************************************************************
  102. Rem *                                                                    *
  103. Rem *  In the next section, if the Watchdog Password was changed while   *
  104. Rem *  logging on, %8 will contain the new password.  The Novell command *
  105. Rem *  SETPASS is run to change the password.  The "y" handles the       *
  106. Rem *  prompt to change all passwords if you are attached to multiple    *
  107. Rem *  servers with identical IDs and passwords.                         *
  108. Rem *                                                                    *
  109. Rem *  One way to attach to multiple servers is with the "ATTACH"        *
  110. Rem *  command in the Novell login script.                               *
  111. Rem *                                                                    *
  112. Rem **********************************************************************
  113.  
  114.     If %8x == x GoTo CONT
  115.  
  116.     Echo %8>>%TEMP_PATH%xyzzy.tmp
  117.     Echo %8>>%TEMP_PATH%xyzzy.tmp
  118.  
  119.     Echo y>>%TEMP_PATH%xyzzy.tmp
  120.  
  121.     SETPASS <%TEMP_PATH%xyzzy.tmp
  122.  
  123.  
  124. Rem **********************************************************************
  125. Rem *                                                                    *
  126. Rem *  Overwrite the temporary file and delete it, then jump to the      *
  127. Rem *  end.                                                              *
  128. Rem *                                                                    *
  129. Rem **********************************************************************
  130.  
  131.  
  132. :CONT
  133.     Echo Mary had a little lamb >%TEMP_PATH%xyzzy.tmp
  134.     Del %TEMP_PATH%xyzzy.tmp
  135.     GoTo Done
  136.  
  137.  
  138. Rem **********************************************************************
  139. Rem *                                                                    *
  140. Rem *  Overwrite the temporary file and delete it.  Then log into        *
  141. Rem *  Novell specifying the ID from the Watchdog logonexec but let the  *
  142. Rem *  User specify the password.  This allows for the Novell password   *
  143. Rem *  to be different than the Watchdog password.                       *
  144. Rem *                                                                    *
  145. Rem *  Note: Replace F: with the drive letter where the Novell LOGIN     *
  146. Rem *        directory is located and precede "%2" with a particular     *
  147. Rem *        server name if necessary.                                   *
  148. Rem *                                                                    *
  149. Rem **********************************************************************
  150.  
  151.  
  152. :Alternate_Login
  153.  
  154.     Echo mary had a little lamb >%TEMP_PATH%xyzzy.tmp
  155.     Del %TEMP_PATH%xyzzy.tmp
  156.  
  157.     F:
  158.     LOGIN %2
  159.  
  160.  
  161. :Done
  162.