Script Packager Command Line Arguments
The executable created with Script Packager do not natively accept any command line parameters. Instead, any parameters are captured in the %ASEEXEARGS% environment variable, which you may then parse in your script. This give you complete control of your packaged script and how it behaves. If you want to support command line arguments, simply treat the %ASEEXEARGS% variable as any and all parameters passed to the packaged executable.
For example:
MyScript.exe /?
If the above were executed, and MyScript were checking the %ASEEXEARGS% variable, it would see:
/?