When I try to set up one particular application (xplorer2_64.exe) to launch from the IDE tools the application window (I think) flashes briefly and closes. It behaves the same whether the Wait status on the Configure Tools dialog is set to Wait, NoWait or Auto.
The application folder and file name are correct, since I can launch the application using the following test clause:
I have installed the mentioned explorer and I experience the same thing as you do. And it is not obvious why it behaves like that. The tool seems to run but it just seems to close again.
There is a simple workaround though. Create a cmd file somewhere with this contents:
And then configure that script as a tool instead. If you supply the argument $(file:p) then the explorer will open in the directory of the current file.
Also notice that tools always "run on a current file" and they will not run at all if no file is current. I.e. the tool will only run if:
C:\Program Files\zabkat\xplorer2\xplorer2_64.exe %* in the CMD file works if unquoted.
If it is quoted then xplorer2_64.exe does not handle the command line parameters.
Other applications may interact differently with CMD files with respect to quoting.