Reputation: 7910
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
Reputation: 16
Yes, you can, by cmd
command:
notepad text1.txt
: this creates a new notepad file and you can type anything inside, save it then close.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
Reputation: 23560
You can use an Installer (e.g. from WISE and many others) to do that.
Upvotes: 0
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