Au3Stripper |
Previous Top Next |
· Strip all unused UDF's (Funcs) and/or unused Global/Local Variables from your main script and all included files.
· PreExpand Global Const Variables.
· Rename Variables
· Rename Func names
· Warn you that the script is likely to have difficulties running if a parameter cannot be determined before run-time. This usually occurs if:
· A function takes a literal string parameter defining a function or variable. In this case the resulting string might not be able to be correctly linked to the correct variable or function name during the process. This only affects certain AutoIt3 functions:
· A parameter contains an Ampersand (&) - as the parameter is concatenated from other variables/strings it too might not be correctly linked.
· Produce an Au3Stripper.log which contains all information about the conversion process in case of problems.
/TraceLog
/TL
|
Create Au3Stripper.Log with a trace
of all actions.
|
/debug
|
Create Au3stripper.Log and a
sourcecode resultfile per iteration: Au3Stripper-Iteration-?.au3.
|
/PreExpand
/PE
|
Replace any reference to a Global
Const variable with its actual value.
|
/StripOnly
/SO
|
Set the options to:/SF=1 /SV=1
which is now also the default when no parameters are specified.
|
/StripUnusedFunc=0/1
/SF=0/1
|
Strip unused Funcs (Default = 1)
|
/StripUnusedVars=0/1
/SV=0/1
|
Strip unused Global and Local
variable declarations (Default = 1)
|
/MergeOnly
/MO
|
Will produce a scriptfile as
AUT2EXE includes in the Compiled EXE. This allows you to find the
proper linenumber when errors are reported.
Note: Make sure you remove the #pragma lines or else the linenumbers will be off by the that number of records |
/MaxIterations
/MI
|
Sets the maximum
Iterations Au3Stripper will perform. Default is 5. |
/RenameMinimum
/RM
|
Generates a much smaller file by
substituting function and variable names with unique 2+-character names
|
/ShowConsoleInfo=0/1/9
/SCI=0/1/9
|
0 = (Default) Minimal output to the
console - only warnings and errors.
1 = Show more progress information
9 = Show all debug lines as found
in the Au3Stripper.log.
|
/rsln
|
Replace @ScriptLineNumber with the
actual line number in the merged source. This is for debug purposes
with compiled scripts. All master lines will show 2 numbers in the
format xxx/yyy where xxx is the original master script line number and
yyy the merged script line number.
|
/Beta
|
Use the ...\AutoIt\Beta\Include
files if installed
|