Code: Select all
WinHide ahk_class TTOTAL_CMD
but double click TOTALCMD.exe worked.
So I can't open tc in everything with command
Code: Select all
$exec("D:\AA\TC\TOTALCMD64.EXE" /A /S /L "%1")
Moderators: Hacker, petermad, Stefan2, white
Code: Select all
WinHide ahk_class TTOTAL_CMD
Code: Select all
$exec("D:\AA\TC\TOTALCMD64.EXE" /A /S /L "%1")
TC64 is already open but hidden. You cannot open it again. Or you can, if you allow more than 1 copy of TC at a time, but that does not unhide the existing one, it starts a new one.and then double click TOTALCMD64.EXE can't open TC
That starts a new TC32 and leaves the running TC64 hidden.but double click TOTALCMD.exe worked
hide TC64, and then double click TOTALCMD.exe,Hacker wrote: 2020-10-07, 14:13 UTCThat starts a new TC32 and leaves the running TC64 hidden.but double click TOTALCMD.exe worked
Hide TC is my habit, hahaHorst.Epp wrote: 2020-10-07, 15:30 UTC I don't understand why you must hide TC.
But in this case you can write a small Autohotkey program which unhides and opens TC with the required parameters.
This program can you place into the Everything config.
There is no bug.
Code: Select all
$exec("D:\AA\TC\TOTALCMD64.EXE" /A /S /L "%1")
WinShow ahk_class TTOTAL_CMD