1.

How Can You Call The External Exe Files?

Answer»

using cfexecute tag, we can call the external exe files.Below example executes the Windows NT version of the netstat network monitoring program, and places its output in a file.

<cfexecute NAME = "C:WinNTSystem32netstat.exe"
arguments = "­e"
outputFile = "C:Tempoutput.txt"
TIMEOUT = "1">
</cfexecute>

using cfexecute tag, we can call the external exe files.Below example executes the Windows NT version of the netstat network monitoring program, and places its output in a file.

<cfexecute name = "C:WinNTSystem32netstat.exe"
arguments = "­e"
outputFile = "C:Tempoutput.txt"
timeout = "1">
</cfexecute>



Discussion

No Comment Found