Hopefully someone can tell me what this error means. I'm trying to use ASPExec on both an IIS 5 and IIS 6 implementation.
Whenever I run anything to do with ASPExec I get this error. I've already registered the DLL, is there something I'm forgetting?
Here is a sample snippet of code that is producing a problenm
Thanks
Josh
Whenever I run anything to do with ASPExec I get this error. I've already registered the DLL, is there something I'm forgetting?
Here is a sample snippet of code that is producing a problenm
Code:
<html>
<head><title>ASPExec Test (copy)</title><head>
<body>
<H3>ASPExec Copy Test</H3>
<%
Set Executor = Server.CreateObject("ASPExec.Execute")
Executor.Application = "cmd /c copy c:\autoexec.bak c:\josh"
Executor.Parameters = ""
strResult = Executor.ExecuteDosApp
Response.Write "<pre>" & strResult & "</pre>"
%>
</body>
</html>
Josh