About 2,210,000 results
Open links in new tab
  1. How can I find out if an .EXE has Command-Line Options?

    Jan 15, 2012 · Suppose you have an .EXE and you want to check if it has Command-Line Options. How can one know if the .EXE has this ability. In my case I know that Nir Sofers …

  2. Difference between .com, .exe, and .bat? - Stack Overflow

    Jan 22, 2010 · An .EXE (short for "executable") file is a binary file that contains much more complex executable binary code. A .COM file was a DOS executable and nowadays its same …

  3. Is it possible to "decompile" a Windows .exe? Or at least view the ...

    Nov 8, 2008 · A friend of mine downloaded some malware from Facebook, and I'm curious to see what it does without infecting myself. I know that you can't really decompile an .exe, but can I …

  4. How to convert exe back to Python script - Stack Overflow

    python pyinstxtractor.py yourFileName.exe This will extract .exe and create a folder named yourFileName.exe_extracted. Inside the yourFileName.exe_extracted folder, find the file …

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

    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 …

  6. visual studio - Where is nuget.exe? - Stack Overflow

    Sep 22, 2017 · I'm using Visual Studo 2015 and I have Package Manager Console where I can run like PM> Install-Package Newtonsoft.Json Visual Studio seems to come with nuget, but …

  7. Compile to a stand-alone executable (.exe) in Visual Studio

    how can I make a stand-alone exe in Visual Studio. Its just a simple Console application that I think users would not like to install a tiny Console application. I compiled a simple cpp file using ...

  8. Create Windows service from executable - Stack Overflow

    Aug 27, 2010 · Is there any quick way to, given an executable file, create a Windows service that, when started, launches it?

  9. c# - get path for my .exe - Stack Overflow

    May 25, 2014 · how can I get my .exe path because if I copy my .exe I can get my new path ?

  10. Is it possible to pass arguments to a python made exe at runtime?

    I packaged it with pyinstaller so that double clicking on the exe creates a new folder and places a text file with "hello world" inside of it. Easy peasy. Then I started wondering about main(). This …