QUOTE (bizzozero @ Jan 31 2008, 01:42 PM)

hi MSFN this is my first post here, i've been really imperssed by the effort you're putting to make life eaiser for a lot of people, i'm a newbie to this field and autoit has been kind ambiguous software for me and i couldn't understand how to use it, i've tried to read the help file and couldn't understand it

could anyone please post a small tutorial; images or video explaining how to use it for creating silent installer
thanks in advance , see you around
You seem to be somewhat confused. To keep it as simple as possible, when you normally install an application you click for example "Next", "Next", mark a few checkboxes, et cetera and click "Finish". You can automate this process using AutoIT, that's all. If you would automate an installation using AutoIT and you would like to have a silent installer, you would still need to package your application. But please note that you hardly
need to use AutoIT for automating any installations.
Most applications allow command line parameters to configure their installation, so instead of automating the installation using AutoIT, you could simply run the installation like this for example:
setup.exe /silent /components:main (this is of course just an example which I made up myself). You can then create self-extracting, silent installer packages using for example 7ZIP or WinRAR which automatically launches the installation with the required parameters.
I personally
need to use AutoIT for only two applications: DNL Reader and GMail Drive (and perhaps even those could have been via other means, but I haven't found out how anyway

). For all my other applications I created my own self-extracting, silent installer packages. All applications which can be installed via SVCPACK are installed via SVCPACK. Applications which cannot be installed via SVCPACK are installed via RunOnceEx, straight from DVD.