Haseeb Posted May 28, 2008 Posted May 28, 2008 (edited) hi, anyone will tell me why i gets minimum 250kb of exe ? while i have written only one line , one word or one function or command. ProcessClose("prog.exe") this will also take 250kb memory and if my code is of 900 lines then i again gets 250kb of exe after compile. this is not good because visual basic takes minimum 5kb while i writes some very little programs. any suggestions ???? how to dectrease size ? because i want to write only one line. comments are welcomed! Edited May 28, 2008 by GsmExpert
newbiescripter Posted May 28, 2008 Posted May 28, 2008 I think it's because when you compile Autoit you will get a little program with which can translate the source into bytecode like the javaplatform works. but when you you VB or C++ then the program is translateted directly in the CPU.. Regards
Haseeb Posted May 28, 2008 Author Posted May 28, 2008 is there no way to decrease the size ? i used Obfuscator but it increases the size more... Please anyone tell me what to do now ?
Andreik Posted May 28, 2008 Posted May 28, 2008 is there no way to decrease the size ?i used Obfuscator but it increases the size more...Please anyone tell me what to do now ?Try to compile with option and set highest compression.
newbiescripter Posted May 28, 2008 Posted May 28, 2008 Why do you worry about such a little size like 250kb? now a days it's nothing I think..
ChrisL Posted May 28, 2008 Posted May 28, 2008 hi,anyone will tell me why i gets minimum 250kb of exe ?while i have written only one line , one word or one function or command.ProcessClose("prog.exe")this will also take 250kb memoryand if my code is of 900 lines then i again gets 250kb of exe after compile.this is not good because visual basic takes minimum 5kb while i writes some very little programs.any suggestions ????how to dectrease size ? because i want to write only one line.comments are welcomed!Why does it need to be smaller? [u]Scripts[/u]Minimize gui to systray _ Fail safe source recoveryMsgbox UDF _ _procwatch() Stop your app from being closedLicensed/Trial software system _ Buffering Hotkeys_SQL.au3 ADODB.Connection _ Search 2d Arrays_SplashTextWithGraphicOn() _ Adjust Screen GammaTransparent Controls _ Eventlogs without the crap_GuiCtrlCreateFlash() _ Simple Interscript communication[u]Websites[/u]Curious Campers VW Hightops Lambert Plant Hire
weaponx Posted May 28, 2008 Posted May 28, 2008 Why does it need to be smaller?So the virus can propagate faster.
Richard Robertson Posted May 28, 2008 Posted May 28, 2008 It's not going to be smaller for a while. AutoIt's entire code interpreter is included. The compression option has nothing to do with the main executable, it only has to do with Jon's compression algorithm on FileInstall'ed files.
Haseeb Posted May 28, 2008 Author Posted May 28, 2008 it is not for any virus... i was just asking for general information. and.... if it is possible Then it would be better.
Richard Robertson Posted May 28, 2008 Posted May 28, 2008 As of right now, it's not going to get smaller unless the devs have found something really amazing.
Confuzzled Posted May 31, 2008 Posted May 31, 2008 hi,anyone will tell me why i gets minimum 250kb of exe ?comments are welcomed!AutoIT scripts are interpreted, so the script interpreter has to be bundled with your exe file unless you use the methods outlined in the help file.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now