Embedded a *.exe into a dll - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T19:12:00Zhttp://stackoverflow.com/feeds/question/573105http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/573105/embedded-a-exe-into-a-dll1Embedded a *.exe into a dllgilloux2009-02-21T14:22:27Z2009-02-23T16:57:27Z
<p>Hello</p>
<p>does somebody know how can I embedd an exe file into a dll ? </p>
<p>I have a tool which is an exe file that I call from c# code.</p>
<p>The thing is that I want to have 1 dll containing this tool (exe file) and the dll containg my c# code.</p>
<p>Is it possible to embedd this exe file within the resources? </p>
<p>Thx in advance</p>
http://stackoverflow.com/questions/573105/embedded-a-exe-into-a-dll/573113#5731135Answer by Hemant for Embedded a *.exe into a dllHemant2009-02-21T14:28:19Z2009-02-21T14:36:32Z<p>Sure it is. You can add any file as RC_DATA in application as resource. But I believe you will need to extract it to disk first before calling it!</p>
<p>Which IDE/Language you are using?</p>
<p>[EDIT]</p>
<p>Sorry! you did mention that you are using C#.</p>
<ol>
<li>Add a resource file to you application (right click application in IDE and select "Add new item".</li>
<li>Use the toolbar in resource editor to add an existing file.</li>
<li>Then extract the exe whenever required by calling code something like:
System.IO.File.WriteAllBytes (@"C:\MyEXE\", Resource1.MyEXE);
</li>
</ol>
http://stackoverflow.com/questions/573105/embedded-a-exe-into-a-dll/573128#5731284Answer by Sean for Embedded a *.exe into a dllSean2009-02-21T14:35:51Z2009-02-21T14:35:51Z<p>It's worth baring in mind that your uses may not be too happy about you doing this. Embedding an executable that they've got no control over into a DLL that you'll extract and run will probably make people worry about the running a Trojan on their machine.</p>
<p>It's better to leave the .EXE in the filesystem and be transparent about what your application is doing.</p>
http://stackoverflow.com/questions/573105/embedded-a-exe-into-a-dll/573189#5731891Answer by leppie for Embedded a *.exe into a dllleppie2009-02-21T15:08:07Z2009-02-21T15:08:07Z<p>You can load an Assembly from a byte[]. This can be obtained via the ManifestResourceStream of an embedded resource.</p>
http://stackoverflow.com/questions/573105/embedded-a-exe-into-a-dll/578254#5782540Answer by Logan Capaldo for Embedded a *.exe into a dllLogan Capaldo2009-02-23T16:21:23Z2009-02-23T16:21:23Z<p>An alternative may be to not embed the .exe itself, but rather include its functionality in the dll, and use rundll32[<a href="http://support.microsoft.com/kb/164787" rel="nofollow">1</a>] to execute it.</p>
http://stackoverflow.com/questions/573105/embedded-a-exe-into-a-dll/578397#5783970Answer by Mike for Embedded a *.exe into a dllMike2009-02-23T16:57:27Z2009-02-23T16:57:27Z<p>On a side note, remember that when you pull a file from your resources to disk and then execute code on it, you may trigger Windows <a href="http://support.microsoft.com/kb/875352" rel="nofollow">Data Execution Prevention</a> - basically, Windows tries to automatically detect if something is supposed to be code or data, and if it looks like data (which a resource would), then it will prevent that data from being executed as code.</p>
<p>This becomes a particularly sticky issue if your .NET assembly is going to be used over a network instead of from a local drive - there are all sorts of .NET security configurations that might prevent this from working correctly.</p>
<p>Another option, and not knowing the details of your project, take this with a grain of salt: add a .exe.readme file to your install that describes to any curious users or IT people why there is an executable they weren't expecting in the installation directory :)</p>