Tagged Questions

EXE is a common filename extension for an executable file (a program) in Microsoft Windows and other operating systems (e.g. DOS, OpenVMS, Symbian, and OS/2).

learn more… | top users | synonyms

88
votes
9answers
24k views

How can I convert my Java program to an .exe file?

If I have a Java source file or class file (*.class). How can I convert it to an .exe file? I also need an installer for my program. Is there is an open source program that can do that?
20
votes
6answers
2k views

How can I make an EXE file from a Python program?

I've used several modules to make EXEs for Python, but I'm not sure if I'm doing it right. How should I go about this, and why? Please base your answers on personal experience, and provide ...
19
votes
12answers
7k views

Difference between .dll and .exe?

I want to know the exact difference between the dll and exe file.
17
votes
3answers
3k views

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

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 ...
15
votes
4answers
16k views

How to run exe in powershell with parameters with spaces and quotes

How do you run this command in powershell: C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User ...
15
votes
4answers
26k views

Java: export to an .jar file in eclipse

Im trying to export a program in eclipse to a .jar file. To my project in I have added some pictures and pdf. When im exporting to jar file, it seems that only the main has ben compiled and exported. ...
14
votes
4answers
1k views

what's in a .exe file?

So a .exe file is a file that can be executed by windows, but what exactly does it contain? Assembly language that's processor specific? Or some sort of intermediate statement that's recognized by ...
12
votes
5answers
563 views

Reduce exe file

Using Delphi (or in general any tools, if exist of course), is it possible to reduce size of an exe file, removing all code that not is used but that is present there? (for example, a function or ...
12
votes
2answers
6k views

Signing a Windows exe file

I have an exe file that I should like to sign so that Windows will not warn the end user about an app from an "unknown publisher". I am not a Windows developer, the app in question is a screensaver ...
10
votes
5answers
397 views

How to know if a “.exe” process was written with C++ or C#? [closed]

Possible Duplicate: How do I tell if a win32 application uses the .NET runtime There is a way to manually recognize if a specific ".exe" process was written with C++(unmanaged code) or with ...
10
votes
5answers
219 views

tiny exe to launch a java application

Some questions are like: How can I package my java app into an exe ? This is not what I am going to ask. I can launch my application by doing the following: java -jar myApp.jar That works ...
9
votes
2answers
341 views

Make exe from node.js app

I have a node app that I wrote, that I run as follows: node.exe app.js inputArg Is there some way I can package this into a .exe by itself? So I can just do something like this? App.exe inputArg I ...
9
votes
3answers
118 views

Is there a reason to create a .net DLL rather than EXE if file is used as a referenced assembly?

I noticed that I can add a reference not only to a DLL but also to an EXE in Visual Studio and access all classes in the EXE as it if were a DLL. Is there any reason to create a DLL or can I just as ...
8
votes
4answers
404 views

How can I determine which libraries are used in a Delphi program I don't have the source for?

I have a windows .exe file, but the source code for it is missing. The developer was not responsible and left our company. I think it was a delphi/pascal program. The developer used many libraries ...
8
votes
2answers
343 views

Delphi: .exe with built-in packages: 600kb, .exe + external BPLs: 6MB. Why is that?

if I compile .exe file in delphi with built-in packages, it generates about 600kb EXE file. However if I compile it with runtime packages, the sum of sizes (.exe + all required .BPLs) is about 6-8 MB ...
8
votes
6answers
11k views

How can I run another application within a panel of my C# program?

I've been reading lots on how to trigger an application from inside a C# program (Process.Start()), but I haven t been able to find any information on how to have this new application run within a ...
8
votes
5answers
1k views

Best free tool to build an exe from Java code? [closed]

Possible Duplicate: How can I convert my java program to an .exe file ? I've used JSmoothGen in the past, but recently we've seen a number of machines that refuse to run the .exes that it ...
7
votes
2answers
393 views

Is it possible to build exe on Vista and deploy on XP using py2exe

I have created some program using python on Windows Vista. But I want to deploy it on Windows XP. Is it necessary to make new build on windows XP? Or there is possibility to make build that will work ...
7
votes
6answers
10k views

Java: run as administrator

Is there a way in Java to ask the system to get control over administrator functionality. Of course without doing: Right click on the exe -> run as admin. What I want is that there comes a frame from ...
6
votes
9answers
196 views

Java to EXE good or bad idea?

I have been wondering for a long time about converting Java projects to EXE. The advantages relies in the faster deployment on Windows where the user simply double clicks the EXE and the application ...
6
votes
2answers
119 views

How to: Merge multiple assemblies into one

I consuming my servicestack using EXE project (startup task for azure application) in that i have copied following servicestack's dll & some Azure's dlls in to EXE project. When i build this ...
6
votes
1answer
109 views

creating a native executable using C#

What is a way I can a native EXE using C#, I want to compile a basic EXE which will run without the need for the .net framework. I've heard of ngen.exe can anyone give me examples of ngen.exe or any ...
6
votes
4answers
647 views

What are the differences between MSI and EXE installers, and which should I choose? [closed]

Possible Duplicate: What are the specific differences between .msi and setup.exe file? I am working on an installer for a new version of my project (C#). Previously, I've used Inno Setup ...
6
votes
7answers
692 views

How can I convert a JAR file to an EXE file?

I have created a JAR file and I want run it on a client. I have a couple of questions: How can I convert the JAR file to an EXE file? How can I encrypt the JAR file's contents? The jar file could be ...
6
votes
8answers
4k views

Merge two exe files into one programmatically

Hi Is there a way to merge two exe files into one, programmatically, so that running it would execute both older exe files together. I found some things on google about injecting code or dll files but ...
6
votes
6answers
3k views

How do I programatically get the version of a dll or exe?

I need to get the product version and file version for a dll or exe using Win32 native APIs in C or C++. I'm not looking for the Windows version, but the version numbers that you see by right-clicking ...
6
votes
7answers
8k views

How do I create an .exe for a Java program? [closed]

Possible Duplicate: How can I convert my java program to an .exe file ? I'd like to create a Windows .exe for a Java program. Previously, I've used JEXECreator for this, but it's not ...
5
votes
1answer
184 views

How to make a exe that is removed from the servers open files list when running (started from a share)

I need to make a exe that will be started from a Windows server share. As soon as the application is running it should disappear from the servers open files list. For example I have this simple ...
5
votes
2answers
184 views

create .exe from c# windows application

I have a created a visual studio 2010 project that creates a windows form - it references numerous other dll's. How can I wrap this up in to a single .exe file?
5
votes
5answers
477 views

How does Windows decide which icon format to display when showing an exe's icon in Windows Explorer?

How does Windows decide which icon format to display when showing an exe's icon in Windows Explorer? Problem: When we look at our icon file and exe with embedded icon file in various Windows Explorer ...
5
votes
5answers
386 views

Windows application installer frameworks

It's always seemed strange to me that downloadable applications would offer multiple types of installers. For example, sometimes you can choose either a .exe or a .msi Do certain types of installers ...
5
votes
13answers
2k views

Delphi EXE compressor?

At one point I had a nice little compression utility that smashed my Delphi compiled EXE's to a smaller download size, but now I can't find it. Any recommendations? Also, are there any downsides to ...
5
votes
6answers
597 views

Is there any work being done to create a C# compiler to produce native exe's?

Is there any work being done to create a C# compiler to produce native exe's? e.g. the output is a native exe and NOT a .NET assembly.
5
votes
4answers
1k views

How do you load an embedded icon from an exe file with PyWin32?

I have an exe file generated with py2exe. In the setup.py I specify an icon to be embedded in the exe: windows=[{'script': 'my_script.py','icon_resources': [(0, 'my_icon.ico')], ... I tried loading ...
4
votes
2answers
108 views

How I can convert fla to exe?

How I can convert .fla to .exe? I know about the built-in tools, but I'm interested in the utility.
4
votes
3answers
233 views

Windows 8 fat binary (exe for x86 & ARM)

Does anyone (here) know if Windows 8 will have a sort of fat exe that one can compile with VS2011 that will be supported on both ARM and x86 machines? I am guessing not, since you can't create fat ...
4
votes
1answer
453 views

How can I use the py2exe to change the python3.2's code to exe

I read py2exe can create a standalone program using a Python version before the 3. How, using Python 3.2, create e.g. "Hello world.exe", please??
4
votes
6answers
191 views

best approch among EXE and MSI

I have an application that needs to be delivered as a package. What are the best among EXE and MSI Installers, and why? Is there any open source tool to decompile the EXE or MSI?
4
votes
5answers
539 views

Method to determine if an exe file has been compressed with UPX

Is there a method to determine if an exe file has been compressed with UPX? The function to determine if an exe file has been compressed is excellent except I found a problem with the code. If the ...
4
votes
4answers
834 views

Does a C# console app run under current user account?

Before I open my big mouth and say it is the default way a console app works in c# I wanted to get a few of you folks opinion. Essentially, we have a c# console app the create a folder full of files ...
4
votes
4answers
7k views

Alternative to “Allow service to interact with desktop”?

I have a windows service (C#) installed on a server that launches every 10 minutes an executable file (C#) to process some images from one directory to another. No interaction is required with any ...
4
votes
3answers
1k views

how to set focus and launch the already running application on button click event in c#.net3.5?

i have been trying the code using mutex but im unable to open my exe after button click im successful in not making the multiple entries of the application on the taskbar at button click but my ...
4
votes
1answer
607 views

Start exe after msi install but using current user privileges

I am using Visual Studio 2008 to build an MSI install package. Within the install I have numerous custom actions. Within the OnAfterInstall custom action I attempt to start an exe which is deployed ...
4
votes
4answers
2k views

Debug c++ dll in C#

I have a .dll from c++ and i want to debug it in C#, but i don't know how to do. When i compiled the c++ project, Visual studio asked me to execute an ".exe" I supposed that i had to create a ...
4
votes
3answers
6k views

Add icon to existing EXE file from the command line

Is there a command line tool that can add an icon to an existing executable file? It should be able to set the icon as the file's "main" icon that is shown in Explorer. I don't have Visual Studio and ...
3
votes
1answer
43 views

Determine where MZ exe ends, and LE/LX/PE starts

I wonder what's the best way to determine where the MZ part of an EXE file ends, and the attached extended executable starts (can be PE/LE/LX/NE/COFF etc ...). I found this website: ...
3
votes
3answers
70 views

Need to stop the user click the exe for the second time, while it is already running

I have developed a exe of my Java application, and run it from a thumb drive. It will take some time to execute. But my end user thinks it is not running and clicks for the second time. I need to stop ...
3
votes
2answers
617 views

How to bundle a JRE with Launch4j?

I have Launch4J on my computer and it's a great program. One of its features I'm interested in is the ability to bundle a JRE in the general .EXE file. However, I can't find any documentation that ...
3
votes
1answer
196 views

Delphi - convert two exe's into one service?

I have got two different executables written in Delphi 6. I am in the process of converting these into windows services. I have already converted one and it's working great. Is it possible to ...
3
votes
3answers
133 views

Java URL problem

A webpage contains a link to an executable (i.e. If we click on the link, the browser will download the file on your local machine). Is there any way to achieve the same functionality with Java? ...

1 2 3 4 5 11