home *** CD-ROM | disk | FTP | other *** search
- @Echo Off
- REM [WATCHDOG] 7.0.1 - NOT CUSTOMIZED
- REM [NOVELL]
- 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 [NOVELL]
- 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 Novell server, providing the Watchdog User ID and *
- Rem * password match the Novell ID and password. The Novell drivers *
- Rem * IPX, NETX, etc. should be loaded in the AUTOEXEC.BAT file *
- Rem * for this batch file to execute properly. *
- 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. (i.e. F:\LOGIN\LOGIN.EXE) *
- Rem * *
- Rem * For LAN Manager/LAN Server networks, please refer to the file *
- Rem * WDNET.MAN located in the local \SYSLIB directory. *
- Rem * *
- Rem * *
- Rem * IMPORTANT!!! YOU SHOULD REVIEW THIS BATCH FILE CAREFULLY TO *
- Rem * DETERMINE WHETHER YOU NEED TO MAKE ANY CHANGES *
- Rem * TO THE NOVELL LOGIN DRIVE, THE temp_path OR OTHER *
- Rem * PARAMETERS AFFECTED BY YOUR SPECIFIC SETUP. *
- Rem * *
- Rem * *
- Rem **********************************************************************
-
-
-
- Rem **********************************************************************
- Rem * *
- Rem * TEMP_PATH is a variable used to define a drive where a temporary *
- Rem * file, created in this batch file, may be stored. TEMP_PATH may *
- Rem * be assigned to a RAMDRIVE. This environment variable may either *
- Rem * be defined here or in the AUTOEXEC.BAT. *
- Rem * *
- Rem **********************************************************************
-
-
- Set TEMP_PATH=C:\
-
-
- Rem **********************************************************************
- Rem * *
- Rem * The next statement echos the password into a temporary file for *
- Rem * input into Novell LOGIN using I/O redirection. *
- Rem * *
- Rem **********************************************************************
-
-
- Echo %4>%TEMP_PATH%xyzzy.tmp
-
-
- Rem **********************************************************************
- Rem * *
- Rem * Actual Novell LOGIN. Replace F: with the drive letter where the *
- Rem * Novell LOGIN directory is located. If you need to log into a *
- Rem * particular server, the server name should precede "%2". *
- Rem * *
- Rem **********************************************************************
-
-
- F:
- LOGIN %2 <%TEMP_PATH%xyzzy.tmp
-
- Rem **********************************************************************
- Rem * *
- Rem * If the login is unsuccessful, jump to the alternate Novell 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 Novell command *
- Rem * SETPASS is run to change the password. The "y" handles the *
- Rem * prompt to change all passwords if you are attached to multiple *
- Rem * servers with identical IDs and passwords. *
- Rem * *
- Rem * One way to attach to multiple servers is with the "ATTACH" *
- Rem * command in the Novell login script. *
- Rem * *
- Rem **********************************************************************
-
- If %8x == x GoTo CONT
-
- Echo %8>>%TEMP_PATH%xyzzy.tmp
- Echo %8>>%TEMP_PATH%xyzzy.tmp
-
- Echo y>>%TEMP_PATH%xyzzy.tmp
-
- SETPASS <%TEMP_PATH%xyzzy.tmp
-
-
- Rem **********************************************************************
- Rem * *
- Rem * Overwrite the temporary file and delete it, then jump to the *
- Rem * end. *
- Rem * *
- Rem **********************************************************************
-
-
- :CONT
- Echo Mary had a little lamb >%TEMP_PATH%xyzzy.tmp
- Del %TEMP_PATH%xyzzy.tmp
- GoTo Done
-
-
- Rem **********************************************************************
- Rem * *
- Rem * Overwrite the temporary file and delete it. Then log into *
- Rem * Novell specifying the ID from the Watchdog logonexec but let the *
- Rem * User specify the password. This allows for the Novell password *
- Rem * to be different than the Watchdog password. *
- Rem * *
- Rem * Note: Replace F: with the drive letter where the Novell LOGIN *
- Rem * directory is located and precede "%2" with a particular *
- Rem * server name if necessary. *
- Rem * *
- Rem **********************************************************************
-
-
- :Alternate_Login
-
- Echo mary had a little lamb >%TEMP_PATH%xyzzy.tmp
- Del %TEMP_PATH%xyzzy.tmp
-
- F:
- LOGIN %2
-
-
- :Done
-