• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

Using ASPExec.Execute

B

badkneecap

Guest
I'm trying to use "ASPExec.Execute" to run a dos program on my server. I've tried several different methods and just can't seem to get it to work. I believe it's because of a permissions problem. I have the following code:

Executor.Application = "cmd /c "
Executor.Parameters = "d:\...\createoutput.bat"
strResult = Executor.ExecuteDosApp
Response.Write "<pre>" & strResult & "</pre>"

I know the batch file works because I can run it if I terminal into the server and execute it manually. If I use the following:

Set server_shell = Server.CreateObject("wscript.shell")
server_shell.Run("cmd /c d:\...\createoutput.bat")

I get a permission denied. What permissions do I need to change to get this to work without compromising security?

- PR
 
Back
Top