By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!Hi guys, my batch .btm file isn't work if it runs inside a folder containing spaces in its name. Should i configure the tcmd.ini file to fix it? Thank you
Every command i run... also a simple:
@ECHO OFF
ECHO=Hello.>>%~dp0log.txt
EXIT /B
TCC gives unknown command because the dir with spaces is cut:
C:\my dir -> TCC reads C:\my
Perfect! So is it useful to use quotes also in:
PUSHD %~dp0 ??
I thought that the quotes were unnecessary with %~dp0.
Thank you!!