How can you get the directory of the script that was run and use it within the .cmd file?
for /F "eol= delims=~" %%d in ('CD') do set curdir=%%d pushd %curdir%
Source