So you haven't tried an arguments array then. Try this..

<cfscript>
args = arraynew(1);
args[1] = "file";
args[2] = "url";
args[3] = "etc";
</cfscript>

<cfexecute name="c:\path\curl.exe" arguments="#args#"
timeout="30"></cfexecute>

Might not make a difference, but its worth a try.


-----Original Message-----
From: James Smith [mailto:[EMAIL PROTECTED] 
Sent: 20 October 2004 13:42
To: CF-Talk
Subject: RE: Running tasks in a console window?


I have tried...
<cfexecute name="c:\path\curl.exe --arguments ......... someurl"/>
<cfexecute name="c:\path\curl.exe" arguments="--arguments
.........someurl"/>

Both with and without timeout variables.  I have even tried...
<cfexecute name="c:\windows\system32\cmd.exe" arguments="/c
c:\path\curl.exe ..."/>

And all produce the same result.

--
Jay

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Sams Teach Yourself Regular Expressions in 10 Minutes  by Ben Forta 
http://www.houseoffusion.com/banners/view.cfm?bannerid=40

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:181991
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to