Well if the batch flashes with out indicating success or failure we can change it like this (you will have to press a key after the message to continue)::
:: Author: Robertodf
:: Batch file to copy files from network share or network drive to local folder
:: Filename: solution.cmd
::
:: 1. Check for network folder availability
if not exist \\server\share\file_or_directory goto notexist
:: 2. Copy folder contens to local machine
xcopy \\server\share\folder\*.* c:\localdir /s
:: 3. Test for local folder contents
if not exist c:\localdir\filename.tst goto errorlocal
echo Copy was successful
pause>nul
goto end
:notexist
echo File or Folder not exist
pause>nul
goto end
:errorlocal
echo Local File or Folder not exist, try again
pause>nul
goto end
:end