|
|
Question : ASP Shell
|
|
Is there an ASP shell command?
|
Answer : ASP Shell
|
|
simple sample:
<% Dim wscObj, FileName, DOS Set wscObj = CreateObject("WScript.Shell")
FileName = """C:\Program Files\Prog.exe """ 'program location DOS = """ONE TWO""" 'command line parameters
wscObj.Run FileName & DOS
Set wscObj = Nothing %>
you double up quotes to handle long paths that contain spaces
|
|
|
|
|