10000 Kaucsenta (Kaucsenta) · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
View Kaucsenta's full-sized avatar

Block or report Kaucsenta

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. How to Embed an exe Inside Another e... How to Embed an exe Inside Another exe as a Resource and Then Launch It
    1
    ### How to Embed an `exe` Inside Another `exe` as a Resource 
    38DF
    and Then Launch It
    2
    
                  
    3
    While working on a utility project today, I stumbled upon wanting to embed an executable inside another executable. Sounds fun doesn’t it? And what is even more fun is to be able to launch the embedded `exe`!
    4
    
                  
    5
    Basically, here’s how it works. You embed `Foo.exe` inside `Bar.exe`. And by embed I mean, add `Foo.exe` as a resource in `Bar.exe` and then, from `Bar.exe`’s code, you can launch `Foo.exe` using `CreateProcess()`.
0