Welcome!

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

SignUp Now!

How to? Run a TCC command from external program

Feb
240
3
What is the recommended way to run a TCC command from an external program?

I can put the command into a .BTM file, followed by the "exit" command, and I can then run:
Code:
"C:\Program Files\JPSoft\TCMD15x64\tcc.exe"  MyCommand.BTM

Is this the best way to do it, or is there a more direct way?
 
The BTM wouldn't need "exit" if you started TCC with "/C"
If the command is simple enough, you can put it right in TCC's command line. For example,
Code:
"C:\Program Files\JPSoft\TCMD15x64\tcc.exe" /c copy file1 file2
 
The BTM wouldn't need "exit" if you started TCC with "/C"
If the command is simple enough, you can put it right in TCC's command line. For example,
Code:
"C:\Program Files\JPSoft\TCMD15x64\tcc.exe" /c copy file1 file2

Thanks, Vince. That was very helpful.
 

Similar threads

Back
Top