vote up 1 vote down star

I have a non-.Net executable file that is included in my .net assembly as an embedded resource. Is there a way to run this executable that does not involve writing it out to disk and launching it?

This is .Net 2.0.

flag

78% accept rate

2 Answers

vote up 1 vote down

You might try injecting your exe into a suspended process and then awakening the hijacked process, but this seems like a recipe for disaster.

link|flag
It does, but it's definitely a creative solution! – Eddie Deyo Sep 17 '08 at 14:01
vote up 0 vote down

You can load a .NET assembly from a byte array using an overload of Assembly.Load.

However, there are implications for the security model that need to be considered which make things more complex. See the discussion here, and also this thread.

If your embedded executable is not .NET then I think you will have to write it out to disk first.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.