I have a problem with this bat:
@echo off
set CD1OLD=%CD%
cd /d %~dp0
%CD%\xxx.Http.Client.exe http://localhost:8081/aaa/comparer/aa/base/aa/compare > debug_aaa_base.xml
echo.
%CD%\xxx.Http.Client.exe http://localhost:8081/aaa/comparer/aa/complessi/aa/compare > debug_aaa_complessi.xml
echo.
echo ****** LANCIO xxxx ******
%CD%\Lancio_xxxx.bat
echo.
After this piece of code, I need to run this:
echo ****** SPOSTA FILES ******
%CD%\Elaborazione_aaa_Spostamento_files.exe
cd /d %CD1OLD%
but it's not working.. It seems that the first code changes his execution path while executing the code itself, giving problems with the second code block's execution..
In particular, if I remove this line
%CD%\Lancio_xxxx.bat
everything works fine. But I need to run that line too!
Any suggestions? Thanks in advance
best regards