Combining two executables

2019-08-10 03:50发布

I have a command line executable that alters some bits in a file that i want to use from my program. Is it possible to create my own executable that uses this tool and distribute only one executable?

[edit] Clarification:

The command line tool takes an offset and some bits and changes the bits at this offset in a given file. So I want to create a patcher for an application that changes specific bits to a specific value, so what I can do i write something like a batch file to do it but i want to create an executable that does it, i.e. embed the tool into a wrapper program that calls it with specific values.

I can code wrapper in (windows) c\c++, asm but no .net please.

8条回答
放荡不羁爱自由
2楼-- · 2019-08-10 04:26

I think this is also possible by using AutoIt's FileInstall function. For this you'll have to setup AutoIt, create a script with the FileInstall function to include the who exe's and then use f.i. the function RunWait to execute them. Compile to an exe and you should be done.

查看更多
戒情不戒烟
3楼-- · 2019-08-10 04:30

Short answer: No.

Less short answer: Not unless it's an installer or a self extracting archive executeable.

Longer, speculative answer: If the file system supports alternate data streams, you could possibly add a stream containing the utility to your program, then your program could access it's own alternate data stream, extracting the utility when you need it. Ahaha.

查看更多
可以哭但决不认输i
4楼-- · 2019-08-10 04:32

It would be easier to roll your own implementation of this program than to write the wrapper; it sounds like it is trivial -- just open the file, seek to the right location, write your bits, close the file, you're done.

查看更多
一夜七次
5楼-- · 2019-08-10 04:36

I think the easiest way to do this for your purposes is probably to use a self extracting executable package. For example, use a tool like Paquet Builder which will package the exe (and any other files you want) and can be configured to call the exe or a batch file or whatever else you want when the user unpacks the self-extracting executable.

查看更多
ゆ 、 Hurt°
6楼-- · 2019-08-10 04:38

If the exe was built to be relocatable (essentiall linker flag /fixed:no), you can actually do a LoadLibrary on it, get the base address, set up a call chain and call (jump) into it. It would not be worth the effort, and very few exe's are built this way so you would have to have the code to rebuild it, at which point you wouldn't be in this exercise.

So... No.

I'm more intrigued by the developer who doesn't mind writing in C/C++/asm, but 'not .net' - but is apparently stymied by fopen/fseek/fwrite - since that's about all the program you describe sounds like it's doing.

查看更多
神经病院院长
7楼-- · 2019-08-10 04:41

You can add the executable as a binary stream resource in your executable and when you need it you can extract it in a temporary folder and create new process with the temporary file.

The exact code you need to do this depends on whether you are writing .Net or C++ code.

查看更多
登录 后发表回答