Trying to use the path to the current script, and the path contains spaces in it. I can't seem to get it to work though:
C:\Test Directory>dir
Volume in drive C has no label.
Volume Serial Number is 7486-CEE6
Directory of C:\Test Directory
08/31/2010 07:28 PM <DIR> .
08/31/2010 07:28 PM <DIR> ..
08/31/2010 07:28 PM 20 echoit.cmd
08/31/2010 07:28 PM 94 test.cmd
2 File(s) 114 bytes
2 Dir(s) 344,141,197,312 bytes free
C:\Test Directory>type echoit.cmd
@echo off
echo %*
C:\Test Directory>type test.cmd
@echo off
for /f "tokens=*" %%a in ('%~dp0\echoit.cmd Hello World') do (
echo %%a
)
C:\Test Directory>test
'C:\Test' is not recognized as an internal or external command,
operable program or batch file.
C:\Test Directory>