A few weeks ago, I was trying to launch a server side application from ASP and Mark Sreeves posted the following code, which works great:

Code:
Option Explicit

Public Function RunExe(ByVal Filename As String) As Long
On Error Resume Next

Shell Filename

'return the error if any
RunExe = Err.Number

End Function
How would I then kill this application? Does
Code:
kill Filename
exist? If not, is there a better way?

Thanks!
dvst8