Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error: Could not create process

Status
Not open for further replies.

JoshFink

IS-IT--Management
Mar 6, 2003
50
US
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

Code:
<html>
<head><title>ASPExec Test (copy)</title><head>
<body>
<H3>ASPExec Copy Test</H3>

<%
  Set Executor = Server.CreateObject(&quot;ASPExec.Execute&quot;)
  Executor.Application = &quot;cmd /c copy c:\autoexec.bak c:\josh&quot;
  Executor.Parameters = &quot;&quot;
  strResult = Executor.ExecuteDosApp
  Response.Write &quot;<pre>&quot; & strResult & &quot;</pre>&quot;
%>

</body>
</html>
Thanks

Josh
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top