Using Hoekey 1.16 it does run shortcuts (links). e.g. in my hoekey.ini
file I have:
^@z=Run|"C:\Documents and Settings\MyNick\Application Data\Microsoft
\Internet Explorer\NewToolBar\Base\zTree.lnk"||2 ; <CTRL><ALT>-
Z zTree
and it launches the shortcut for me whenever I press ctrl-alt-z.
Regarding parameters, this is what worked for me note the quotes &
double-dashes
^@y=Run|"echo2.exe" --version ||2 ; <CTRL><ALT>-
Y Test
as well as
^@y=Run|"echo2.exe" "--version"||2 ; <CTRL><ALT>-
Y Test
so double-dashes are supported fine and any quoting of parms done
should keep the command and the parms in *separate* quoted blocks.
Have fun!