ok i got a batch file that runs and then calls a vbs file
[test1.bat]
@echo off
echo Logon script
call \\server\test\test.vbs
pause
[test.vbs]
msgbox "wow it works"
and the message i get is "bad command or file name
BUT wen i try and open a .bat file on the server it works
[test1.bat]
@echo off
echo Logon script
call \\server\test\test2.bat
pause
[test2.bat]
msgbox "works with bat files"
wat is going on???
[test1.bat]
@echo off
echo Logon script
call \\server\test\test.vbs
pause
[test.vbs]
msgbox "wow it works"
and the message i get is "bad command or file name
BUT wen i try and open a .bat file on the server it works
[test1.bat]
@echo off
echo Logon script
call \\server\test\test2.bat
pause
[test2.bat]
msgbox "works with bat files"
wat is going on???