home *** CD-ROM | disk | FTP | other *** search
/ ftp.morenci.k12.mi.us / ftp.morenci.k12.mi.us.tar / ftp.morenci.k12.mi.us / Clients / w2kxpv492 / 49sp2e.exe / English / WINNT / i386 / INST_LOG.TXT < prev    next >
Text File  |  2001-11-13  |  2KB  |  40 lines

  1.               Novell Client Multiple Client Install Login Script
  2.                              11/13/01
  3.                                    
  4. Important:  Read this sample script in Notepad or WordPad to accommodate the log line lengths.
  5.  
  6. Purpose
  7.  
  8. If you plan to install the Novell Client software on multiple workstations, you can install from the network by copying files to the server and modifying the login script. Even if your network has workstations on multiple platforms, you can install and upgrade the client software on all platforms when users log in. The process requires five tasks:
  9.  
  10.    1.   Create a folder on the NetWare server.
  11.    2.   Copy Novell Client files and other required files to this folder (workstations can then read the files during login).
  12.    3.   Grant rights to the new folder.
  13.    4.   Create or update the appropriate configuration file (install.cfg, setup.ini, nwsetup.ini, or unattended.txt file) for each platform-specific client.
  14.    5.   Create or modify the appropriate login script.  A sample script is included in this file.
  15.  
  16. If you are using this script to replace the Microsoft Client with the Novell Client for Windows 95, some user intervention is necessary. Due to Microsoft's limited scripting capabilities, users must close an open DOS box before the workstation is rebooted and the installation is completed. If you are installing the Novell Client for Windows 95 on a new workstation or are upgrading an existing client, no user intervention is necessary. This is not an issue for Windows NT. 
  17.  
  18. Login Script
  19.  
  20. Note: In this sample, the information that is necessary to the script is represented in all capital letters. The information you should customize for your network is in lowercase letters
  21.  
  22. REM ***** Windows 95/98 *****
  23. IF (OS = "WIN95") OR (OS = "WIN98" AND OS_VERSION <> "V4.90") THEN
  24.    WRITE "Updating Novell Client for Windows 95/98."
  25.    #\\server1\sys\public\client\win95\ibm_enu\acu.exe
  26.    IF "%ERROR_LEVEL" = "1" THEN BEGIN
  27.         EXIT
  28.    END
  29. END
  30.  
  31. REM ***** Windows NT/2000/XP *****
  32. IF OS = "WINNT"
  33.    WRITE "Updating Novell Client for Windows NT/2000/XP."
  34.    #\\server1\sys\public\client\winnt\i386\acu.exe
  35.    IF "%ERROR_LEVEL" = "1" THEN
  36.         EXIT
  37.    END
  38. END
  39.  
  40.