The custom tool is implemented using "C:\WINDOWS\explorer.exe" as Command and "/select,{$ActivePath}" as parameters, like this:
This works fine as long as the folder to open is located on the local computer, but curiously, if it is located on a network share (and only in this case!), the "/select" part is replaced by "C:\select", so the command fails because "/select" is a command line switch, not a filename, and explorer.exe doesn't understand it. So it results in the following error message (sorry, I use French language on my computer):
(meaning "The access path C:\select does not exist or is not a folder").
The same problem does not exist in the same custom tool feature of Compare It!, however.
I checked the exact parameters passed by creating a command file named "explorer.bat" located in the same folder as "explorer.exe", containing the following lines:
Code: Select all
echo %*
pause
Edit: The above tests were made on Windows XP Professional SP3 (French edition), I just checked on Windows Vista, this doesn't work there either, but it results in a different behavior (seems to try opening Internet Explorer 9 instead).
Gingko