I want to send a path as an argument to an executable.
what I want to do something like this:
pushd some\folder
set x=cd
popd
MyExe.exe %x%
the problem is that the x variable is now equal to the string "cd" but what I want is to get the output of cd into x.
How do I do that?