打包/合并2个exe文件
您好,是否可以合并/组合/打包两个 .exe 文件
示例:
1.exe + 2.exe = 3.exe
以及如何运行其中一个,然后运行另一个,例如:启动 3.exe:2.exe .. 。
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有什么理由不使用批处理脚本吗?如果需要“混淆”.bat,则可以使用一些实用程序将 .bat 文件转换为 .com 或 .exe。
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.
是的,您可以通过
cmd
命令:notepad text1.txt
:这会创建一个新的记事本文件,您可以在其中键入任何内容,保存然后关闭。notepad text1.txt:hidden.txt
:您可以输入任何内容并保存。这意味着hidden.txt
会变成text1.txt
内部,但您看不到它。为什么?长话短说:) 这些是关于 NTFS 问题。您也可以对
.exe
文件执行此操作。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 meanshidden.txt
become insidetext1.txt
but you can not see it. Why? Long story :) These are about NTFS issues.Also you can do it for
.exe
files.您可以使用安装程序(例如来自 WISE 和许多其他程序)来执行此操作。
You can use an Installer (e.g. from WISE and many others) to do that.