Hi
We have Cold Fusion version 8.0 installed on one of our servers (Windows Server 2003). And we are trying to use <CFX_EXEC> tag to launch any application as a test from the server.
It works fine when we run from a local machine but fails to run when do from the server.
Here is the test code:
<span style="font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:bold">
Attempting to launch Notepad.exe... <br /><br />
</span>
<CFX_EXEC CMD="C:\\windows
notepad.exe" INTERACTIVE="Y" TIMEOUT=0 USER="ProcessAccount" PWD="Process Account Password" DOMAIN="domain.com">
<CFOUTPUT>
<span style="font-family:Verdana, Arial, Helvetica, sans-serif">
<CFIF #STATUS# EQ "ER">
<b>Status:</b> #STATUS#<br />
<b>Message:</b> #MSG#<br />
<b>Err No:</b> #ERRN#
<CFELSE>
Successful!
</CFIF> </span> </CFOUTPUT>
Is there anyway we can do that on the server to launch any application?
Thanks