Useful 3rd party tools to complement TC

Discuss and announce Total Commander plugins, addons and other useful tools here, both their usage and their development.

Moderators: white, Hacker, petermad, Stefan2

Post Reply
User avatar
Sam_Zen
Power Member
Power Member
Posts: 700
Joined: 2005-02-08, 22:59 UTC
Location: NL
Contact:

Post by *Sam_Zen »

I'm quite content with PDFX.
0.618033988
icfu
Power Member
Power Member
Posts: 6052
Joined: 2003-09-10, 18:33 UTC

Post by *icfu »

Online backup service IDrive, supports:
- Mac and Windows
- 128-bit SSL transfer and 256-bit-AES storage encryption with user-defined key
- scheduled and background backups (block level incremental)
- VSS
- versioning (last 30 versions)
- mapped drives
- excludes (wildcard support)
- syncing
- logging
- bandwidth throttling
- HTTP and SOCKS support

2 GB of storage space are free. By referring to five contacts, this limit can be raised to 12 GB!

Edit: Done, thanks! :)

Icfu
Last edited by icfu on 2008-05-19, 07:29 UTC, edited 1 time in total.
This account is for sale
User avatar
Horst.Epp
Power Member
Power Member
Posts: 6498
Joined: 2003-02-06, 17:36 UTC
Location: Germany

Microsoft Sync Toy

Post by *Horst.Epp »

Microsoft Sync Toy Backup tool (2.0 Beta) is one of the rare tools which doesn't stupid copies a lot of files just because they have been renamed.
It detects this and just renames the files in the target accordingly.
icfu
Power Member
Power Member
Posts: 6052
Joined: 2003-09-10, 18:33 UTC

Post by *icfu »

Take Command Console LE, enhanced command processor (cmd.exe alternative), successor of 4NT, freeware:
http://www.jpsoft.com/tccledes.htm

Icfu
This account is for sale
User avatar
nsp
Power Member
Power Member
Posts: 1807
Joined: 2005-12-04, 08:39 UTC
Location: Lyon (FRANCE)
Contact:

Post by *nsp »

icfu wrote:Take Command Console LE, enhanced command processor (cmd.exe alternative), successor of 4NT, freeware:
http://www.jpsoft.com/tccledes.htm
Icfu
OnlyTCC LE is freeware adding console you have a very nice shell environment on windows...
icfu
Power Member
Power Member
Posts: 6052
Joined: 2003-09-10, 18:33 UTC

Post by *icfu »

OnlyTCC LE is freeware
I haven't claimed anything else, even the link is correct.

Icfu
This account is for sale
User avatar
dott
Senior Member
Senior Member
Posts: 285
Joined: 2007-03-04, 00:58 UTC
Location: La Plata, Argentina

Post by *dott »

Thanks for the info icfu.
User avatar
dott
Senior Member
Senior Member
Posts: 285
Joined: 2007-03-04, 00:58 UTC
Location: La Plata, Argentina

Post by *dott »

[OT]
2nsp
I suppose that you use console, if not, maybe somebody else does it; any way..
I use console with NoClose Replacer by edit noclose.ini:

Code: Select all

[General]
CommandProcessorNT=%programfiles%\Console\Console.exe -t cmd -r "/k "\"%1\"""
where
cmd=predefined console tab with cmd.exe as shell
This way I can Shift+Enter on executables or any kind of files in tcmd.

My problem is that with tcc.exe(former 4nt) I can't make this work, It open files(even if there are spaces in the path) on the associated app e.g. Shift+Enter on html file: will open the file in firefox and console windows stay active after closing firefox; but it doesn't work with executables(exe, bat, com...) if there are spaces in the path.

Somebody have any clue?
some of my tests:

Code: Select all

CommandProcessorNT=%programfiles%\console\console.exe -t tcc -r "\"%1\""
--
CommandProcessorNT=%programfiles%\console\console.exe -t tcc -r "%1"
--
CommandProcessorNT=%programfiles%\console\console.exe -t tcc -r '%1'
/k is optional.
where
tcc=predefined console tab with tcc.exe as shell
Probablemente no
User avatar
m^2
Power Member
Power Member
Posts: 1413
Joined: 2006-07-12, 10:02 UTC
Location: Poland
Contact:

Post by *m^2 »

Strange...

Code: Select all

CommandProcessorNT=d:\TC\Tools\Programming\printCmdLine.exe -t tcc -r "%1"
Opened on D:\TC\Tools\Programming\2 008-05-31\printCmdLine.exe
Result:

Code: Select all

-t tcc -r D:\TC\Tools\POGRA~1\200805~1\PRINTC~1.exe
The directory had a space in it's name. The result didn't.
Bug?
User avatar
dott
Senior Member
Senior Member
Posts: 285
Joined: 2007-03-04, 00:58 UTC
Location: La Plata, Argentina

Post by *dott »

This are the output off console(in fact of tcc, console is just a wrapper)
I use "echo %cmdcmdline%" to get the startup command.

[face=courier]-NoClose.ini------------------------------------------------------------------------
CommandProcessorNT=%programfiles%\console\console.exe -t tcc -r %1
------------------------------------------------------------------------------------[/face]

Code: Select all

TCC LE  9,02.147   Windows Vista [Version 6,0,6001]
Copyright 2008  Rex Conn & JP Software Inc.  All Rights Reserved

TCC: Unknown command "c:\Archivos"

c:\archivos de programa\utiles
>echo %cmdcmdline%
"C:\Program Files\TCC\tcc.exe" c:\Archivos de programa\Utiles\test.exe

c:\archivos de programa\utiles
>

[face=courier]-NoClose.ini------------------------------------------------------------------------
CommandProcessorNT=%programfiles%\console\console.exe -t tcc -r "%1"
------------------------------------------------------------------------------------[/face]

Code: Select all

TCC LE  9,02.147   Windows Vista [Version 6,0,6001]
Copyright 2008  Rex Conn & JP Software Inc.  All Rights Reserved

TCC: Unknown command "c:\Archivos"

c:\archivos de programa\utiles
>echo  %cmdcmdline%
 "C:\Program Files\TCC\tcc.exe" "c:\Archivos

c:\archivos de programa\utiles
>
There are spaces, maybe console add the spaces before sent the command to tcc.exe :?:
icfu
Power Member
Power Member
Posts: 6052
Joined: 2003-09-10, 18:33 UTC

Post by *icfu »

I don't have any problems with the command line you posted first here, works flawlessly with cmd and tcc:

Code: Select all

Console.exe -t tcc -r "/k "\"%1\"""
My problem is that with tcc.exe(former 4nt) I can't make this work, It open files(even if there are spaces in the path) on the associated app e.g. Shift+Enter on html file: will open the file in firefox and console windows stay active after closing firefox;
TC doesn't use NoClose.pif when Shift+Enter on non-executable files like HTML.

Icfu
This account is for sale
User avatar
dott
Senior Member
Senior Member
Posts: 285
Joined: 2007-03-04, 00:58 UTC
Location: La Plata, Argentina

Post by *dott »

You are right, as always :)

I read first 'tcmd.chm':
The /K switch has no effect. Using it is the same as placing command (with neither /C nor /K) at the end of the startup command line. It is included only for compatibility with CMD.EXE
and I assumed that it was true. Seems that no.
Thanks
icfu
Power Member
Power Member
Posts: 6052
Joined: 2003-09-10, 18:33 UTC

Post by *icfu »

The first freeware I know of – besides compilers and resource hackers – for creating 32-bit-ICLs:
BeCyIconGrabber

Kudos to TBO who has mentioned it here:
http://ghisler.ch/board/viewtopic.php?p=152556#152556

Icfu
Last edited by icfu on 2008-07-07, 23:08 UTC, edited 1 time in total.
This account is for sale
User avatar
m^2
Power Member
Power Member
Posts: 1413
Joined: 2006-07-12, 10:02 UTC
Location: Poland
Contact:

Post by *m^2 »

Thanks icfu!
At last my TC will be Vista compatible. :D
Nxqd3051990
Junior Member
Junior Member
Posts: 13
Joined: 2006-03-08, 05:38 UTC

Post by *Nxqd3051990 »

Great list man, thank you so much :)
Post Reply