Asp Command Line
i have a command line which works on my local pc ive loaded the video program on the server and am also able to enter teh command line via that locally but i am unable to get the line to work in the asp command line is this correct
<%
Dim oShell, sCommand
sCommand = "videoconverter.exe C:\test1.avi /0 /C:\out"
Set oShell = Server.CreateObject("WScript.Shell")
oShell.Run sCommand,0, True
Set oShell = Nothing
%>
|