Need help using cmd to execute and display an application. I have tried Aspexec, but apparently in windows 2k sp5 it does not work, I can see the processes running in the background but can never get the actual application to display. I have allowed full access and made sure my services are enabled to interact with desktop. I've tried using Dynuexec but still know pop up of the actual application, at this point I'm just playing with a simple app like notepad. exe. What my application does is (and works) is takes a file then:
<%
Set oWSH= Server.CreateObject("WScri
pt.Shell")
oWSH.Run "c:\winnt\lame.exe -b 16 -m m c:\inetpub\wwwroot\wavfile
s\song.wav
c:\inetpub\wwwroot\mp3file
s\song.mp3
", 1, True
set oWSH = nothing
%>
The above script works great but does not show me the cmd window running the conversion. I see the process running in task manager.
Some other scripts I have tried
ASPEXEC
<%
Set Executor = Server.CreateObject("ASPEx
ec.Execute
")
Executor.Application = "notepad.exe"
Executor.Parameters = "c:\autoexec.bat"
Executor.ShowWindow = True
Response.Write "Attempting to execute " & Executor.Application & "<br>"
strResult = Executor.ExecuteWinApp
Response.Write "The result of this call was: " & strResult
%>
did not open the window even after changing my setting in the services and using the internet guest acount with full access. I've tried changing the levels of security but nothing.
I've also tried:
DYNU
<%
Set oExec = Server.CreateObject("Dynu.
Exec")
Response.Write(oExec.execu
te("ipconf
ig"))
oExec.execute("notepad.exe
")
Response.Write(oExec.execu
te("nslook
up -type=mx microsfot.com"))
Set oExec = nothing
%>
Nothing
I want to execute the cmd window and watch the executable run the conversion of my files. Any help would really be appreciated as I have been working on this since very early this morning. I'm running win2k sp5 and this is going to be client side with personal web server set up etc..
Start Free Trial