I've been using AutoIT for a bit, but I've run into a bit of stumbling block. I used to use the GOTO command a lot in previous versions for scripts that required a machine to meet a combination of different variables. For instance:
If %AOSVERSION% = "Windows_2000", goto WIN2K.
If %AOSVERSION% = "Windows_XP", goto WINXP.
WIN2K:
If %other vairable% = "xyz", goto WIN2KXYZ
FileReadLine, script1, %logonserver%\\\\netlogon\\\\LoginScripts.txt, 1
(Etc - Other commands for this subsection)
How