Inside a windows batch file I\'d like to figure out what the fully qualified path name of this batch file is.
I have tried %0 but this does only gave me
%0
echo %~f0
works for me.
see for /? from cmd and read about variable substitution.
for /?
cmd