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).
Questions tagged [exe]
5454 questions
1
vote
0 answers
C#: Use large icon for exe
I have a multi-format .ico that scales up to 256x256 and looks beautiful when viewed in Windows Explorer.
But when added as an application icon to a .Net Framework .exe then it's 32x32 max in the compiled exe.
Any way to get the multi-size in…

Dee J. Doena
- 1,631
- 3
- 16
- 26
1
vote
0 answers
Dash to .exe utilizing auto-py-to-exe almost there
I'm working on a Dash app that I would like to be able to distribute via an executable. I have two files "app.py" and "run.py". The "app.py" file has an MS Access database feeding the input/output. "app.py" looks as follows..
import dash
…

William Justice
- 11
- 2
1
vote
0 answers
[Netbeans 8.2]error converting my .jar file using IKVM
I have an error in my Netbeans 8.2 that stated:
C:\Users\[username]\AppData\Local\NetBeans\Cache\8.2\executor-snippets\run.xml:53: Java returned: 1
BUILD FAILED (total time: 1 second)
and I think that that is the reason why I couldn't convert it to…

Kris
- 11
- 2
1
vote
1 answer
PyInstaller works for Linux on Windows, but I can't get it to work with Windows to create a .exe
I am trying to figure out how to make an executable for my scripts so that people around the office can use them for their needs (most won't have python installed).
I am running Windows 10.
I have been able to get pyinstaller to work on ubuntu on…

Jesse Therrien
- 55
- 7
1
vote
2 answers
How to make .exe file compress python
I have a question I make an application using python. now I'm trying to make it executable. and I did it with the help of this . Now I'm facing a problem the python file size is in KB about 2kb and when i make exe of it the size 5MB

Osama Billah
- 101
- 10
1
vote
1 answer
pyinstaller failed to execute script pyi rth pkgres
I have an exe file that I made with pyinstaller and when I try to run it it gives me this error:
ModuleNotFoundError: No module named 'pkg_resources.py2_warn' [50728]
Failed to execute script pyi_rth_pkgres
the python script contains a scheduler…

ophir
- 45
- 1
- 5
1
vote
1 answer
Is it possible to include third party app.exe file inside pyinstaller standalone executable?
I have a simple my_script.py for batch file processing. But it has dependency from third party windows executable app.exe file.
So, the question: is it possible to include app.exe inside standalone my_script.exe generated with pyinstaller?
Another…

Quanti Monati
- 769
- 1
- 11
- 35
1
vote
1 answer
How to build(gradle) .deb and .exe from java application developed with openJavaFx 11
I'm developing a javafx application using,
gradle
OpenJdk11
OpenJfx11
sqlite (It also stored inside main package as sqlite.db)
Now I need to build .deb file for ubuntu installation and .exe file for window installation
build.gradle here
plugins {
…

HiroDev
- 71
- 1
- 6
1
vote
1 answer
Do I need the .config file for proper functioning in WPF
In Visual Studio, when I build a WPF app, then in the output folder containing my program there's 3 files:
MyProgram.exe
MyProgram.exe.config <--
MyProgram.pdb
There's a .config file located in the following dir as…

symonxd
- 21
- 1
- 8
1
vote
2 answers
python multiprocessing can not control multiple long running console exe?
I am a newbie in Python. I recently tried to use Python script to call a console exe which is a process need long time. I will allow the exe being called as many times as the CPU can permit. And when the exe has finish its job. It should release the…

Mua
- 31
- 1
- 6
1
vote
2 answers
is there any way to change .exe file into .apk?
i made a python script with tkinter, python and i turned it into a program folder with .exe file that woks correctly using auto py to exe .
I m asking if there is a similar solution to turn this exe folder into an apk file and thanks
user13250708
1
vote
0 answers
Wix3 Open With dialog with period (.) not displaying correctly
When using the following definition for an Open With dialog

Peter Grainger
- 4,539
- 1
- 18
- 22
1
vote
1 answer
how to create several shortcuts at the same time for all .exe files in a directory using powershell
Hi I want to create several shortcuts at same time using powershel and something like this
Get-ChildItem -Path D:\something\ -Include *.exe -File -Recurse -ErrorAction SilentlyContinue
get the results and generate shortcuts(.lnk files) for all .exe…

Paola Analice
- 13
- 4
1
vote
0 answers
Python pyinstaller executable problem with image
I am converting the Python file to exe, but the images (icon, background etc.) in the project are not included in exe. How can I fix this?
(I would also like to mention that I have included the pictures in the project using PixMap in PyQT. If exe…

Bunyamin Can Dag
- 11
- 1
1
vote
0 answers
Is there a special way to run executables in Jenkins?
I have a super simple task I need Jenkins to do for me: Run the executable that was compiled, by Jenkins, after building.
Sounds simple.
However, no matter what I've tried in the past half a day will run the program, correctly. Currently, the…

FooBar
- 51
- 4