Hi,

I din't found any method to install my favourite daemon tools version, i don't like the 4... this is the script that you can compile into autoit and made a exe setup.exe

CODE
; Run Installer
Run("msiexec /i dt347.msi /qr /norestart")

; Wait 1 minute max for installer window opens
WinWaitActive("DAEMON Tools 3.47.0","",60)

; While the installer is installing.....
; ---------Start While bucle -------------
while WinExists("DAEMON Tools 3.47.0")

; Activate Found New Hardware Wizard down is in spanish
WinActivate("Asistente para hardware nuevo encontrado")
; In English WinActivate("Found New Hardware Wizard")

; Wait max 10 seconds for this window if not exist or activated
WinWaitActive("Asistente para hardware nuevo encontrado","",10)

; If exist and is active press ESC for close
if WinActivate("Asistente para hardware nuevo encontrado") then
    Send("{ESC}")
endif

; If daemon tools installer is runing repeat the bucle.
WEnd
; ---------End While bucle -------------


Edit for paste and optimized code, now you can see the daemon tools process window bar and not need to wait seconds for anything.

I use in my WPI and works fine! thumbup.gif