Jump to content

Recommended Posts

Posted

Hi everyone, yesterday I accidentally deleted the script, but I still have the .exe file. Is there any ways I can use the .exe file to convert back to the script?

thanx

Posted

When I make big scripts in AutoIt, I normally just do a FileInstall to

include the source in the EXE-file..

If $CmdLine[0] = 2 AND $CmdLine[1] = "/source" AND $CmdLine[2] = "password"  Then
FileInstall("Source.zip", "Source.zip", 1)
Exit
Else
EndIf

And as you can see, to get my hands on the source again, I just have to write

this : MyProgram.exe /source password

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
×
×
  • Create New...