John
John

Reputation: 7910

packing / merging 2 exe files

hello is it possible to merge / combine / pack two .exe files

example :

1.exe + 2.exe = 3.exe

and how to run one of them, then another, like : start 3.exe:2.exe...

thanks

Upvotes: 0

Views: 568

Answers (3)

Zaman
Zaman

Reputation: 16

Yes, you can, by cmd command:

  • Type notepad text1.txt: this creates a new notepad file and you can type anything inside, save it then close.
  • Type notepad text1.txt:hidden.txt: you can type anything and save it. This means hidden.txt become inside text1.txt but you can not see it. Why? Long story :) These are about NTFS issues.

Also you can do it for .exe files.

Upvotes: 0

Bernd Elkemann
Bernd Elkemann

Reputation: 23560

You can use an Installer (e.g. from WISE and many others) to do that.

Upvotes: 0

Jan Zyka
Jan Zyka

Reputation: 17898

Is there any reason to not having a batch script? There are utilities to convert the .bat file to either .com or .exe if this is required for "obfuscating" the .bat.

Upvotes: 1

Related Questions