Click here to Skip to main content
15,886,362 members

Comments by Fadi F (Top 10 by date)

Fadi F 2-Apr-13 9:26am View    
Yes I want to modify already built executable assembly to include my files in its resources section and retrieve them later.
Fadi F 2-Apr-13 6:39am View    
Why do you feel it is an abuse. I think it is how self extracting or decrypting archive works.
Here are a couple of links that explain the same
http://stackoverflow.com/questions/4939513/creating-a-pgp-sda-in-c-sharp-using-the-bouncy-castle-api#
http://www.codeproject.com/Articles/39/Creating-a-Self-Extracting-Executable
Fadi F 1-Apr-13 17:41pm View    
That way I have to make a new build each time I want to embed new files which is not my case. Actually, I am building a utility application that allows certain users(developers), to select files and embed them in other executable that is to be delivered to other users(support people) that can execute it on client machines.
Fadi F 1-Apr-13 16:50pm View    
I didn't get the idea, do you mean I can just rename the files to .resx before embedding them?
Please note that my intention is to create a tool that can embed .exe, .sql and .ddl files at runtime
Fadi F 1-Apr-13 16:27pm View    
I was able to use BeginUpdateResource/UpdateResource/EndUpdateResource methods to embed .exe and .dll files in my executable.