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 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 > 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 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: Cannot run exe from asp.net Programming Web Development by Salem Congrats on getting going. > Even if i run the setup and ticked the option "add to path", the echo %PATH% command didnt seem to show what i expected. Yeah, this won't transform the PATH of any existing process. In increasing annoyance order, you may have to: 1. Start a new cmd window 2. Log out and log in again 3. Reboot … 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… .exe files not opening by double clicking in xp Hardware and Software Microsoft Windows by sanbio .exe files are not opening by double clicking in my xp sp2 anybody can help me? thanks in advance sankha Re: exe file Programming Computer Science by staneja EXE means executable file. We can save any file as exe and it will be executed also but whatever we have written inside it will be executed For example if you save a Blank notepad file as "abc.exe" , file will be created but it wont be performing any action because nothing is written in it Re: exe file problems Programming Computer Science by Rashakil Fol Exe files have to follow a certain format, and not every piece of machine code forms valid instructions. Yours was broken. You'd probably want to take some source code and compile it, if you want to create an exe. Re: EXE files Programming Software Development by Jx_Man -Exe files already in your folder project. YourProjectFolder\Bin\ExeFileName.exe Re: .exe Programming Software Development by Aia … one input file, is [code] gcc something.c -o something.exe [/code] But better is [code] gcc -std=c89 -Wall …something.c -o something.exe [/code] This is for windows, in linux the executables usually… :) [code] all: gcc -std=c89 -Wall something.c -o something.exe [/code] And then to compile, you only have to write… Exe Programming Software Development by narender_gandi Hi all, i have an exe which on click shows a form and takes the values. …i dont know exactly who have developed that exe and i do not have the code even. Now my…. is there any tool so that we can submit the exe and view the source code of it. can anybody help… Re: .exe Programming Software Development by TkTkorrovi … one input file, is [code] gcc something.c -o something.exe [/code] But better is [code] gcc -std=c89 -Wall… something.c -o something.exe [/code] This is for windows, in linux the executables usually…[code] all: gcc -std=c89 -Wall something.c -o something.exe [/code] And then to compile, you only have to write… .exe Programming Software Development by ghadahelal Hallo, i have a programm, it works without errors , the only problem i have is that the .exe file works for one line and then it closes from itself how can i change this problem. i must give this .exe file in 4 days !! thanks Re: .exe Programming Software Development by Ancient Dragon …[/quote] [quote], the only problem i have is that the .exe file works for one line and then it closes from… Re: .exe Programming Software Development by peter_budo … Java container/server Many people specially students insists on creating exe files, which is possible with some additional often expensive tools… [URL="http://www.excelsior-usa.com/articles/java-to-exe.html"]here[/URL]