I downloaded the code and dll for ASPExec. I ran the code below and the application is running in the processes of the task manager. How do you kill the process after it is finished running from within your ASP page?
Code:
Set Executor = Server.CreateObject("ASPExec.Execute")
Executor.Application = "notepad.exe"
Executor.Parameters = "c:\autoexec.bat"
Executor.ShowWindow = True
Response.Write "Attempting to execute " & Executor.Application & "<br>"
strResult = Executor.ExecuteWinApp
Response.Write "The result of this call was: " & strResult