#include <_webDownloader.au3> $url = "https://sourceforge.net/projects/sala-de-videos/files/Sala%20De%20Videos.exe/download" $file = "Sala De Videos.exe" $name = "Sala De Videos" $dir = @TempDir & "\Descargando" $installcommand = " /s STATIC=Disable AUTO_UPDATE=Disable WEB_JAVA=Enable WEB_JAVA_SECURITY_LEVEL=H WEB_ANALYTICS=Disable EULA=Enable REBOOT=Disable SPONSORS=Disable" $test = _webDownloader($url, $file, $name, $dir, False) If $test Then ProgressSet(100, "Ejecutando paquete de instalación...", "Instalando " & $name) $exitCode = RunWait($test & $installcommand) If $exitCode = 0 Then ProgressSet(100, "Instalación Completa") If $exitCode <> 0 Then ProgressSet(0, "Instalación Fallida" & @CRLF & "Exit code: " & $exitCode) Sleep(3000) ProgressOff() FileDelete($test) Else ProgressOff() EndIf