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


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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