Windows Task Scheduler batch file fails to xcopy file to mapped network share

2.7k Views Asked by At

I have a batch file which creates backup of SQL DB, makes a zip file and then copies to a mapped network share.

When this batch file is executed from command prompt or RUN window it works perfectly fine. However, when the batch file is called by Windows Task Scheduler it fails to copy file to mapped network share with the error #4.

The run account used in Task Scheduler is same as I am using for Command Prompt. Both the machines are on workgroup with the same user name and password, so sharing permission does not seem to be an issue.

The code is:

set ZipFileName=C:\Temp\ST_%date:~10%%date:~4,2%%date:~7,2%%time:~0,2%%time:~3,2%.zip
C:\Windows\System32\xcopy %ZipFileName% "Z:\WinDB\" /Z /V
IF %ERRORLEVEL% NEQ 0 GOTO error_hndlr
------
:error_hndlr
echo Failed with error #%errorlevel%
exit /B
0

There are 0 best solutions below