active questions tagged exe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T13:47:35Zhttp://stackoverflow.com/feeds/tag/exehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1873231/creating-portable-non-installing-windows-applications2Creating portable (non-installing) windows applicationsMarceloRamires2009-12-09T11:19:25Z2009-12-11T13:16:12Z
<p>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 dll's and the .ICO (that i have used in it) along in the same folder.</p>
<p>What i want is simple: creating a single EXE file that cares the dll's, image and whatever-i-want along with it without being a setup, and requiring no installation. (a.k.a portable)</p>
<p>I may consider migrating it to .net 2.0 if needed, i don't use any 3.5-only functionality, in fact, i'm not really sure why i'm using 3.5 (i'm new at programming anyhow)</p>
<p>I'd like any tips, links, or an explanation on how to do it, because it's really annoying sending .rar's to people and telling them to extract and run the .exe among all "weird files" (not everyone has extension display in folders, so it's a nightmare)</p>
<p>(I have searched in StackOverflow, and haven't found any questions that answer what i'm about to ask, the only one that i found to be like it ended up in a discussion of framework availability in windows machines, language choosing and no real answers.)</p>
http://stackoverflow.com/questions/1886569/how-to-create-a-setup-exe-wrapper-for-an-msi-file-using-nsis0how to create a SETUP.EXE wrapper for an MSI file using NSISunknown (google)2009-12-11T08:13:59Z2009-12-11T08:35:51Z
<p>Hello,</p>
<p>I want to wrap a existing msi installer file into NSIS installer executable. Because there is not any option to change the icon of the msi file. I just want to customize the icon of the output setup.exe. Along with this I would also want to make sure that NSIS does not add any extra user interface into my installer. Have anybody an idea to do this ? Thanks in advance.</p>
<p>Regards,
Sanjay Rao</p>
http://stackoverflow.com/questions/1885776/python-2-6-reading-data-from-a-windows-console-application-os-system3Python 2.6: reading data from a Windows Console application. (os.system?)Jeremy2009-12-11T04:24:56Z2009-12-11T04:57:40Z
<p>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. </p>
<pre><code>import os
foo = os.system('test.exe')
</code></pre>
<p>Assuming that test.exe returns "bar", I want the variable foo to be set to "bar". But what happens is, it prints "bar" on the console and the variable foo is set to 0. </p>
<p>What do I need to do to get the behavior I want?</p>
http://stackoverflow.com/questions/1882043/howto-add-aggregate-net-com-interop-to-an-atl-exe-server0HOWTO add aggregate .NET COM Interop to an ATL EXE Server??David2009-12-10T16:07:49Z2009-12-10T16:07:49Z
<p>Hello,</p>
<p>I would like to know how one can add a .NET C# COM object (created using the COM Interop facility of .NET) to a Visual Studio 2008 ATL EXE Server. Basically, I am trying to create an out of process Automation server to hold my C# COM object to allow it to act as a Singleton server for many clients. I think all I need to do is add the proper entries to the ATL EXE Server's IDL file? Does this sound right? Would anybody also have any idea how to actually instantiate my C# COM object then? I am guessing I need to redefine its GUID otherwise it would just instantiate the C# one right away? Thanks for any help.</p>
<p>-David</p>
<p>For Example:
.</p>
<pre><code>import "oaidl.idl";
import "ocidl.idl";
[
uuid(A9F9E81F-D5FE-4718-8078-E8378CFB3D3C),
version(1.0),
helpstring("Libreria dei tipi SSOLoginDLLServer 1.0")
]
library SSOLoginDLLServerLib
{
importlib("stdole2.tlb");
import "SSOLoginDLL.tlb"; <-- Reference included to my C# project which creates the TLB
[
uuid(A8FD5BC5-3B8D-4828-B9CB-6496A7A6D9B9)
]
coclass CSSOLogin
{
[default] interface ISSOLogin;
[default, source] dispinterface ISSOLoginEvents;
};
};
</code></pre>
http://stackoverflow.com/questions/516399/create-exe-for-java-program5Create .exe for Java programDon2009-02-05T15:34:53Z2009-12-10T05:47:02Z
<p>Hi,</p>
<p>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:</p>
<ul>
<li>The executable sometimes work on the machine on which it was created but not on others</li>
<li>The program is comercial. If you use the trial version it adds a nag screen to your application.</li>
</ul>
<p>I don't need the generated .exe to work if Java is not installed on the target machine (in fact, I think this is impossible).</p>
<p>Any recommendations?</p>
<p>Cheers,
Donal</p>
http://stackoverflow.com/questions/1830401/how-to-deploy-c-code-to-a-server-how-to-run-an-exe-on-a-server0How to deploy C# code to a server? How to run an exe on a server?peter2009-12-02T03:02:18Z2009-12-10T03:20:05Z
<p>Th short story is:
I have a Godaddy shared Windows server account and I have some C# code on my computer that runs perfect locally. I want to run this code on the server as an exe file. Is this possible? I do not believe I have command prompt or remote desktop access to my shared space.</p>
<p>More details:
The end goal is to have a website who enters data and manipulates data in a SQL database. Both the website and database are up and running. Next, I want to have the above program running in the background in order to send emails based on the information in this database.</p>
<p>It seems that this is not very common, or a very backwards way of thinking about it as I cannot find much relevant help on this topic, any guidance would be great!</p>
http://stackoverflow.com/questions/1865631/c-loading-an-exe-as-a-dll-local-vftable-problem2C++: Loading an EXE as a DLL, local vftable problemshoosh2009-12-08T08:55:01Z2009-12-08T11:02:21Z
<p>Ok, so this one is abit long to explain so bare with me..</p>
<p>I have an exe named test.exe which is usually used as a stand alone application. I want to use this exe as a module (a dll) inside another application, app.exe.</p>
<p>The code in test.exe does something really simple like:</p>
<pre><code>void doTest()
{
MyClass *inst = new MyClass();
inst->someMethod();
}
</code></pre>
<p>Where <code>someMethod()</code> is virtual and MyClass has a virtual d'tor.<br>
<code>doTest()</code> is exported from test.exe and thus a lib called test.lib is created<br>
app.exe is linked with this lib to statically load test.exe when it starts.</p>
<p>When I'm running test.exe stand-alone it runs just fine but when I'm running it loaded from within app.exe it crashes.<br>
Stepping into the code with the debugger revealed that the crash is in the call to the virtual method. It turns out that the vftable somehow goes bad. </p>
<p>After some investigations it turns out that when the code inside the constructor of MyClass is running , the vftable is one thing but when the call to <code>new</code> returns it is replace with something else called a "local vftable". I found <a href="http://groups.google.com/group/microsoft.public.vc.language/msg/55cdcefeaf770212" rel="nofollow">this obscure discussion about why this is</a>. </p>
<p>After about a day of debugging it occurred to me that the pointers in this "local vftable" are the same in both cases, when test.exe is stand alone and whenit is loaded as a module. This can't be right because test.exe is loaded into a different address...<br>
To test this theory I changed the loading address in the linker options to the one where test.exe is loaded when it is in app.exe and now, lo and behold, everything works.</p>
<p>Obviously, this is not a permanent solution because next time this randomly selected address may be occupied and the same problem will occur again.</p>
<p>So my question: Why is this "local vftable" tied to the static loading address of the exe? is loading an exe as a module a bad thing? why does the exe assume it is loaded to its static address?</p>
<p>Just for context: this is all done with MSVC 2008, Windows XP x64.</p>
http://stackoverflow.com/questions/888666/scripting-language-that-can-produce-a-small-independent-windows-exe1Scripting language that can produce a small, independent, Windows EXE?Justin Love2009-05-20T15:34:49Z2009-12-06T03:16:01Z
<p>I'd like to do some light data processing - a little binary data manipulation followed by conversion to text serialization. The result is written to a file, and processed by an external program (run by my program). The data processing is more than I'd care to consider doing in batch files.</p>
<p>I'd prefer to use a scripting language, but not have to install the language first. The target computers are mostly older Windows boxes, which are disconnected from the network (no updates, such as PowerShell)</p>
<p>I'm not familiar with the various language's tools for creating EXE files. Which ones have solutions that work well and don't produce huge files? (i.e., whole interpreter package plus my script.)</p>
http://stackoverflow.com/questions/1837248/creating-single-exe-file-for-project-using-net-and-another-external-library0Creating single EXE file for project using .Net and another external libraryshawnjan2009-12-03T02:19:58Z2009-12-04T03:27:00Z
<p>I have an email client created for class that we need to run as a single EXE. It is made with C++ .NET, and the external POCO library, which has a ton of DLL files... What would be the best way to make this happen? </p>
<p>I was looking on some similarly asked questions, and some people recommended tools such as <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=22914587-B4AD-4EAE-87CF-B14AE6A939B0&displaylang=en" rel="nofollow">ILMerge</a> and Ezirez, but the question only asked for making a single EXE file for .NET, but I want it for both .NET and a 3rd party external POCO library.</p>
http://stackoverflow.com/questions/1817723/how-to-use-java-jar-in-c-c0how to use java jar in c/c++?unknown (google)2009-11-30T03:35:53Z2009-11-30T03:57:35Z
<p>i am a new developer of java swing. i want to pack the GUI program. With the help of neatbeans, i get a file of java jar. But i want to convert the jar to exe file, although i know exe4j, but i need the exe file include the jar and other files.
Maybe using jar in c/c++ is a solution ?</p>
http://stackoverflow.com/questions/1791511/run-exe-from-client-side-2Run EXE FROM CLIENT SIDEatromgame2009-11-24T17:09:51Z2009-11-24T18:23:28Z
<p>Hi I need run an exe file from client side.</p>
<p>The Exe file exist in my C:\ Directory. I need run this exe file from my WEB site.</p>
<p>How Can I Do This?</p>
http://stackoverflow.com/questions/1787915/how-to-prevent-fileiopermissionexceptionand-others-when-run-net-application-fr1How to prevent FileIOPermissionException(and others) when run .NET application from network drive.Dennis Cheung2009-11-24T05:03:32Z2009-11-24T05:03:32Z
<p>My C# application (.NET 3.5 SP1) works very well when if execeuted from local drive.</p>
<p>However, if I run it from a network drive, it execute (IT IS .NET 3.5 SP1), but failed to read a file located on the same network drive, during <strong>File.ReadAllText</strong>.</p>
<p>If it matter, the folder structure is like the following</p>
<pre><code>\\server\myshare\ABC\app.exe
\\server\myshare\DEF\xxx.txt
</code></pre>
<p>I guess this is some security feature applied by .NET, they remove the "execution" limit since SP1 but the rights is not as exactly as a local application, still.</p>
<p>I've search around but I cannot find what's happening and what the limits are if you run it remotely.</p>
<p>It is a CONSOLE APPLICATION with command line argument, if it matter.</p>
http://stackoverflow.com/questions/1773428/need-help-writing-hexadecimals-to-an-exe-file-1need help writing hexadecimals to an exe filejfmherokiller2009-11-20T21:45:12Z2009-11-20T22:01:13Z
<p>can somone tell me how to write these hexadecimals to an exe file while still having it exec</p>
<p><hr></p>
<pre><code>4D 5A 50 00 02 00 00 00 04 00 0F 00 FF FF 00 00 B8 00 00 00 00 00 00
00 40 00 1A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 BA 10 00 0E 1F
B4 09 CD 21 B8 01 4C CD 21 90 90 54 68 69 73 20 70 72 6F 67 72 61 6D
20 6D 75 73 74 20 62 65 20 72 75 6E 20 75 6E 64 65 72 20 57 69 6E 33
32 0D 0A 24 37 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
// Removed approximately 400 similar lines from the original posting.
// (no point to be so verbose...)
40 FC C3 E8 F3 FF FF FF 48 C3 90 55 8B EC FF 75 08 E8 51 FB FF FF 5D
C2 04 00 90 E9 3B F9 FF FF C3 8B C0 E8 9B 01 00 00 C3 8B C0 55 8B EC
83 C4 E0 53 56 57 89 4D F8 8B F2 89 45 FC 8B 5D FC 8B 1B 8B 45 08 8B
38 85 FF 7F 1A 85 FF 7D 07 B0 04 E8 DE E0 FF FF 8B 45 FC 8B D6 E8 C4
FF FF FF E9 4A 01 00 00 33 C0 89 45 F0 85 DB 74 0B 83 EB 04 8B 03 89
45 F0 83 EB 04 33 C0 8A 46 01 01 C6 8B C6 8B 50 02 89 55 E8 8B 5
</code></pre>
http://stackoverflow.com/questions/1762000/use-ssl-with-delphi-yet-still-having-a-single-exe2Use SSL with Delphi yet still having a single exeplainth2009-11-19T09:29:16Z2009-11-20T11:12:23Z
<p>Hi,</p>
<p>We use Indy and we need SSL eMail support in our app., however we need to have our application in a single .Exe. </p>
<p>We know that the default Indy handler requires to have the dlls in the path. Extracting the Dlls from one of the EXE's resources would be the last resort.</p>
<p>Any better ideas?</p>
http://stackoverflow.com/questions/1714154/load-and-run-an-exe-file-after-a-website-loaded1Load and run an EXE file after a website loaded Momeks2009-11-11T09:51:28Z2009-11-11T13:24:24Z
<p>Is there a way to load and run an EXE file on the client side, after a webpage has been loaded ? [with java script or HTML ]</p>
http://stackoverflow.com/questions/1701674/windows-executable-to-run-java-application-deleted-by-anti-virus-scanner2Windows Executable to run Java application deleted by anti virus scannerWouter Lievens2009-11-09T15:16:11Z2009-11-09T20:51:41Z
<p>I built a Java application that is delivered on USB sticks. To ensure compatibility, I ship an appropriate JVM on the sticks. I made an EXE that simply invokes this JVM with the application jar.</p>
<p>Now the problem: some virus scanners act aggressively and just remove the executable!</p>
<p>I tried an exe made with a "Batch file to Executable" tool and one written myself in C (invoking ShellExecute); both versions are detected and eliminated by Norton SONAR but I can imagine other virus scanners might react similarly.</p>
<p>I initially opted for a windows shortcut but these don't seem to support relative paths. A batch file is not acceptable either since I don't want the command console to be shown.</p>
http://stackoverflow.com/questions/1673967/how-to-run-exe-in-powershell-with-parameters-with-spaces-and-quotes2How to run exe in powershell with parameters with spaces and quotesVans2009-11-04T14:10:04Z2009-11-07T18:10:32Z
<p>How do you run this command in powershell:</p>
<p>C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User ID=sa;Pwd=sapass!;Database=mydb;" -dest:dbfullsql="Data Source=.\mydestsource;Integrated Security=false;User ID=sa;Pwd=sapass!;Database=mydb;",computername=10.10.10.10,username=administrator,password=adminpass"</p>
http://stackoverflow.com/questions/1135809/encryption-for-executable0Encryption for ExecutableFarooq2009-07-16T06:43:09Z2009-11-05T14:41:16Z
<p>Can anyone recommend what's a good way to encrypt an executable? I was trying to use AxCrypt but I don't like the usage, i.e. you specify a passcode and the person who launches the exe needs to specify the passcode. Is there someway to encrypt it once and users just run the exe without specifying any passwords?</p>
http://stackoverflow.com/questions/1656320/qsqldatabase-ob-crashes-in-qt0"QSqlDatabase ob" crashes in QT!!!Samir2009-11-01T03:40:28Z2009-11-01T12:51:35Z
<p>in my development pc, the line "QSqlDatabase ob" doesn't crash & works just fine. But in a fresh pc moved the exe and it crashed but if i comment the above line and prepare the exe again it runs fine.</p>
<p>So I installed things that are required in the fresh pc to run qt from visual studio 2005, just to check whats the problem. Transferred the code there but from visual studio still it crashes for that very same line !!!</p>
<p>What are the dependencies of the simple line "QSqlDatabase ob" ?</p>
http://stackoverflow.com/questions/1649344/create-a-new-exe-from-within-c0Create a new EXE from within CRamblingwood2009-10-30T11:48:03Z2009-10-30T12:03:31Z
<p>Am working in VC++ 2008 (express) and I would like to write something in C that creates an "empty" exe that I can later call <code>LoadLibrary</code> on and use <code>BeginUpdateResource</code>, <code>UpdateResource</code>, <code>EndUpdateResource</code> to modify the contents.</p>
<p>Just writing a 0-byte file doesn't allow me to open it with LoadLibrary because it isn't a resource.</p>
http://stackoverflow.com/questions/1642827/finding-my-main-executables-path-using-assembly-vs-appdomain0Finding my main executable's path using Assembly vs AppDomaintsemer2009-10-29T10:39:20Z2009-10-29T11:53:44Z
<p>Hi all,
My first stackoverflow question, hurray to me.</p>
<p>I'm a .NET user, and my goal is as simple as finding the absolute path of the directory of my main executing assembly (the EXE file).</p>
<p>I have several candidates:</p>
<ul>
<li>Assembly.GetExecutingAssembly().CodeBase</li>
<li>Assembly.GetExecutingAssembly().Location</li>
<li>AppDomain.CurrentDomain.BaseDirectory</li>
</ul>
<p>If to judge by the .NET documentation - I'm leaning towards CodeBase.
Can anyone shed light over all three in a bit more specific terms than the .NET documentation? An example to demonstrate the difference perhaps?</p>
<p>Thanks,
O</p>
http://stackoverflow.com/questions/1614686/windows-changing-the-dll-search-order-for-an-exe0Windows: Changing the DLL search order for an Exegg2009-10-23T16:54:00Z2009-10-26T12:03:18Z
<p>Hi,</p>
<p>I have a C++ Exe in an application directory which contains the DLLs used by it. Now, for some testing purpose I need to modify an existing DLL and use that instead of the original one. But in order to not modify the existing installation I cannot backup the existing DLL and replace it with the modified one or move the existing one elsewhere. I also cannot change the Exe. The 2 DLLs need to exist side by side. The only change should be that the Exe should transparently load the modified DLL which is in some other folder rather than the existing DLL which is in the same folder as the Exe. Is there some elegant way of doing it?</p>
<p>I looked at some MSDN articles but could not find a way of doing this. The solution should work on Windows XP and up.</p>
<p>Thanks,
gg</p>
http://stackoverflow.com/questions/1620374/are-executables-exe-favorite-slaves-of-viruses0Are executables(.exe) favorite slaves of viruses? [closed]Ravi2009-10-25T08:38:22Z2009-10-25T08:51:36Z
<p>Often viruses are attached to an .exe file.</p>
<p>Are executables main target of viruses so as to cause maximum (rather faster) harm on the destination side?</p>
<p>Are there any other formats of files or any other ways which are equally or more harmful than executables?</p>
<p>(I am using the term "virus" in a generic manner)</p>
http://stackoverflow.com/questions/42366/what-does-the-exe-do-in-the-visual-studio-setup-project-output9What does the EXE do in the Visual Studio setup project outputScott Warren2008-09-03T19:32:00Z2009-10-23T14:01:15Z
<p>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 without the EXE.</p>
http://stackoverflow.com/questions/1606152/how-do-i-call-a-net-windows-app-that-has-been-installed-from-a-publish0How do I call a .NET windows app that has been installed from a publish?JamesW2009-10-22T09:50:20Z2009-10-22T16:56:52Z
<p>If I publish two separate C# Windows forms apps to a server, and a user installs both of these apps on their machine, how would I get one app to call the other (possibly with parameters) from a button click?</p>
<p>I don't really understand all this publish and manifest business - the exe doesn't seem to physically exist on the user's pc, so how can I possibly call it with code? I know how to call an exe if I know where it is.... but where is it?</p>
<p>Please help!</p>
<p>Thanks </p>
http://stackoverflow.com/questions/1583841/is-exe-locked-vs-dll0Is EXE locked (vs DLL)?Shimmy2009-10-18T02:39:29Z2009-10-18T17:05:59Z
<p>If I put all my controls inside the EXE, is it accessible from outside like it would be accessible when it's placed in a DLL?</p>
http://stackoverflow.com/questions/1553468/how-to-make-setup-exe-file-run-on-its-own0How to make setup exe file run on its own ?crazy_itgal2009-10-12T09:01:16Z2009-10-12T10:09:12Z
<p>Hi everyone,</p>
<p>When i click a exe file it gets extracted well in a folder on specifying the folder path.
i have another exe file which comes in the folder with other DLL files on extracting my 1st exe file.</p>
<p>Now the problem is exe setup file given in a extracted folder does not start on its own i have to manually go inside the folder to start that exe file. then my software gets installed.</p>
<p>How can i make that 2nd setup exe to start on its own, whenever the user clicks the parent set up exe file?
Any help please...</p>
<p>Thanks...</p>
http://stackoverflow.com/questions/1547809/extract-msi-from-exe0Extract MSI from EXEemdadgar22009-10-10T12:25:18Z2009-10-10T12:41:36Z
<p>Dear all</p>
<p>I want to extract MSI of an EXE setup to publish over network!!!!</p>
<p>There is some ways. for example using universal extractor......</p>
<p>but doesn't work for JAVA Run-time environment....</p>
<p>Is there any idea?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1543753/start-exe-after-msi-install-but-using-current-user-privileges1Start exe after msi install but using current user privilegesDEH2009-10-09T13:29:00Z2009-10-09T13:29:00Z
<p>I am using Visual Studio 2008 to build an MSI install package. Within the install I have numerous custom actions. Within the OnAfterInstall custom action I attempt to start an exe which is deployed by the install. The exe starts ok, but runs within a security context of NT AUTHORITY\SYSTEM (i.e. under the elevated privileges granted to the Windows Installer process). I actually need the exe to run in the security context of the currently logged-on user who started the install in the first place. Does anyone know how to start the exe so it runs in this 'reduced' context. I really want to avoid having to ask the user for their login credentials if possible.</p>
http://stackoverflow.com/questions/1520204/find-icon-for-exe1find icon for .exeMark T2009-10-05T13:52:04Z2009-10-05T20:59:48Z
<p>I have the path name to a .exe file.</p>
<p>How do I find the path to the icon that windows would use if this file were dropped on the desktop? (I want to display this icon in my own program.)</p>
<p>I need to be able to find the icon via my C# program at runtime.</p>
<p>Using C# in Visual Studio 2008.</p>