About 1,390,000 results
Open links in new tab
  1. How do I find the location of an executable in Windows?

    According to the Stack Overflow answer at Is there an equivalent of 'which' on windows?, where.exe does this on Windows 7 and Windows Server 2003 and later: Example C:\> where …

  2. On Windows, what filename extensions denote an executable?

    Windows will also execute other files (for instance, screen savers have an extension of .scr and are executables); Windows will also allow execution of other file extensions, but the ones listed …

  3. Fully understanding how .exe file is executed - Stack Overflow

    Apr 15, 2020 · After the file headers, there are also section headers, which tell you which parts of the file are which section and what each section does (e.g. if it contains executable code). The …

  4. How can I make a Python script standalone executable to run …

    Jan 24, 2017 · I'm building a Python application and don't want to force my clients to install Python and modules. So, is there a way to compile a Python script to be a standalone executable?

  5. How can I make a script executable in windows - Stack Overflow

    Aug 28, 2018 · How can I make a script executable in windows. just like what the chmod +x command does in linux. I have browsed but got no definite solution. Thanks for helping out.

  6. How can I run a Windows executable from WSL (Ubuntu) Bash

    74 Along with Windows 10 Anniversary update for summer 2016, came the possibility to run ubuntu binaries inside the new Windows Subsystem for Linux (WSL), a "lightweight" …

  7. windows - Difference between a stand-alone executable file, and …

    Dec 7, 2013 · I have noticed on Windows, at least, that you can download a direct, statically-linked executable file and launch it directly, or write your own program and executable it (even …

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

    Sep 8, 2008 · This question already has answers here: Create a directly-executable cross-platform GUI app using Python (14 answers) How to deploy Python to Windows users? (4 …

  9. Windows: Command line to read version info of an executable file ...

    44 Does Windows have an executable that I can run in the command shell which returns the version number of an executable (.exe) file? I see a lot of questions that show how to do it …

  10. windows - what's in a .exe file? - Stack Overflow

    An EXE file is really a type of file known as a Portable Executable. It contains binary data, which can be read by the processor and executed (essentially x86 instructions.) There's also a lot of …