either:
cd ..
call file.bat
don’t call cd
but file.bat
and use two lines or concate the commands properly:
cd .. & call file.bat
or:
call ..\file.bat
or use absolute path:
call "c:\my directory\subdir\file.bat"
0
solved How to open a file batch file that is up above in a different folder from the batch file