Hi guys,

I was wondering if you could help me... We currently use kix login scripts in our network and I am trying to delete some files on each machine when the users login. To do this I have created a .bat file that works perfectly on my machine. But, when I run it from the kix login it doesnt find the locations.

The code to call the .bat file is

IF INGROUP("ETC ETC ETC")
RUN '\\SERVER\NETLOGON\test.bat'
ENDIF

exit

This then runs the .bet file fine....

The .bat file is made up of this

Echo off
Cls
:menu
echo.
echo.................
echo Deleting ACAD Virus Files
echo.................
echo.
DEL /F /S /Q "acad.dvb"
DEL /F /S /Q "acaddoc.lsp"
DEL /F /S /Q "acadapq.lsp"
exit

It runs ok, but then says cannot find c:/Windows/R - and there is no reference to this folder in the script anywhere.

Can you help me????