AlBundy33 Posted November 4, 2006 Posted November 4, 2006 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 hereAutoItSetOption("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") EndIfWEndI think that you see, what the script does. GreetingsAl
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now