* Sorry if this is the wrong forum--would appreciate the help though... *
I created an EXE that will be stored at a shared location on my company's intranet. I want to add a hyperlink to HTML e-mails for employees to run this EXE. However, the EXE needs a pipe-delimited command line parameter and I can't seem to get that working in the URL. Also, there could be a space in the command line parameter.
To run the program from a command line I would use the following:
This is what I tried in the HTML e-mail and it wouldn't work:
Thanks.
I created an EXE that will be stored at a shared location on my company's intranet. I want to add a hyperlink to HTML e-mails for employees to run this EXE. However, the EXE needs a pipe-delimited command line parameter and I can't seem to get that working in the URL. Also, there could be a space in the command line parameter.
To run the program from a command line I would use the following:
Code:
\\SERVER1\MyEXE.exe Param1|Param2|[b]Param3 MightHaveASpace[/b]
This is what I tried in the HTML e-mail and it wouldn't work:
Code:
...
<A href="file://\\SERVER1\MyEXE.exe?Param1|Param2|[b]Param3 MightHaveASpace[/b]>Run MyEXE</A>
...