I'm still have this problem with permissions when using ASPEXEC.
I'm running windows server 2003 with IIS. The server is on our domainor network. I set the permissions on the each folder to IUSR_Machine. I also set the permissions on the IIS.
I uncheck the Anonymous access then it asks for a password and username for authenication to the domain when I go to that page. I input my username and password to the domain and it works, but I do not want to do this. I don't want to input username and password
If I check Anonymous back on then the ASPEXEC code does not work.
Does anyone know how the permission need to be set on the server and IIS
or is there other code that can get me arounf this?
This is the code I have.
Dim objExecutor
Dim sResult
Set objExecutor = Server.CreateObject("ASPExec.Execute")
objExecutor.Application = "cmd.exe"
objExecutor.Parameters = "/c c:\Inetpub\
objExecutor.ShowWindow = False
sResult = objExecutor.ExecuteWinApp
Response.Write "Result: " & sResult & "<p>"
%>
I'm running windows server 2003 with IIS. The server is on our domainor network. I set the permissions on the each folder to IUSR_Machine. I also set the permissions on the IIS.
I uncheck the Anonymous access then it asks for a password and username for authenication to the domain when I go to that page. I input my username and password to the domain and it works, but I do not want to do this. I don't want to input username and password
If I check Anonymous back on then the ASPEXEC code does not work.
Does anyone know how the permission need to be set on the server and IIS
or is there other code that can get me arounf this?
This is the code I have.
Dim objExecutor
Dim sResult
Set objExecutor = Server.CreateObject("ASPExec.Execute")
objExecutor.Application = "cmd.exe"
objExecutor.Parameters = "/c c:\Inetpub\
objExecutor.ShowWindow = False
sResult = objExecutor.ExecuteWinApp
Response.Write "Result: " & sResult & "<p>"
%>