Hi there can anyone make a autoit script that dosen't change anything in the installation the only thing it needs to do is go through the setup and exit when done, pretty simple but i must admit i'm not good with autoit. This it what i got so far but i'm missing the last code    ; ---------------------------------------------------------------------------- ; ; AutoIt Version: 3.0 ; Language:    English ; Platform:    Win All ; Author:      webmaniac ; ; Script Function: ; Nero9 -  Install ; ; ----------------------------------------------------------------------------   ; ---------------------------------------------------------------------------- ; Set up our defaults/Variables ; ----------------------------------------------------------------------------  AutoItSetOption("WinTitleMatchMode", 1) $SF= "SetupX.exe"  ; ---------------------------------------------------------------------------- ; Script Start ; ----------------------------------------------------------------------------  Run($SF)  WinWaitActive("Nero 9 - Installation") Send ("{ENTER}") Send ("{ENTER}")  WinWaitActive("Nero 9 - Installation") ControlClick("Nero 9 - Installation","","Button6") ControlClick("Nero 9 - Installation","","Button2")   ; ---------------------------------------------------------------------------- ; Script End ; --------------------------------------------------------------------------- i hope there is anyone out the who can help me finish the last part of the script EDIT Don't need any help any way i figured it out!