• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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