home *** CD-ROM | disk | FTP | other *** search
- @Echo Off
- REM [WATCHDOG] 7.0.1 - NOT CUSTOMIZED
- REM [LAN MANAGER/LAN SERVER]
- Cls
- Echo **************************************************************
- Echo * *
- Echo * WDNET.BAT located in \SYSLIB *
- Echo * has not been customized for your machine. *
- Echo * *
- Echo **************************************************************
- Pause
- GoTo Done
-
-
- @Echo Off
- REM ********* WARNING! DO NOT DELETE/CHANGE BETWEEN THESE LINES! *********
- REM [WATCHDOG] 7.0.1 - CUSTOMIZED
- REM [LAN MANAGER/LAN SERVER]
- REM ********* WARNING! DO NOT DELETE/CHANGE BETWEEN THESE LINES! *********
- Cls
- Rem **********************************************************************
- Rem * *
- Rem * This batch file may be used as a sample for setting up a *
- Rem * WDNET.BAT file that will automatically log a user *
- Rem * onto a LAN Manager or LAN Server server, providing the Watchdog *
- Rem * User ID and password match the LAN Manager/LAN Server ID and *
- Rem * password. *
- Rem * *
- Rem * This batch file contains important information regarding *
- Rem * the customization of WDNET.BAT for your specific network *
- Rem * environment. Please, make sure you read this file entirely *
- Rem * before attempting to activate it. *
- Rem * *
- Rem * To activate this batch file remove all lines above the *
- Rem * "Goto Done" statement, including "Goto Done". *
- Rem * *
- Rem * To maximize security, full paths should be specified for all *
- Rem * commands run in this batch file. *
- Rem * *
- Rem * For Novell Networks, please refer to the file WDNET.NOV located *
- Rem * in the local \SYSLIB directory. *
- Rem * *
- Rem * IMPORTANT!!! YOU SHOULD REVIEW THIS BATCH FILE CAREFULLY TO *
- Rem * DETERMINE WHETHER YOU NEED TO MAKE ANY CHANGES *
- Rem * TO THE NET LOGON LINE OR OTHER PARAMETERS AFFECTED *
- Rem * BY YOUR SPECIFIC SETUP. *
- Rem * *
- Rem * *
- Rem **********************************************************************
-
-
- Rem **********************************************************************
- Rem * *
- Rem * The next statement passes the Watchdog User ID and password to *
- Rem * the LAN Manager/LAN Server NET LOGON command. *
- Rem * *
- Rem * Substitute the appropriate DOMAIN name in the NET LOGON line *
- Rem * below after /DOM: *
- Rem * *
- Rem **********************************************************************
-
-
- NET LOGOFF
- NET LOGON %2 %4 /DOM:DOMAIN
-
- Rem **********************************************************************
- Rem * *
- Rem * If the login is unsuccessful, jump to the alternate login *
- Rem * process. *
- Rem * *
- Rem **********************************************************************
-
-
- If ERRORLEVEL 1 GoTo Alternate_Login
-
-
- Rem **********************************************************************
- Rem * *
- Rem * In the next section, if the Watchdog Password was changed while *
- Rem * logging on, %8 will contain the new password. The LAN Manager/ *
- Rem * LAN Server command NET PASSWORD is run to change the network *
- Rem * password to agree with the new Watchdog Password. *
- Rem * *
- Rem **********************************************************************
-
- If %8x == x GoTo Loop
-
- NET PASSWORD %2 %4 %8
-
- GoTo Loop
-
-
-
- Rem **********************************************************************
- Rem * *
- Rem * Log onto LAN Manager/LAN Server specifying the ID from the *
- Rem * Watchdog logonexec but let the User specify the password. This *
- Rem * allows for the LAN Manager/LAN Server password to be different *
- Rem * than the Watchdog password. *
- Rem * *
- Rem * As above, please substitute the appropriate DOMAIN name on the *
- Rem * NET LOGON line after /DOM: *
- Rem * *
- Rem **********************************************************************
-
-
- :Alternate_Login
-
- NET LOGON %2 /DOM:DOMAIN
-
- :Done
-