How to execute a bat file from a classic asp page on the server

17,330

Assuming you understand the security implications of doing this, the code is as simple as:

set wshell = CreateObject("WScript.Shell") 
wshell.run "c:\path\to\file.bat" 
set wshell = nothing

I just ran this on a virtual instance without giving any special permissions to IUSR_* and it ran an xcopy without error or interference.

Another issue you will face is when your BAT file throws a prompt or wants to open some kind of dialog. It's really difficult to handle output, so make sure your BAT file runs without error before looking at further issues with the script.

Whether this code works in your environment is a matter of your security settings.

Share:
17,330

Related videos on Youtube

Vamsi
Author by

Vamsi

A .net developer with C#.net and sql server as main areas of interest

Updated on June 04, 2022

Comments

  • Vamsi
    Vamsi almost 2 years

    I have a simple bat file that runs an access macro when executed, i need to know how to execute this bat file from a asp page, i have given all the permissions to the iusr_machinename for that particular folder containing the script file and the asp file.

    Thank you

    Note: I don't want to run anything on the client system, i just want to run a bat file on the same system the asp application is running

Related