I make this fake fileInstall function to include any exefile or dll in an include file. With this and a good obfuscator u can protect your files from being unpacked by exe2aut since your files will be a binary variable.
Exe to au3.au3
fileInstall.au3
For Example:
[Only registered and activated users can see links. Click Here To Register...]
We select for exe file winrar.exe
outPut file will be winrarTest.au3
var will be named wrar
So with this our fileInstall.au3 may look like this
VT: [Only registered and activated users can see links. Click Here To Register...]
Exe to au3.au3
fileInstall.au3
For Example:
[Only registered and activated users can see links. Click Here To Register...]
We select for exe file winrar.exe
outPut file will be winrarTest.au3
var will be named wrar
So with this our fileInstall.au3 may look like this
Code:
#include "winrarTest.au3" Func MakeExeFromAu3($var,$outPutExe) $out=FileOpen($outPutExe,2) Local $string = BinaryToString($var) FileWrite($out,$string) If not @error Then MsgBox(0,"","Done") FileClose($out) EndFunc MakeExeFromAu3($wrar,"output.exe")