About 4,210,000 results
Open links in new tab
  1. c++ - Are there any downsides to using UPX to compress a …

    Dec 10, 2008 · What's the downside to all of this packing/unpacking? Are there scenarios in which anyone would recommend NOT UPX-ing an executable (e.g. when writing a DLL, Windows …

  2. python - How do I use UPX with pyinstaller? - Stack Overflow

    Dec 14, 2017 · There might be a problem with UPX as it might not be downloaded so the first step you should do is download UPX over here UPX official then once downloaded extract it to a …

  3. python - Reducing size of pyinstaller exe - Stack Overflow

    Dec 7, 2017 · py -m venv .venv .venv\Scripts\activate # Linux/macOS python3 -m venv .venv source .venv/bin/activate Use UPX to Compress: UPX can compress your executable. Install …

  4. c# - what is UPX's best compression method - Stack Overflow

    Jan 20, 2012 · Even UPX is no exception. Still, my choice is UPX. Can anybody, please, suggest me what is the best possible compression / packing method available in UPX.? I am quite …

  5. Why doesn't UPX work for .NET executables? - Stack Overflow

    Mar 31, 2013 · I thought I covered that. UPX deals directly with unmanaged code. It does the decoding, so it works. It doesn't work for JIT-compiled applications because UPX isn't …

  6. How to detect what was the PE packer used on the given exe?

    Aug 13, 2009 · It's not a zip file, the program isn't a standard "self-extracting" archive, it's rather packed with some other PE packer, and ALSO an UPX (as I mentioned above, the UPX …

  7. Pyinstaller is not recognized as internal or external command

    Aug 30, 2017 · I am trying to use pyinstaller in cmd but I receive error: C:\Users\username>pyinstaller 'pyinstaller' is not recognized as an internal or external …

  8. UPX NotCompressibleException - Stack Overflow

    UPX cannot handle binaries under 40Kb. The best way to workaround this problem is to compile your binary in static mode, in order to get a bigger executable file. So, just try: gcc -static -o …

  9. Packing an exe + dll into one executable (not .NET)

    Jan 17, 2015 · UPX: does DLL compression but not multiple DLL + EXE packing FileJoiner: Almost got it. It can pack executable + anything into one exe but when opened, it will launch …

  10. Error when creating executable file with pyinstaller

    I had the same issue in the past and I found an option to exclude vcruntime140.dll from UPX process by adding --upx-exclude FILE to prevent a binary from being compressed when using …