exe

Signing Windows application on Linux-based distros

六眼飞鱼酱① 提交于 2019-11-27 10:57:52
I have prepared an application and website where the customer can set several options for this application before he downloads it. Settings are stored in binary format on the end of the file (appended), then the edited file is sent to the end user. The problem is that the change of "contents" of the file will break the file signature - is there any chance to re-sign this changed file with any command line tools? I've tried to use Microsoft's SignTool, but it does not work properly on Linux. It's actually quite straight forward to do using Mono 's signtool; the tricky part (described in more

Difference between .dll and .exe?

孤街浪徒 提交于 2019-11-27 10:06:39
I want to know the exact difference between the dll and exe file. firstthumb EXE: It's a executable file When loading an executable, no export is called, but only the module entry point. When a system launches new executable, a new process is created The entry thread is called in context of main thread of that process. DLL: It's a Dynamic Link Library There are multiple exported symbols. The system loads a DLL into the context of an existing process. For More Details: http://www.c-sharpcorner.com/Interviews/Answer/Answers.aspxQuestionId=1431&MajorCategoryId=1&MinorCategoryId=1 http://wiki

How to run abc.exe using php

两盒软妹~` 提交于 2019-11-27 08:44:56
I want php file to run exe file and display the exe file content when user goes to a particular url. I am trying to run exe file using php function exec('abc.exe');. But I only see blank page. Anyone know how to solve it or how to run exe file from php file correctly? Many thanks in advance. To access the operating system with php you do the following $answer = shell_exec("abc.exe"); echo $answer."</br>"; The $answer string will contain the information that the abc.exe prints out or returns. You may need to format it using explode(). You can only run exe files if your php is runnning on a

Packing Node.js-Scripts + node.exe into a single Executable [duplicate]

时光怂恿深爱的人放手 提交于 2019-11-27 08:09:31
This question already has an answer here: How do I deploy Node.js applications as a single executable file? [duplicate] 8 answers Because Node.js now also available on Windows, I would like to share my scripts without including node.exe. Is it possible to pack the script (no more files) together with the node.exe into a single executable file? Nepoxx You absolutely can, and it's pretty easy with JXcore . Once you have JXcore installed on windows, all you have to do is run: jx package app.js "myAppName" -native This will produce a .exe file that you can distribute and can be executed without

EXE file is not working

岁酱吖の 提交于 2019-11-27 07:40:08
问题 I have a .msi (windows installer package) file into my project . I generated .exe file from .msi file successfully but whenever I try to open that .exe file or run as administrator it does nothing . How to solve this? Anything will help regarding this . Please help UPDATE Here is my code for .msi file components.wxs <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"> <?include Defines.wxi?>

Run *.exe file from inside JAR

守給你的承諾、 提交于 2019-11-27 07:19:02
问题 I have a huge JAR file, which I created with Maven Shade plugin. I run this with java -jar foo.jar , and my UI opens. Now I want to execute *.exe file, which is also in that JAR file, how can I do this? I tried putting the exe to my classpath and run it from there, but after trying I found out that classpath is actually the location, where my JAR is. Any suggestions? Found this thing here, but is this really the best solution? Seems like alot of work, I think I have different case here,

How do I bundle a JRE into an EXE for a Java Application? Launch4j says “runtime is missing or corrupted.”

谁都会走 提交于 2019-11-27 06:59:30
I am new to programming in Java but am generally familiar with how everything works. I would like to be able to put both a jar file and a jre into a windows executable(exe) so that when I distribute it, the client needn't have a JRE installed. What program should I use? I have launch4j and it seems to do exactly what I want but when I try to run the app, I get "This application was configured to use a bundled Java Runtime Environment but the runtime is missing or corrupted." I want my app to just be a runnable exe, not an installer. At the very least, can anyone show me how to correctly bundle

PHP is not recognized as an internal or external command in command prompt

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-27 06:31:25
I got the following error when I run a command with php C:\xampp\htdocs>php 'php' is not recognized as an internal or external command, operable program or batch file. I don't get any error when I run the command with php in following path: C:\xampp\php>php //do not got error here Why I get this error? 'php' is not recognized as an internal or external command, operable program or batch file. Anant Singh---Alive to Die Add C:\xampp\php to your PATH environment variable. Then close your command prompt and restart again. It is very important because if you do not restart your command prompt then

What does the EXE do in the Visual Studio setup project output

心不动则不痛 提交于 2019-11-27 05:28:29
问题 We are working on a winforms app in Visual Studio 2005 and the setup project we created output both an MSI and an EXE. We aren't sure what the EXE file is used for because we are able to install without the EXE. 回答1: It's a bootstrapper that checks to make sure that the .NET Framework is installed, before launching the MSI. It's pretty handy. I suggest using something like SFX Compiler to package the two together into one self-extracting .exe and then launch the extracted setup.exe. This way

How do I compile my Python 3 app to an .exe? [closed]

时光毁灭记忆、已成空白 提交于 2019-11-27 04:05:01
How do I convert my Python app to a .exe ? I made a program with tkinter and was wondering how to make it possible for others to use. I use Python 3.3. I searched for a bit but could not find anything. cx_Freeze does this but creates a folder with lots of dependencies. py2exe now does this and, with the --bundle-files 0 option, creates just one EXE, which is probably the best solution to your question. UPDATE: After encountering third-party modules that py2exe had trouble "finding", I've moved to pyinstaller as kotlet schabowy suggests below. Both have ample documentation and include .exes you