das else kannst du auch weglassen.
[autoit]
If $Modell == $Modell_1 Then
;Installation
ElseIf $Modell == $Modell_2 Then
;Installation
Endif
;oder, wenn die installation immer gleich ist:
If $Modell == $Modell_1 or $Modell == $Modell_2 then
;Installation
endif
so wird das erste if geprüft, dann das zweite. trifft beides nicht zu, wird nichts gemacht.