Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

TCC seems to only be running DOS commands, but not TCC commands (similar issue, different machine)

Apr
12
0
Hello,
I'm back again with a similar, but not identical issue on a colleagues PC, reference this thread:

(Solved) TCC seems to only be running DOS commands, but not TCC commands


assoc.btm outputs the following:
.btm=TCC.Batch

ftype tcc.batch outputs
tcc.batch="C:\Program Files\JPSoft\TCMD33\tcc.exe" /c "%1" %*

ftype %@assoc[.btm] outputs
File type '%@assoc[.btm]' not found or no open command associated with it.

We've installed TCMD 33, run the tccbatch.btm, even tried the right click and select the tcc.exe from ..\Program Files\JPSoft\TCMD33 folder, but, its not working as expected. Basically getting the same outputs as seen above.

Any help is greatly appreciated.
 
ASSOC (by default) reads HKEY_CLASSES_ROOT, while @ASSOC is reading HKEY_CURRENT_USER.

If you do an "assoc /u .btm", you'll probably get the same error as %@assoc.

This isn't an internal TCC issue, it's a Windows Registry configuration issue. TCC isn't involved until Windows calls it because of the registry association.
 
Thank you. There were some registry values that were pointing to old/removed TCC and TCCM installations.

Please mark this solved if required.
 
Back
Top