By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now! Directory of C:\Program Files\JP Software\Take Command x64 15.01\*.btm
1/09/2013 13:13 1,002 tccbatch.btm
4/03/2013 9:12 1,170 tcchere.btm
1/09/2013 13:13 1,272 tcctabhere.btm
4/03/2013 9:17 1,204 tcmdhere.btm
4,648 bytes in 4 files and 0 dirs 16,384 bytes allocated
NOTE: code-blocks in the forum should default to a fixed-space font (lucida console?)
NOTE: code-blocks in the forum should default to a fixed-space font (lucida console?)
and
Directory of C:\Program Files\JP Software\Take Command x64 15.01\*.btm
1/09/2013 13:13 1,002 tccbatch.btm
4/03/2013 9:12 1,170 tcchere.btm
1/09/2013 13:13 1,272 tcctabhere.btm
4/03/2013 9:17 1,204 tcmdhere.btm
4,648 bytes in 4 files and 0 dirs 16,384 bytes allocated
@echo off
rem TCMDBatch.btm
rem This batch file associates .BAT, .BTM, and .CMD files to Take Command
iff %_dosver ge 6.0 then
echo If you are running Windows Vista, you must first start a Take Command
echo session as an administrator (right click on the TCMD icon and select
echo "Run as administrator") echo and then run TCMDBatch.btm in that session.
endiff
echo.
echos Do you want to make Take Command the default handler for .BAT files [Y/N] ?
inkey /k"yn[enter]" %%var
iff "%var" eq "y" then
assoc .bat=batfile
ftype batfile="%@path[%_cmdspec]tcmd.exe" /c "%%1" %%*
endiff
echo.
echos Do you want to make Take Command the default handler for .BTM files [Y/N] ?
inkey /k"yn[enter]" %%var
iff "%var" eq "y" then
assoc .btm=TCMD.Batch
ftype TCMD.Batch="%@path[%_cmdspec]tcmd.exe" /c "%%1" %%*
endiff
echo.
echos Do you want to make Take Command the default handler for .CMD files [Y/N] ?
inkey /k"yn[enter]" %%var
iff "%var" eq "y" then
assoc .cmd=cmdfile
ftype cmdfile="%@path[%_cmdspec]tcmd.exe" /c "%%1" %%*
endiff