Driver Installation Guide for POWERlan ============================================ Introduction ============ This document describes the procedure to install POWERlan driver for PN-16 Series Ethernet Adapter. Installation Procedures ======================= 1. Run your existing DOS system as you usually do. 2. Place the PowerLan install Disk #1 in floppy drive A: or B: 3. Change to the drive containing the diskette and type "INSATLL " at the system prompt. 4. Choose ET200 or NE2000 as your Ethernet Hardware Adapter. 5. Follow all the operations as you are prompted on the screen. 6. After installing the Netware Operating System, reboot your system. --- Sample AUTOEXEC.BAT file --- : PATH=C:\PL\PROGRAMS;%PATH% call C:\PL\ADMIN\SYS\PLSTART.BAT : --- Sample PLSTART.BAT file --- @echo off if %PLTREE%. == . set PLTREE=C:\PL if %PLSO%. == . set PLSO=CON echo Starting POWERLan... >%PLSO% if %1. == . goto skip_xfer goto %1 :skip_xfer REM REM [-------------------------------------] REM [ POWERLan Configuration Batch File ] REM [-------------------------------------] REM REM REM - - - - - - - - - - - Initialization - - - - - - - - - - - - - - - - - - REM share /f:2048 /l:20 >>%PLSO% if errorlevel 1 pause REM REM - - - - - - - - - - - - - - - - - - Start NETBIOS - - - - - - - - - - - - REM REM %PLTREE%\PROGRAMS\nxne2000 /ln:0 /ses:16 /nam:17 /lp:300 /li:3 if errorlevel 1 pause REM REM - - - - - - - - - - - - - - - - - Start Name Server - - - - - - - - - - REM %PLTREE%\PROGRAMS\nameserv /names:50 >>%PLSO% if errorlevel 1 pause REM REM - - - - - - - - - - - - - - - - - Start Unspooler - - - - - - - - - - - REM %PLTREE%\PROGRAMS\prtunspl ADMIN /p:LPT1 /netbuf:256 /n:LPT1 >>%PLSO% if errorlevel 1 pause REM REM - - - - - - - - - - - - - - - - - Start Remote Viewing - - - - - - - - REM %PLTREE%\PROGRAMS\netshow ADMIN /adapter:0 /l:1024 >>%PLSO% if errorlevel 1 pause REM CFG=%PLTREE%\PROGRAMS\alert >>%PLSO% REM REM - - - - - - - - - - -(NOT ACTIVE) Start Cache - - - - - - - - - - - - - REM REM CFG=%PLTREE%\PROGRAMS\cache 0 /e >>%PLSO% REM CFG=%PLTREE%\PROGRAMS\cachectl >nul REM REM - - - - - - - - - - - - - - - - - Start Redirector - - - - - - - - - - - REM %PLTREE%\PROGRAMS\redir /n:ADMIN /d:26 /s:4 /k:1 /b:2 /p1:1 /p2:1 /p3:1 /q >>% if errorlevel 1 pause REM CFG=%PLTREE%\PROGRAMS\net lpt /LPT1:9 /LPT2:9 /LPT3:9 >>%PLSO% REM REM - - - - - - - - - - - - - - - - - Start Beacon - - - - - - - - - - - - - REM %PLTREE%\PROGRAMS\beacon ADMIN /type:7 >>%PLSO% if errorlevel 1 pause REM REM - - - - - - - - - - - - - - - - - Start Non-dedicated Server - - - - - - REM :server %PLTREE%\PROGRAMS\server /p:C:\SPOOL /r:12 /u:8 /k:4 /b:2 /q >>%PLSO% if errorlevel 1 pause %PLTREE%\PROGRAMS\net sharesys /spool:C:\SPOOL /start >>%PLSO% if errorlevel 1 pause %PLTREE%\PROGRAMS\net sharesys C:\PL\ADMIN\SYS\PLSHARES.SYS >>%PLSO% if errorlevel 1 pause %PLTREE%\PROGRAMS\net sharesys /logon:C:\PL\ADMIN\USERS /start >>%PLSO% if errorlevel 1 pause %PLTREE%\PROGRAMS\net sharesys /admin:C:\PL\ADMIN /start >>%PLSO% if errorlevel 1 pause REM REM - - - - - - - - - - -(NOT ACTIVE) Start Dedicated Server - - - - - - - - REM REM REM - - - - - - - - - - -(NOT ACTIVE) Start Popup Redirector - - - - - - - REM REM CFG=%PLTREE%\PROGRAMS\plr CTRL-ALT-R >>%PLSO% REM REM - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - REM if exist %PLTREE%\PROGRAMS\PLADMIN.EXE set PLFOUND=YES REM REM - - - - - - - - - - - - - - - - - Log User On - - - - - - - - - - - - - REM :logon %PLTREE%\PROGRAMS\net logon ADMIN REM REM - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - REM if %PLFOUND%. == YES. set PLTREE= set PLFOUND= if %PLSO%. == CON. set PLSO= REM REM [--------------------------------------------] REM [ End of POWERLan Configuration Batch File ] REM [--------------------------------------------] :