Discussion related to "Everything" 1.5.
-
David.P
- Posts: 216
- Joined: Fri May 29, 2020 3:22 pm
Post
by David.P »
Hello All,
I have configured the Open Path command to open Dopus, specifically in the right lister of a dual pane view in Dopus.
This works on one PC, but on another PC, Windows Explorer opens as well as Dopus, and also showing that path.
What am I doing wrong?
image.png
Code: Select all
$openpath("%1")$exec("%programfiles%\GPSoftware\Directory Opus\dopusrt.exe" /acmd Go PATH="%1" OPENCONTAINER NEWTAB=findexisting OPENINRIGHT TOFRONT)
You do not have the required permissions to view the files attached to this post.
Last edited by NotNull on Fri Mar 21, 2025 8:38 pm, edited 2 times in total.
Reason: Added code tags ( </> )
-
NotNull
- Posts: 5961
- Joined: Wed May 24, 2017 9:22 pm
Post
by NotNull »
Remove the
$openpath("%1")
part from the command.
Now you have 2 commands: $openpath() and $exec(), where $openpath() opens Explorer and $exec() opens Dopus.
-
David.P
- Posts: 216
- Joined: Fri May 29, 2020 3:22 pm
Post
by David.P »
Worked perfectly, thank you very much!