36
votes
7answers
5k views
How can I convert my java program to an .exe file ?
If I have a java 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?
11
votes
4answers
446 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 …
10
votes
3answers
837 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 …
8
votes
6answers
477 views
Best free tool to build an exe from Java code?
I've used JSmoothGen in the past, but recently we've seen a number of machines that refuse to run the .exes that it generates. It also seems not to be actively maintained so heavily any more.
Are …
7
votes
2answers
238 views
Delphi: .exe with built-in packages: 600kb, .exe + external BPLs: 6MB. Why is that?
Hi,
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
votes
2answers
968 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 …
6
votes
4answers
529 views
What is the best way to make an .exe file from a python program
I've used several modules to make .exe's for python which options/library is best? It has been some tome since i've done this and I'm curious if there are any new options etc.
5
votes
7answers
743 views
Create .exe for Java program
Hi,
I'd like to create a Windows .exe for a Java program. Previously, I've used JEXECreator for this, but it's not entirely satisfactory because:
The executable sometimes work on the machine on …
4
votes
4answers
611 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 …
3
votes
2answers
64 views
Python 2.6: reading data from a Windows Console application. (os.system?)
I have a Windows console application that returns some text. I want to read that text in a Python script. I have tried reading it by using os.system, but it is not working properly.
import os
foo = …
3
votes
3answers
149 views
Creating portable (non-installing) windows applications in C#
I have a .net 3.5 application and i'd like to make it portable.
It's simple and runs perfectly, i've sent the .EXE + .DLL's to some friends and it works as intended when running the exe with the …
3
votes
9answers
1k views
Difference between .dll and .exe ?
I want to know the exact difference between the dll and exe file.
3
votes
7answers
249 views
Can my software which I made using Java be transformed to .exe software?
Without learning new programing languages, can we using Java get .exe (executable windows file) software directly? And is there away to make .jar (Java ARchive) software transform to.exe (executable …
3
votes
2answers
58 views
exe to service
I have exe file. i want run it as windows service.
I am new to windows services.can anybody help me?
Thanks
Suneetha.
3
votes
6answers
465 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 …
