How To Install Autoit Silently
#2
Posted 23 April 2004 - 06:39 AM
This seems rather ironic: AutoIt is often used to automate installers that lack a silent/no-user-interaction option--and the AutoIt installer has this very deficiency!
#3
Posted 23 April 2004 - 07:42 AM
Ah... I love all-in-one-folder software
#4
Posted 23 April 2004 - 09:20 AM
I do not think the installer currently supports this option.
This seems rather ironic: AutoIt is often used to automate installers that lack a silent/no-user-interaction option--and the AutoIt installer has this very deficiency!
#5
Posted 23 April 2004 - 12:30 PM
If I'm mistaken, please forgve me but every single time I've seen this request on the Yahoo forum, it was because the requestor thought AutoIt had to be installed on each machine that compiled scripts are run on. You know that is NOT the case, right?How to install AutoIt silently ? "/S" does not work
Jeff
#7
Posted 23 April 2004 - 01:34 PM
I understand you can install the full package but why not to deliver your script in compile format. Is An extra 100K by script to much?If I'm mistaken, please forgve me but every single time I've seen this request on the Yahoo forum, it was because the requestor thought AutoIt had to be installed on each machine that compiled scripts are run on. You know that is NOT the case, right?
Jeff
Remember you always can execute a script by "AutoIT3.exe scriptnamefile"
#8
Posted 23 April 2004 - 03:03 PM
autoit-v3-setup.exe supports silent installation, but it requires a capitol "S" not lower case. I use the following code to download autoit and install it silently all the time.
BTW the case sensativity is something specific to NSIS.
http://unattended.msfn.org/xp/applications/nsis.htm
Func AutoIT3() If urldownloadtofile("http://www.hiddensoft.com/cgi-bin/getfile.pl?autoit3/autoit-v3-setup.exe", @Tempdir & "\AutoIt.exe") then runwait(@Tempdir & "\AutoIt.exe /S") FileDelete(@Tempdir & "\AutoIt.exe") EndIF EndFunc
Edited by bcording, 23 April 2004 - 03:10 PM.
#9
Posted 23 April 2004 - 03:51 PM
#10
Posted 09 May 2004 - 07:58 AM
REG ADD %KEY%\100 /VE /D "AutoIt 3" /f REG ADD %KEY%\100 /V 1 /D "CMD.EXE /C%SystemDrive%\Install\AutoIt3\autoit-v3-setup.bld101.exe /S" /f
The following DOES NOT work:
REG ADD %KEY%\100 /VE /D "AutoIt 3" /f REG ADD %KEY%\100 /V 1 /D "%SystemDrive%\Install\AutoIt3\autoit-v3-setup.bld101.exe /S" /f
Note:
The previous commands are for an unattended installation, and are to be placed in a .CMD file called from $OEM$\cmdlines.txt
SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx
Thanks to all of you for your remarks
Edited by mdes, 09 May 2004 - 08:01 AM.
#11
Posted 10 May 2004 - 02:49 PM
All I use is
RunWait("autoit-v3-setup.exe /S")
Place Scipt in same Dir as autoit-v3-setup.exe
Works like a charm
I use AutoIt for all my silent installs and the all works like a charm.
#13
Posted 30 January 2012 - 01:58 AM
How to ask questions the smart way!
Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.
Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.
_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.
GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.
#14
Posted 31 January 2012 - 10:58 PM
But I'm learning from it.
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users






