Voor de unattended/silent installatie van diverse programma's.
======Links======
[[http://wpkg.org/index.php/Category:Silent_Installers|WPKG - Silent Installers]] \\
[[http://www.appdeploy.com/packages/|AppDeploy Packages Knowledge Base]] \\
[[http://unattended.sourceforge.net/installers.php|Unattended/Silent Installation Switches for Windows Apps]] \\
======Algemeen======
Plak bij een NSIS installer /S achter de executable. Gebruik voor silent uninstall de bij het NSIS verpakte programma's uninstall.exe met de /S parameter.\\
=====Inno Setup=====
[[http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline|Setup Command Line Parameters]] \\
[[http://www.jrsoftware.org/ishelp/index.php?topic=setupexitcodes|Setup Exit Codes]] \\
[[http://www.jrsoftware.org/ishelp/index.php?topic=uninstcmdline|Uninstaller Command Line Parameters]] \\
[[http://www.jrsoftware.org/ishelp/index.php?topic=uninstexitcodes|Uninstaller Exit Codes]] \\
=====InstallAnywhere=====
-i
Sets the installer interface mode: silent/console/gui.
c:\myinstall.exe -i silent
sh ./install.bin -i console
-f
Sets the location of an installer.properties file for the installer to use.
c:\myinstall.exe -f c:\tmp\installer.properties
Note: This path can be absolute or relative.
-r
Creates a response file.
c:\myinstall.exe -r c:\myinstaller.properties
Note: Response files can be used to provide input for silent installers.
-D
Passes custom command-line arguments.
c:\myinstall.exe -Dmyvar=myvalue
-l
Uses the specified language code (and optional country code) to set the locale for the InstallAnywhere installer.
c:\myinstall.exe -l en
sh ./install.bin -l pt_BR
The required language code is a two-character (commonly lowercase) code defined by the ISO-639 standard. InstallAnywhere accepts both old (iw, ji, and in) and new (he, yi, and id) language codes.
The optional country code is a two-character (commonly uppercase) code defined by the ISO-3166 standard.
Note
Locale options are only respected if the installer includes localizations for the locale you specify.
-?
-help
Shows help for the InstallAnywhere installer.
Note: On Windows, -help only works from the console launcher. Make sure to set the LaunchAnywhere to Console on the Windows tab of the Project > Platforms subtask. (For an installed LaunchAnywhere to provide this information, you need to make sure it is explicitly set to Console Launcher on the action.)
Bron:[[http://helpnet.acresso.com/robo/projects/installanywhere2008_1/Using_Command-Line_Arguments_with_Installers.htm|Using Command-Line Arguments with Installers]] \\
======Per applicatie=======
=====ColdFusion 8=====
Bron:[[http://kb.adobe.com/selfservice/viewContent.do?externalId=kb402572&sliceId=1|Adobe TechNet - Install ColdFusion 8 silently]]
=====Futurix Imager=====
futuriximager.exe /S
futuriximager_extras.exe /S
=====Java Runtime Environment=====
jre-1_5_0_09-windows-i586-p.exe /L1033 /s /v"/qn IEXPLORER=1 MOZILLA=1 REBOOT=Suppress JAVAUPDATE=0 CUSTOM=1"
Versie 6:
jre-6u6-windows-i586-p-s.exe /s IEXPLORER=1 MOZILLA=1 ADDLOCAL=ALL REBOOT=Suppress JAVAUPDATE=0 JU=0 AUTOUPDATECHECK=0
[[http://java.sun.com/javase/6/webnotes/install/jre/silent.html|Java 6 silent install]] \\
=====Microsoft MDAC 2.8 SP1=====
mdac_typ /Q:A /C:"dasetup /Q /N"
Bron:[[http://msdn.microsoft.com/en-us/library/ms693148(VS.85).aspx|MSDN - Redistributing MDAC 2.8 SP1]] \\
=====Microsoft Visual Studio=====
[[http://blogs.msdn.com/quanto/archive/2005/08/02/446689.aspx|VS 2005 Beta 2 installation failure on Windows Vista Beta 1]] \\
[[http://blogs.msdn.com/pgiffin/|Visual Studio Setup QA Lead and his view of the product and its challenges.]] \\
[[http://lab.msdn.microsoft.com/express/uninstall/|Uninstalling Express Editions]] \\
[[http://forums.microsoft.com/msdn/showforum.aspx?forumid=26&siteid=1|Visual Studio Setup]] \\
[[http://www.msfn.org/board/index.php?showtopic=24958&hl=visual+studio|Q: MS Visual Studio 2003 Unattended?]] \\
[[http://www.msfn.org/board/lofiversion/index.php/t60982.html|Unattended Installation of Microsoft Visual Studio 2005]]
[[http://blogs.msdn.com/astebner/archive/2006/03/17/554248.aspx|Mailbag: How can I suppress reboots during Visual Studio 2005 unattended installation?]] \\
=====OpenOffice.org======
[[http://www.oooforum.org/forum/viewtopic.phtml?t=605|Unattended OpenOffice.org installatie]] \\
[[http://user.services.openoffice.org/en/forum/viewtopic.php?f=74&p=136826|Create an unattended / silent install of OpenOffice 3]] \\
====1.x====
Verwijderen van 1.1.3 NL geïnstalleerd onder C:\Program Files\OpenOffice.org1.1.3\:
"C:\Program Files\OpenOffice.org1.1.3\program\setup.exe" -r OpenOffice-1.1.3-uninstall.txt
OpenOffice-1.1.3-uninstall.txt:
[Environment]
InstallationMode=DEINSTALL
DestinationPath=C:\Programme\OpenOffice.org1.1.3
StartProcedure=MyStartProc
EndProcedure=
Languagelist=31
[Procedures]
Sub MyStartProc
HideSetup
End Sub
Bronnen: \\
[[http://wpkg.org/OpenOffice.org_1.1.5|WPKG - OpenOffice.org 1.1.5]] \\
[[http://www.bytebot.net/openoffice/faq.html|The OpenOffice.org Unofficial FAQ v0.3.1b]] \\
[[http://docs.sun.com/app/docs/coll/999.2|StarOffice 6.0 English Collection]] documentatie PDF's. Zie de [[http://docs.sun.com/app/docs/doc/816-7522|StarOffice 6.0 Software Administration Guide]] \\
====2.4====
Silent installatie van OpenOffice.org 2.4 met .doc en .xls associatie en het uitschakelen van de registration wizard:
@echo off
msiexec.exe /i "C:\Temp\Software\Open Office\openofficeorg24.msi" /qb!
rem .doc associeren met OpenOffice
assoc .doc=opendocument.WriterDocument.1
rem .xls associeren met OpenOffice
assoc .xls=opendocument.CalcDocument.1
rem De registratie wizard uitzetten.
"C:\Program Files\OpenOffice.org 2.4\program\unopkg.exe" add --shared "c:\Temp\Settings\openoffice\DisableFirstStartWzd.oxt"
Zie:[[http://wiki.services.openoffice.org/wiki/Documentation/Administration_Guide/Deactivating_Registration_Wizard|OpenOffice.org wiki - Deactivating the OpenOffice.org Registration Wizard]] \\