Help - Search - Members - Calendar
Full Version: Application Switches - Contributions Only
MSFN Forums > Unattended Windows Discussion & Support > Application Installs
Pages: 1, 2, 3, 4, 5

   
Google Internet Forums Unattended CD/DVD Guide
abomariam
switch for adobe reader 8

AdbeRdr80_en_US.EXE /sPB /rs /rps /msi"ALLUSERS=TRUE EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES"

thumbup.gif
Gedrean
FireFox 2.0 series
See: http://wiki.mozilla.org/Installer:Command_Line_Arguments
This will allow you to install clean installs (default settings) with custom directories.
gordigo
Daemon tools 4.08
the new silent switch

CODE
daemon408-x86.exe /S /D=%systemdrive%\program files\daemon tools\
radix
Total Commander 7.01 silent installer


1.Unpack original installer with WinRAR

2.Edit INSTALL.INF:

[auto]
auto=1
lang=1
alllang=1
iniloc=c:\Program Files\Total Commander
iniall=1
mkgroup=1
mkdesktop=1

[Destination]
Dir=c:\Program Files\Total Commander
Ini=wincmd.ini,Configuration,InstallDir

3.If you want to add a new language, unpack INSTALL.CAB
with WinRAR and copy both files in INSTALL\Language
Copy your license file Wincmd.key in folder INSTALL,
then repack INSTALL folder with CabPack 1.4 (don't forget to check Recurse subdirectories
in CabPack).
Edit INSTALL.INF file with settings for new language and after the last line in the file copy:

[Install]
1=install.cab,c
2=wincmd.key

4.Build the installer with 7zS.sfx or WinRAR, with INSTALL.EXE file as the
executable file after extraction and without switches.
radix
UltraISO Premium Edition 8.6.3 Build 2056 silent installer

You need three files:
-setup file: uiso86pes.exe
-batch file: install.bat
-reg file: settings.reg

install.bat:

@echo off
start /wait uiso86pes.exe /VERYSILENT /SP-
start /wait regedit /s settings.reg
exit

settings.reg (edit it):

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\EasyBoot Systems\UltraISO\5.0]
"UserName"="your name"
"Registration"="your serial number"

Build the installer using 7zS.sfx (see Keytotime post here: http://www.msfn.org/board/index.php?showto...39048&st=0), with the next lines in config.txt:

;!@Install@!UTF-8!
RunProgram="install.bat"
;!@InstallEnd@!


You can also use AT File Mole and Resource Hacker to extract and change your installer icon.
mty
VMware5 tools


msiexec -i "d:\VMware Tools.msi" ADDLOCAL=ALL REBOOT="ReallySuppress" /qn


You can copy vmware tools from guest operating system pseudo - CD.
Select "VM - Install VMWARE tools" from vmware menu.
Arie
Spybot - Search & Destroy 1.5

Whereas /VERYSILENT worked with the installation of Spybot - Search & Destroy 1.4, it no longer works with version 1.5. This is because Spybot - Search & Destroy 1.5 tries to update itself during the installation. If your machine does not have an internet connection during installation, it cannot update itself... and instead of simply continueing then, the installation stops with an error. To have Spybot - Search & Destroy 1.5 install completely unattended, without connecting to the internet to update during the installation, start the installation as follows.

CODE
spybotsd15.exe /verysilent /components=""

Adding main to the components section will install Spybot - Search & Destroy 1.5 the same way as it will when only running with the /verysilent parameter. Other components which you can add (comma seperated) are: blind, language and skins.

To update the installation unattended without connecting to the internet, download the latest spybotsd_includes.exe file from the Spybot - Search & Destroy web site and execute it with the /S parameter after the installation of Spybot - Search & Destroy 1.5 has finished.
lotsill
SYMANTEC ANTIVIRUS 10.1.5


REM Installing ANTIVIRUS 10.1.5

start /wait msiexec /i "\\server\share\sav 10.1.5\Symantec AntiVirus.msi" REBOOT=ReallySuppress INSTALLSERVER=0 NETWORKTYPE=1 SERVERNAME=severrname RUNLIVEUPDATE=1 ADDLOCAL=SAVMain,SAVUI,SAVHelp,EMailTools,OutlookSnapin,Pop3Smtp,QClient NETWORKTYPE=1 ENABLEAUTOPROTECT=1 RUNLIVEUPDATE=1 REBOOT=ReallySuppress /qb


ROXIO 9



REM Installing ROXIO 9

start /wait msiexec /i "\\server\share\software\roxio 9\RCP_AUDIO_33\AUDIO.msi" TRANSFORMS="\\server\share\software\roxio 9\RCP_AUDIO_33\1033.mst" /qb
start /wait msiexec /i "\\server\share\software\roxio 9\RCP_COPY_33\COPY.msi" TRANSFORMS="\\server\share\software\roxio 9\RCP_COPY_33\1033.mst" /qb
REM "Roxio Creator DE" Core Component (Displayed in Add/Remove Programs as "Roxio Creator DE"):
start /wait msiexec /i "\\server\share\software\roxio 9\RCP_CORE_33\RCPCORE.msi" TRANSFORMS="\\server\share\software\roxio 9\RCP_CORE_33\1033.mst" /qb
start /wait msiexec /i "\\server\share\software\roxio 9\RCP_DATA_33\BMPLE.msi" TRANSFORMS="\\server\share\software\roxio 9\RCP_DATA_33\1033.mst" /qb
start /wait msiexec /i "\\server\share\software\roxio 9\RCP_TOOLS_33\TOOLS.msi" TRANSFORMS="\\server\share\software\roxio 9\RCP_TOOLS_33\1033.mst" /qb
start /wait msiexec /i "\\server\share\software\roxio 9\shareLABELER_30\LABELER.msi" TRANSFORMS="\\server\share\software\roxio 9\shareLABELER_30\1033.mst" /qb
start /wait msiexec /i "\\server\share\software\roxio 9\Activation_103\Activate.MSI" TRANSFORMS="Activation_103\1033.mst" /qb /norestart
REM Import registry data to suppress product registration dialog:
REM Import registry data to suppress product registration dialog:
reg import "\\server\share\software\roxio 9\roxio_noreg.reg"



OFFICE


REM Installing MS Office 2003

start /wait msiexec /i "\\server\share\software\office 2k3\pro11.msi" TRANSFORMS="\\server\share\software\office 2k3\custom.mst" /qb



REM INstalling MS Office 2003 Service Pack 3

"\\server\share\software\office 2k3\sp3\Office2003SP3-KB923618-FullFile-ENU\ohotfix.exe"



REM Installing Office 2007 Compatibility Pack

start /wait msiexec /i "\\server\share\software\Office 2007 Compatibility Pack\O12Conv.msi" /qb
hyde
Check this website....you'll find SWITCHES for all the applications

http://www.appdeploy.com/

newwink.gif
toophar
GetRight Pro 6.3c


cls
@echo off
title GetRight Pro Silent Install

ECHO Installing GetRight Professional 6.3C
ECHO Please wait...
REG ADD HKEY_CURRENT_USER\Software\Headlight\GetRight\Config /v GRCode /d yourregcodehere
start /wait %sourcedrive%\getright_pro.exe /verysilent


echo.
pause
exit
belivakov
Adobe Reader 8.1 including dictionary pack:
AdbeRdr810.exe /sPB /rs /l /msi"/qb-! /norestart /log c:\acrobat8.log ALLUSERS=2 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES"
RDRDICT.MSI /passive

BootSkin:
/S

CorelDRW X3:

msiexec.exe /i "d:\CGS13\setup.msi" /L0x0409 /V" /qn SERIALNUMBER=XXXXXX-XXXXXXX-XXX

*Note that the SERIALNUMBER property must be given in this command line.

Acronis Disk Director Suite:

AcronisDiskDirectorSuite.msi PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /Qn /norestart
DirectX 9.0c:

dxsetup.exe /silent

Driver Genius Professional:

/silent

Orca:

msiexec.exe /i orca.msi /qb-

USBSaveRemove:

/LANG=EN /SILENT

Windows Media Player including hotfixes; WMP Tag support; WMP Tag support Extender and WMP Minimize To Tray:

start /wait /abovenormal WMP11.exe /Q
start /wait windowsmedia11-kb928788-x86-intl.exe /PASSIVE /NORESTART /NOBACKUP
start /wait windowsmedia11-kb929399-v2-x86-intl.exe /PASSIVE /NORESTART /NOBACKUP
start /wait windowsmedia11-kb929773-x86-intl.exe /PASSIVE /NORESTART /NOBACKUP
start /wait windowsmedia11-kb932390-x86-intl.exe /PASSIVE /NORESTART /NOBACKUP
start /wait windowsmedia11-kb933547-x86-intl.exe /PASSIVE /NORESTART /NOBACKUP
start /wait windowsmedia11-kb935551-x86-intl.exe /PASSIVE /NORESTART /NOBACKUP
start /wait windowsmedia11-kb935552-x86-intl.exe /PASSIVE /NORESTART /NOBACKUP
start /wait windowsmedia11-kb939209-x86-intl.exe /PASSIVE /NORESTART /NOBACKUP
start /wait windowsmedia11-kb942264-x86-intl.exe /PASSIVE /NORESTART /NOBACKUP
start /wait windowsmedia11-kb944110-x86-intl.exe /PASSIVE /NORESTART /NOBACKUP
start /wait WMPTagSupport11.exe /SILENT /SUPPRESSMSGBOXES
start /wait MSIEXEC /A WMPTagSuppExt.msi /QB
start /wait wmfdist-11.exe /PASSIVE /NORESTART /NOBACKUP
start /wait regsvr32 /s WmTray.dll

Microsoft SilverLight:

/q

RocketDock:

/SILENT

Microsoft XML Notepad:

msiexec /i XmlNotepad.msi /passive

VirtualBox:

msiexec.exe /i VirtualBox_1.5.4_Win_x86.msi /qn

WinMount:

/SILENT
Stoner81
This is for Windows Live Messenger v8.5

I use this in my WPI and as a stand alone install to run with a .bat file which you simply remove and use the exact same switches in the WPI to do the same thing.

CODE
title=Windows Live Messenger v8.5 Installer
@ echo off
cls
echo.
echo Welcome to Stoner's custom installer for Windows Live Messenger v8.5,
echo this will also install the Windows Live Sign In Assistant, the
echo Windows Live Safety Scanner.
echo.
echo So lets get started shall we?
echo.
pause
echo Installing...

start /wait Files\1-WindowsLiveMessengerv8.5Setup.msi /qb
start /wait Files\2-WindowsLiveSignInAssistant.msi /qb
start /wait Files\3-WindowsLiveSafetyScanner.exe /s
regedit /s Files\4-Settings.reg

cls
echo.
echo Install complete! Enjoy Windows Live Messenger v8.5
echo.
pause
exit


Hope this helps somebody smile.gif

Stoner81
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.