Gobaltann Posted January 12, 2017 Posted January 12, 2017 (edited) Hi, Today i would like to create some script to install Thunderbird BUT... I can't do a silent installation... My script : Spoiler Run("C:\Users\Florian\Desktop\Scripts\Thunder\Thunderbird Setup 45.6.0.exe","","","/s") Sleep(45000) Send("!s") Sleep(1000) Send("!s") Sleep(3000) Send("!i") Sleep(48000) Send("!t") I'm new in Auto-it world but, i try to make some script for any installation ! (Sorry for my english :/ ) Yesterday i have create another script, but, for 7zip and it working. Spoiler TrayTip("Installation de 7zip","Début de l'installation.","3") Run("testt.exe","","","/s") Sleep(2000) Send("!i") Sleep(2000) Send("!n") Sleep(2000) Send("{ENTER}") TrayTip("7zip installation","L'installation est terminée","1") TrayTip("Redemarrage","L'ordinateur vas se relancer dans 30 secondes, enregistrez ce que vous êtes entrain de faire.","1") Sleep(30000) Shutdown(2) Someone can help me ? I have an issue with thunderbird Edited January 13, 2017 by Gobaltann
MattHiggs Posted January 12, 2017 Posted January 12, 2017 Hey man. Try writing the command like so: RunWait ( @comspec & ' /c "Path\to\file\setup.exe" -ms', "Path\to\file" ) Let me know how it goes.
ViciousXUSMC Posted January 12, 2017 Posted January 12, 2017 https://wiki.mozilla.org/Installer:Command_Line_Arguments -ms should do a full silent install with no need to automate the GUI. Should be clean and easy with ShellExecute()
Gobaltann Posted January 13, 2017 Author Posted January 13, 2017 16 hours ago, MattHiggs said: Hey man. Try writing the command like so: RunWait ( @comspec & ' /c "Path\to\file\setup.exe" -ms', "Path\to\file" ) Let me know how it goes. Thank you ! It's working !
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