so not sure what happened here.... my batch file was working, then something changed (damned techs), and now it doesn't. Seeing as its been a couple years since I set it up, not sure why its not working. The XCOPY command looks to the login server, checks to see if the files on the server are newer than on the client. If they are newer, it copies them down to the client, then runs the script from the client. This allows me to make a change to the dcmetro.kix file and then have it deployed to everyone at next logon.

help making this work again is appreciated

    @ECHO OFF
    REM ----------------------------------------------------------------
    REM Copy Kix Files to PC, Update DCMETRO Script if Newer
    REM ---------------------------------------------------------------
    ECHO Y|XCOPY %0\..\KIX32.EXE C: /D /H /I /R > NUL
    ECHO Y|XCOPY %0\..\DCMETRO.KIX C: /D /H /I /R > NUL
    ECHO Y|XCOPY %0\..\WKIX32.EXE C: /D /H /I /R > NUL


    C:

    C:\kix32.exe DCMETRO.kix

    Exit