I have several problems with my script (below) and unfortunately the reason why is apparently beyond me at this point.

I get the drives to map and that is about it.

Single W2K domain, User for testing has Admin on local W2K Pro PC

Time, drive delete, file copy, and printer mapping are not working.....

Any help at all would be greatly appreciated..I am lost (obviously)!!

Julia

-----start login script------

@echo off

CLS

SETTIME \\obc4

BEEP

ECHO Verifying / Updating Script Software Installation, Please Wait...

IF "%OS% == "Windows_NT" GoTO Winnt

C:\Windows\command\xcopy\ %0\..\kix32.exe %windir%\system\ /d /h /i /r /v >nul
C:\Windows\command\xcopy\ %0\..\kx16.dll %windir%\system\ /d /h /i /r /v >nul
C:\Windows\command\xcopy\ %0\..\kx32.dll %windir%\system\ /d /h /i /r /v >nul
C:\Windows\command\xcopy\ %0\..\kx95.dll %windir%\system\ /d /h /i /r /v >nul
ECHO Loading logon script, Please Wait...
%Windir%\systemkix32.exe %0\..\logon.kix
GOTO Drives

:WinNT
xcopy %0\..\kix32.exe %WINDIR%\System32\ /d /h /i /r /v > nul
ECHO Loading Logon Script, Please Wait...
%WINDIR%\System32\kix32.exe %0\..\logon.kix
GOTO Drives

:Drives
use * /delete /PERSISTENT
SLEEP 10

use h: /home
use p: \\obc4\public
GOTO Printers

:Printers
addprinterconnection("\\obc4\hplaserjet5")

:End

-----End Login script------