Jump to content

Recommended Posts

Posted

Some installers show some Messages even if silent install was started.

With this small AutoIt-Script you can do the silent-install and auto-close the upcoming messages.

; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.1
; Author: AlBundy33
;
; ----------------------------------------------------------------------------

; Script Start - Add your code below here
AutoItSetOption("TrayIconDebug", 1)
AutoItSetOption("WinWaitDelay", 500)

$PID = Run("winamp531_full.exe /S", @ScriptDir)

While ProcessExists($PID)
If WinWait("Winamp Setup", "A reboot is required", 10) Then
ControlClick("Winamp Setup", "A reboot is required", "Button2")
EndIf
WEnd

I think that you see, what the script does. :)

Greetings

Al


Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...