Jump to content

Create EXE file without Autoit EXE converter.


Recommended Posts

Hi all,

Sorry because i need your time again.

Direct to the point and problem.

1. I need a code whereby can convert autoit file.au3 into exe without using autoit EXE converter.

2. The reason is, i want people input their password but at same time i don't want the people see or know file.au3 source code. (using autoit exe converter make people know the source code because they can see file.au3 source code)

3. Mean that, people only enter their password using inputbox, then klik create button. Then my program will convert the hidden source code including the password supply by people just now.

4. Hopefully all expert here can help me.

Tq so much.

Link to comment
Share on other sites

  • Moderators

I think I followed you, Why don't you just use Do Not Allow Decompile?

Or if your source is that valuable, just use EnCodeIt in my signature (make sure you don't have any of the Call()/Eval() etc... that it says you can't have in your script), that way you can obfuscate it, and they can't tell what your script says if they do get the source code.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

If i set Do Not Allow Decompile, how i want people enter their password in my source code?

i give an example

ControlSetText($winTitle,"","Edit1","PASSWORD")

I need people enter their own password change to PASSWORD then the program will auto convert all the code to exe. BUT i dont want people see the whole source code.

Their put in their password using input box then the code PASSWORD will change into the new pasword that supply by user. Then the program will convert itself into EXE.

Edited by manmoncang
Link to comment
Share on other sites

$passwd = InputBox("Enter your pass")

....

ControlSetText($winTitle,"","Edit1", $passwd)

if it needs to be used all the time just write it to an .ini or the registry

Edited by w0uter

My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...