Page 3 of 3

Posted: 2016-12-21, 12:30 UTC
by EricB
Christian,

I'm not sure if this should be posted in this thread, but the author of Everything has posted a new version of the SDK, which implements support for more properties than before: file attributes, date created/modified/accessed, file and folder size, and also fast sorts of mentioned properties.

HTH.

Regards, EricB

Posted: 2016-12-21, 17:18 UTC
by ghisler(Author)
TC9 already uses the new SDK functions to get more properties from Everything. TC uses this when Everything 1.4 beta (or newer) is installed.

Posted: 2016-12-22, 09:51 UTC
by EricB
What I meant is that the previous 1.4 beta SDK has been updated recently (19/12/2016). I've done a quick compare of the source files and a lot has been changed. I thought that might of of interest. I have the feeling that Everything 1.4 is rapidly approaching stable.

Regards, EricB

Posted: 2017-11-16, 18:35 UTC
by aabra1
can someone describe how to integrate Everything 1.4 into TC 9.10

someone was suggesting on voidtools.com/forum around 2009(i suppose it is outdated) to add the following to Everything.ini:

Code: Select all

open_folder_path_command=$exec("%COMMANDER_PATH%\TOTALCMD.EXE" /O /T /L="%1")
open_file_command=$exec("%COMMANDER_PATH%\TOTALCMD.EXE" /O /T /L="%1")
open_folder_command=$exec("%COMMANDER_PATH%\TOTALCMD.EXE" /O /T /L="%1")
then I saw this in the history document:
27/11/2016 Added: Everything: Support named instances (Everything.exe -instance "somename"): wincmd.ini [Configuration] UseEverythingInstance=somename (32/64)
I am hoping to be able to use the following portable with TC9.10:
Everything-1.4.1.877.x86.zip Portable x86 Multilingual 1198 KB
Someone might have done it already but I cannot find comprehensive and consistent instructions on how to use Everything 1.4 with TC 9.10

greatly appreciated

Posted: 2017-11-16, 18:54 UTC
by Horst.Epp
aabra1 wrote:can someone describe how to integrate Everything 1.4 into TC 9.10

someone was suggesting on voidtools.com/forum around 2009(i suppose it is outdated) to add the following to Everything.ini:

Code: Select all

open_folder_path_command=$exec("%COMMANDER_PATH%\TOTALCMD.EXE" /O /T /L="%1")
open_file_command=$exec("%COMMANDER_PATH%\TOTALCMD.EXE" /O /T /L="%1")
open_folder_command=$exec("%COMMANDER_PATH%\TOTALCMD.EXE" /O /T /L="%1")
then I saw this in the history document:
27/11/2016 Added: Everything: Support named instances (Everything.exe -instance "somename"): wincmd.ini [Configuration] UseEverythingInstance=somename (32/64)
I am hoping to be able to use the following portable with TC9.10:
Everything-1.4.1.877.x86.zip Portable x86 Multilingual 1198 KB
Someone might have done it already but I cannot find comprehensive and consistent instructions on how to use Everything 1.4 with TC 9.10

greatly appreciated
There is no context menu entry to configure in Everything for TC usage.
Install the actual Everything as a service and auto-start Everything.
Then you can select the Everything checkbox in TC search dialog and in options for Dir size calculation.

Posted: 2017-11-16, 19:52 UTC
by Ovg
2Horst.Epp
There is a context menu in Everything where anyone can configure settings for open files and folders, including with the help of TC :mrgreen:
http://rgho.st/7plqdXCzF

Posted: 2017-11-16, 22:55 UTC
by aabra1
thanks it works

I ended up configuring the following under Everything>Tools>Options>ContextMenu:

Code: Select all

Open(folders)=$exec("c:\_TC\TOTALCMD.EXE" /O /T /L="%1")
Open(files)=$exec("c:\_TC\TOTALCMD.EXE" /O /T /L="%1")
Open Path=$openpath("c:\_TC\TOTALCMD.EXE" /O /T /L="%1")
clearly it did not like %COMMANDER_PATH%
I had to use c:\_TC\ (TC installation folder)