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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASPexec permissions denied

Status
Not open for further replies.

sirron

Programmer
Mar 11, 2004
139
0
0
US
I'm still having permissions issue

I've tried setting the IUSR account to the registered ASPEXEC.dll, but that did not make it work.

I also set the IUSR account to the folder and subfolders of the BAT file. Does anyone have any suggestions.

This is in WINDOWS 2003 server

Dim objExecutor
Dim sResult

Set objExecutor = Server.CreateObject("ASPExec.Execute")
objExecutor.Application = "cmd.exe"
objExecutor.Parameters = "/c c:\bat\test.bat"
objExecutor.ShowWindow = False

sResult = objExecutor.ExecuteWinApp
Response.Write "Result: " & sResult & "<p>"
%>
 
i would suggest contacting the vendor for support. *shrugs*

[thumbsup2]DreX
aKa - Robert
 
(shots in the dark)
try the IWAM account as well?
Throw group "everyone" on the DLL just to see if it will work.
 
I got part of the site to work.

But I'm having a problem once I go to the website it ask for a Username and Password to the DOMAIN or Network. I type my username and password. And it works.

But I don't want this to happen. I don't want to be prompt for a username and password.

It should go straight to the site without username and password.

How do I prevent the username and password?

I set up the Authentication to the website. IS there a special way to set this up?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top