home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t115 / 1.ddi / WDNET.MAN < prev    next >
Encoding:
Text File  |  1993-03-04  |  5.7 KB  |  112 lines

  1. @Echo Off
  2. REM [WATCHDOG] 7.0.1 - NOT CUSTOMIZED
  3. REM [LAN MANAGER/LAN SERVER]
  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 [LAN MANAGER/LAN SERVER]
  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 LAN Manager or LAN Server server, providing the Watchdog   *
  26. Rem *  User ID and password match the LAN Manager/LAN Server ID and      *
  27. Rem *  password.                                                         *
  28. Rem *                                                                    *
  29. Rem *  This batch file contains important information regarding          *
  30. Rem *  the customization of WDNET.BAT for your specific network          *
  31. Rem *  environment.  Please, make sure you read this file entirely       *
  32. Rem *  before attempting to activate it.                                 *
  33. Rem *                                                                    *
  34. Rem *  To activate this batch file remove all lines above the            *
  35. Rem *  "Goto Done" statement, including "Goto Done".                     *
  36. Rem *                                                                    *
  37. Rem *  To maximize security, full paths should be specified for all      *
  38. Rem *  commands run in this batch file.                                  *
  39. Rem *                                                                    *
  40. Rem *  For Novell Networks, please refer to the file WDNET.NOV located   *
  41. Rem *  in the local \SYSLIB directory.                                   *
  42. Rem *                                                                    *
  43. Rem *  IMPORTANT!!!  YOU SHOULD REVIEW THIS BATCH FILE CAREFULLY TO      *
  44. Rem *                DETERMINE WHETHER YOU NEED TO MAKE ANY CHANGES      *
  45. Rem *                TO THE NET LOGON LINE OR OTHER PARAMETERS AFFECTED  *
  46. Rem *                BY YOUR SPECIFIC SETUP.                             *
  47. Rem *                                                                    *
  48. Rem *                                                                    *
  49. Rem **********************************************************************
  50.  
  51.  
  52. Rem **********************************************************************
  53. Rem *                                                                    *
  54. Rem *  The next statement passes the Watchdog User ID and password to    *
  55. Rem *  the LAN Manager/LAN Server NET LOGON command.                     *
  56. Rem *                                                                    *
  57. Rem *  Substitute the appropriate DOMAIN name in the NET LOGON line      *
  58. Rem *  below after /DOM:                                                 *
  59. Rem *                                                                    *
  60. Rem **********************************************************************
  61.  
  62.  
  63.         NET LOGOFF
  64.         NET LOGON %2 %4 /DOM:DOMAIN
  65.  
  66. Rem **********************************************************************
  67. Rem *                                                                    *
  68. Rem *  If the login is unsuccessful, jump to the alternate login         *
  69. Rem *  process.                                                          *
  70. Rem *                                                                    *
  71. Rem **********************************************************************
  72.  
  73.  
  74.     If ERRORLEVEL 1 GoTo Alternate_Login
  75.  
  76.  
  77. Rem **********************************************************************
  78. Rem *                                                                    *
  79. Rem *  In the next section, if the Watchdog Password was changed while   *
  80. Rem *  logging on, %8 will contain the new password.  The LAN Manager/   *
  81. Rem *  LAN Server command NET PASSWORD is run to change the network      *
  82. Rem *  password to agree with the new Watchdog Password.                 *
  83. Rem *                                                                    *
  84. Rem **********************************************************************
  85.  
  86.     If %8x == x GoTo Loop
  87.  
  88.     NET PASSWORD %2 %4 %8        
  89.  
  90.     GoTo Loop
  91.  
  92.  
  93.  
  94. Rem **********************************************************************
  95. Rem *                                                                    *
  96. Rem *  Log onto LAN Manager/LAN Server specifying the ID from the        *
  97. Rem *  Watchdog logonexec but let the User specify the password.  This   *
  98. Rem *  allows for the LAN Manager/LAN Server password to be different    *
  99. Rem *  than the Watchdog password.                                       *
  100. Rem *                                                                    *
  101. Rem *  As above, please substitute the appropriate DOMAIN name on the    *
  102. Rem *  NET LOGON line after /DOM:                                        *
  103. Rem *                                                                    *
  104. Rem **********************************************************************
  105.  
  106.  
  107. :Alternate_Login
  108.  
  109.         NET LOGON %2 /DOM:DOMAIN
  110.  
  111. :Done
  112.