Nope! Do you have any documentation you can point me to?
I have a vbs file that populates the menu items and then they do stuff like this
button1.ExecuteMethod = "LaunchViaFinder"
Sub LaunchViaFinder(nID)
set WshShell = CreateObject("WScript.Shell")
WshShell.Run "\\some\network\location\ViaFinder"
set WshShell = nothing
End Sub
Sounds like I need to replace my sub command with what you are talking about. I did confirm that if start typing "run command" my code will execute from there correctly as well. So yeah, it doesn't know the environment.