Re: Cannot run exe from asp.net Programming Web Development by Salem … annoyance order, you may have to: 1. Start a new cmd window 2. Log out and log in again 3. Reboot… Cannot run exe from asp.net Programming Web Development by lennyli …www.daniweb.com/programming/web-development/threads/386380/cannot-run-exe-files-in-asp-net-application but still lost in trying… will launch a webpage that runs a server side exe (eg, notepad.exe or ribbons.scr), while at the same time run…index.cshtml doesnt show a button. Also disappointingly the notepad.exe did not run even when i set it to have… Re: Cannot run exe from asp.net Programming Web Development by Neil_brown001 … for good reasons. Here's the breakdown: Running a .exe on the server You can technically make the server launch… being launched in a non-interactive session. Running a .exe on the client (user’s computer) This is completely… web browsers unless: The user downloads and runs the .exe themselves. Or, you create a special browser plugin or… Re: Cannot run exe from asp.net Programming Web Development by lennyli …reasons. Here's the breakdown: > > Running a .exe on the server > You can technically make the server…in a non-interactive session. > > Running a .exe on the client (user’s computer) > This is completely… unless: > > The user downloads and runs the .exe themselves. > > Or, you create a special browser … Re: Cannot run exe from asp.net Programming Web Development by Salem … will launch a webpage that runs a server side exe (eg, notepad.exe or ribbons.scr), while at the same time run… the same exe on the local client pc. So, if you'd stated… Re: Cannot run exe from asp.net Programming Web Development by pritaeas > while at the same time run the same exe on the local client pc. Not possible. Re: Cannot run exe from asp.net Programming Web Development by lennyli … the following code dont run and launch the exe I specify (eg, notepad.exe, or ribbons.scr)? <%@ Language="VBScript"… Re: Cannot run exe from asp.net Programming Web Development by pritaeas No, Javascript cannot run/start executables on the client machine. Re: Cannot run exe from asp.net Programming Web Development by rproffitt I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . You can get there. Re: Cannot run exe from asp.net Programming Web Development by pritaeas Are you sure IIS is configured to allow running external scripts? Re: Cannot run exe from asp.net Programming Web Development by lennyli > Are you sure IIS is configured to allow running external scripts? The document folder and asp file has security permission set to ALL rights for 'everyone'. In IIS, under handler mappings for .asp files, under request restriction/access, script was chosen (not execute) for feature permissions, all 'read' 'script' 'execute' are chosen Re: Cannot run exe from asp.net Programming Web Development by lennyli > I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. > > For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . > > You can … Re: Cannot run exe from asp.net Programming Web Development by john_111 Let me expand on what rproffitt said, by explaining why. If a webpage could run a program installed on another computer, the entire world wide web would be hacked into tiny pieces and cease to exist. No one would ever use the web, it would be so totally insecure. So web pages are prohibited from running programs on your computer. They can … Re: Cannot run exe from asp.net Programming Web Development by Reverend Jim >No, Javascript cannot run/start executables on the client machine. Technically correct but there are ways around it. For example, save a file in a special folder on the target computer, which has a folder watch on that folder. The watching task could then trigger a local task. Re: Cannot run exe from asp.net Programming Web Development by gediminas.bukauskas.7 Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets. Re: Cannot run exe from asp.net Programming Web Development by lennyli > Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets. Sure, I understand, but for my above new … Re: Cannot run exe from asp.net Programming Web Development by Salem > When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. So did it even give you `print("Waiting for a connection...")` ? Consider making your server main like this. if __name__ == "__main__": print('Server Begin') … Re: Cannot run exe from asp.net Programming Web Development by lennyli > > When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. > > So did it even give you `print("Waiting for a connection...")` ? > > Consider making your server main like this. > > if __name__ == "__main__": >… Re: Cannot run exe from asp.net Programming Web Development by lennyli I fixed the problem by ensuring the path is including python. Also on the server I must run pip install Thank you all All working now Re: Problem with MS Office shortcut bar Hardware and Software Microsoft Windows by asadalikhan … ensure it’s set to open with Internet Explorer (iexplore.exe) 4. If not, change it to IE. Also, try deleting… Re: Cmd.exe not working Hardware and Software Microsoft Windows by ProgrammersTalk how did you open your cmd.exe? run --> cmd Cmd.exe not working Hardware and Software Microsoft Windows by LiamPotter Hello, I am unable to open my cmd.exe; it simply closes itself after no more then a second … Cmd.exe Opening and Closing Multiple Times at Startup Hardware and Software Microsoft Windows by Stuugie …, at least 10 times upon startup. It looked like the cmd.exe window but I only saw a video of it happening… VB.net cmd.exe Programming Software Development by Xses420 … is send a debug command to cmd.exe Shell("cmd.exe /C debug") that will open up cmd.exe in debug mode now i… Re: Call cmd.exe on C++ program Programming Software Development by Stefano Mtangoo …Ancient Dragon;1142954]You sould completly replace cmd.exe with your own version of that …want to make GUI wrapper on top of cmd.exe I want to make something flexible but still… backend should remain as cmd.exe. Only a front end. so I was… for way to hook my GUI to cmd.exe sending commands typed to it and getting results… Call cmd.exe on C++ program Programming Software Development by Stefano Mtangoo … as google didnt help. I want to create awrapper for cmd.exe that is more comfortable in terms of user interface (I…). Right now I have no Idea how to hook to cmd.exe and get the results. I want to have my own… window for user to type commands but cmd.exe is the one to do the job. So how do… how can i run cmd.exe in vb.net ? Programming Software Development by samane Dear all , I 'm new in vb.net , I wanna use NLP Processor in my project , but it runs with cmd.exe , it means I should open cmd.exe and type this code for run it ." c:\nlp>type\nlp\.... " I have a big problem , I don't know how can i run cmd.exe in hide window? if you know plz tell me . thank so much . samane Re: how can i run cmd.exe in vb.net ? Programming Software Development by samane Thanks so much for your respond.I find how can i run cmd.exe but now my problem is how can i run this code"c:\nlp\type\nlp\examples\terxt|\nlp\bin\nlp.cmd show_tags " in cmd.exe ? MANY THANKS. Samane. actu Re: how can i run cmd.exe in vb.net ? Programming Software Development by dileepkumars1 try [COLOR="Green"]shell(cmd.exe)[/COLOR] or [COLOR="Red"]shell(c:\Windows\System32\cmd.exe, vbNormalFocus) ' ucan hide or maximise window )[/COLOR] Re: Call cmd.exe on C++ program Programming Software Development by Ancient Dragon You sould completly replace cmd.exe with your own version of that program. For example Microsoft has already done it with [URL="http://pauledlund.spaces.live.com/blog/cns!70265AE7CABD0249!380.entry"]PowerShell[/URL]. Another example [URL="http://www.computerhope.com/forum/index.php?topic=77629.0"]here[/URL]