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
dansouza
Windows Media Player 10

Download Enterprise Deployment Pack from http://download.microsoft.com/download/E/D...AEA77/mpedp.exe and install it.

Copy the MPSetup.exe or mp10setup.exe into "C:\MPEDP\Redist"

Launch the tool from the start menu and follow the prompts. Creates an MSI in "C:\MPEDP\release" which can be installed using the /quiet /norestart switches.
Loras
Registry Crawler silent install:
At first install RCrawler and register it. Export registry to .reg file, then:

CODE
rcrawler.exe /s


then apply reg file. We need only one key: "4D".....
stasys44
TILDES BIURAS (TILDES BIUROJS)

I use:
TildesBiuras2004\setup.exe /s /v"/qb PSWD=XXXX1111X-XXX-11111111"
You should fill your pasword. It's not mine, from Latvia, maybe Edvards (INSTALL?) - I cannott remember.

Kaunas, Lithuania
muiz
Ultra Iso 7.6.2.1180

CODE
uiso7_me.exe /VERYSILENT /SP-
OrcoXP
UltraISO_Media_Edition_v7.6.2.1180

CODE
UltraISO.exe /SILENT /NOCANCEL /DIR="%ProgramFiles%\Burning & Compression\UltraISO" /GROUP="Burning & Compression\UltraISO"
Loras
F-Secure Anti-Virus Client Security 6.00 Silent Instalation

******************************************************
1.Download F-Secure Anti-Virus Client Security 6.00
from F-Secure
2. Extract fscs600-eval-ms.exe to i.e D:\F-Secure
3.There you must find file prodsett.ini. Open in editor.

Manual from F-Secure about prodsett.ini configuration :F-Secure Administrator's Guide (~3.2MB)

4. Make Changes in:

[F-Secure common]
SetupMode=2
CD-Key=xxxx-xxxx-xxxx-xxxx-xxxx(put there your CD key)
SourceMediaPath=\
ProductInformationIni=product.ini


All sections:
SilentMode=1 (replace 0 with 1 in all entries)
Debug=0 (replace 1 with 0 in all entries)


If not Exist add new section:

[Silent Setup]
DestinationDirUnderProgramFiles=F-Secure
Reboot=3
SilentModePluginsLang=ENG


[GUI]
; Dlg...Off = 0 | 1 | 2
; where: 0 - always display
; 1 - display in custom mode, skip in typical mode
; 2 - always hide.
DlgWelcomeOff = 1
DlgLicenseOff = 1
DlgKeycodeOff = 1
DlgUserModeOff = 1
DlgSelectComponentsOff = 1
DlgSelectPathOff = 1


BTW you can set options to not install some components.
Read manual

5. Run Setup.exe and stop when window with components apear.
6. Go to directory "%userprofile%/local settings/temp/fssetup"
and copy folder "00000001" to safe place and exit installation.
7. Copy file product.ini from "00000001" to your F-Secure directory (i.e D:\F-Secure)
8. Download FSUpdate.exe from F-Secure FSUpdate.exe (latest definitions)

9. Now install F-Secure with silent switch -s

10.Restart computer and execute FSUpdate.exe
11.Go to C:\Program Files\F-Secure\Anti-Virus\ and add folder "dbupdate" to .sfx
12. Create a reg file (I'll edit soon..now I'm going to bed)

For complete silent install do this:

setup.exe -s
reghack.reg
dbupdate.exe
Sodium Cyanide
Microsoft Money Silent Install
Microsoft Money 2006 Deluxe

CODE
SETUP.EXE /qn


Here is a great reference from MSDN about packages executed with Msiexec.exe.
Sodium Cyanide
DVDFab Silent Install
DVDFab Platinum 2.9.4.5

It's an Inno Setup installer. I use

CODE
DVDFabPlatinum29.exe /VERYSILENT /NOCANCEL /NORESTART


Also, you will need to add a registry setting to apply your cdkey and some default settings that are usually added when the program is first run. Replace the x's with your cdkey:

For Windows XP and 2000
CODE
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.DVDFabPlatinum\shell\open\command]
@="C:\\Program Files\\DVDFab Platinum\\DVDFabGold.exe "%1""

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DVDFabPlatinum\DefaultIcon]
@="C:\\Program Files\\DVDFab Platinum\\DVDFabGold.exe,0"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DVDFabPlatinum\shell\open\command]
@="C:\\Program Files\\DVDFab Platinum\\DVDFabGold.exe "%1""

[HKEY_LOCAL_MACHINE\SOFTWARE\Fengtao Software\DVDFab Platinum]
"Key"="xxxxxxxxxxxxxxxxxxx"


For Windows 98, ME, and NT 4.0
CODE
REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.DVDFabPlatinum\shell\open\command]
@="C:\\Program Files\\DVDFab Platinum\\DVDFabGold.exe "%1""

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DVDFabPlatinum\DefaultIcon]
@="C:\\Program Files\\DVDFab Platinum\\DVDFabGold.exe,0"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DVDFabPlatinum\shell\open\command]
@="C:\\Program Files\\DVDFab Platinum\\DVDFabGold.exe "%1""

[HKEY_LOCAL_MACHINE\SOFTWARE\Fengtao Software\DVDFab Platinum]
"Key"="xxxxxxxxxxxxxxxxxxx"
Sodium Cyanide
Xfire Silent Install
Xfire 1.45

It's a Nullsoft (NSIS) installer. Remember NSIS parameters must be capitalized. I use

CODE
xfire_installer.exe /S


Using this method, Xfire does not create shortcuts in the user directories or in the Windows startup folder as it does in the normal install. To combat this, we must make our own batch file to do the work for it. I use a freeware program called shortcut.exe that simplifies the task of making Windows shortcuts. Here is my custom Xfire batch file. You can run it anytime after Xfire is installed, possibly during your cleanup phase:

xfire.bat
CODE
mkdir "%ALLUSERSPROFILE%\Start Menu\Programs\Xfire\"
shortcut.exe /f:"%USERPROFILE%\Start Menu\Programs\Startup\Xfire.lnk" /a:c /t:"%PROGRAMFILES%\Xfire\Xfire.exe" /i:"%PROGRAMFILES%\Xfire\Xfire.exe"
shortcut.exe /f:"%ALLUSERSPROFILE%\Start Menu\Programs\Xfire\Xfire.lnk" /a:c /t:"%PROGRAMFILES%\Xfire\Xfire.exe" /i:"%PROGRAMFILES%\Xfire\Xfire.exe"
shortcut.exe /f:"%ALLUSERSPROFILE%\Desktop\Xfire.lnk" /a:c /t:"%PROGRAMFILES%\Xfire\Xfire.exe" /i:"%PROGRAMFILES%\Xfire\Xfire.exe"


Here is the shortcut.exe program I use. You will need this for the batch file to work properly.
Click to view attachment
MageJubi
ROXIO 7 (The one that comes with burners, etc.)

There are two .msi on the disk. (The .msi filenames have been shortened for convienance.) While I did a search, and found nothing for Roxio 7, there's probably several ways to go about it. This works in real time for me.




REG ADD %KEY%\002 /VE /D "Installing roxio 7" /f
REG ADD %KEY%\002 /V 1 /D "%systemdrive%\Install\Roxio\ISS.msi /quiet" /f
REG ADD %KEY%\002 /V 2 /D "%systemdrive%\Install\Roxio\Roxio.msi /quiet" /f
JoeMSFN
Install Adobe Reader 7.0.5 with "Display PDF in browser" unchecked, not disabled.

The solution is pathetically simple, (doesn't even require a transform).... ready... don't blink, you'll miss it.

Thanks to MarkATS's post in the Adobe forums with this post. (select Log in as guest near the bottom).

To quote from the page
QUOTE
On the commandline, set the property: INSTALLLEVEL=99

I personally now use
CODE
msiexec /qb /i "Adobe Reader 7.0.5.msi" INSTALLLEVEL=99 TRANSFORMS="Adobe Reader 7.0.5.mst"

After using the InstallShield Tuner setting "Disable Display of PDF in Browser", and getting some negative feedback from people who like the feature, I set on a long path of finding how to allow it to be re-enabled, but unchecked by default. Many registry and file compares later with nothing but broken installs to show for it, I stumbled across the above parameter (ok not technically a switch, if this post doesn't belong here, politely PM me where it should go and I'll remove contents and post elsewhere).

I have personally tested this with a fully up to date Win XP installation with both IE and Firefox 1.0.7 and it successfully toggles for both browsers. It starts with .pdf's loading in standalone reader, but when you check "Display PDF in browser", it successfully toggles it back to in the browser!!!!

Enjoy MSFN community!
Nakatomi2010
OpenOffice 2.0 has changed interms of a silent install.

The command is now 'setup.exe -qn' and she'll isntall silently...
ladude626
Please add this to the database:

Mozilla Firefox

Switch: -ms
Full Syntax: Firefox.exe -ms
Extraction Needed: No

NOD32

Switch: /silentmode
Fullsyntax: ndntenst.exe /silentmode
Extraction Needed: No
hamohd70
Acronis TrueImage 9

AcronisTrueImage.msi /qn PIDKEY="xxxxxxxxxxxxxxxxxxxxxxxxx"
rikgale
QUOTE
OpenOffice 2.0 has changed interms of a silent install.

The command is now 'setup.exe -qn' and she'll isntall silently...


Also for open office you can just download the .exe file and use /S as well.

e.g. Oo2.exe /S
Doc Symbiosis
Foxit PDF Reader silent install ( a small and fast pdf reader, whose only disadvantage is, that it can't handle form-sheets):
I just wrote a batch to install the foxit PDFReader and set it as default application for opening pdfs. It installs the Reader to %PROGRAMFILES%.
Just put the exe, the reg and the cmd file into the same directory and call the batch.
DL.
QUOTE (Doc Symbiosis @ Nov 11 2005, 10:33 AM) *
Foxit PDF Reader silent install ( a small and fast pdf reader, whose only disadvantage is, that it can't handle form-sheets):
I just wrote a batch to install the foxit PDFReader and set it as default application for opening pdfs. It installs the Reader to %PROGRAMFILES%.
Just put the exe, the reg and the cmd file into the same directory and call the batch.

It doesn't work, please replace the batch with this:
CODE
@echo off&setlocal enableextensions
REM Change the current path to the directory of this batch
cd /D %~dp0

REM Copy the programfile to the "PROGRAM FILES"-directory
mkdir "%PROGRAMFILES%\Foxit PDFReader"
Copy "Foxit Reader.exe" "%PROGRAMFILES%\Foxit PDFReader" /Y

REM Import the registry-settings, not containing any paths
regedit /S foxit.reg

REM Set exefile to the .exe-file of Foxit PDF Reader
set exefile=%PROGRAMFILES%\Foxit PDFReader\Foxit Reader.exe

REM import the registry settings, containing a path
REG ADD "HKCR\FoxitReader.Document\DefaultIcon" /VE /D "%exefile%,1" /F
REG ADD "HKCR\FoxitReader.Document\protocol\StdFileEditing\server" /VE /D "%exefile%" /F
REG ADD "HKCR\FoxitReader.Document\shell\open\command" /VE /D "\"%exefile%\" \"%%1\"" /F
REG ADD "HKCR\FoxitReader.Document\{14E8BBD8-1D1C-4D56-A4DA-D20B75EB814E}\DefaultIcon" /VE /D "%exefile%,1" /F
REG ADD "HKCR\FoxitReader.Document\{14E8BBD8-1D1C-4D56-A4DA-D20B75EB814E}\LocalServer32" /VE /D "%exefile%" /F
endlocal
Frechdax3000
Inno Setup Command Line Switches and Exit Codes

testet with:
DVDFab Platinum 2.9.6.5 & Super Flexible File Synchronizer v2.61 (without the langugae option testet the app is in engl.)

1.) DVDFab Platinum 2.9.6.5
export first your reg.info from:
[HKEY_CURRENT_USER\Software\Fengtao Software\DVDFab Platinum]

then make an *.cmd (* your name )
CODE
regedit.exe /s dvdfab.reg
DVDFab29.exe /VERYSILENT /SP- /LANG=english (or skip this)** / /NORESTART
EXIT

then make an winrar sfx

Setup= your *.cmd )
TempMode
Silent=1
Overwrite=1

thats all
**: for german LANG=deutsch

2.) Super Flexible File Synchronizer v2.61

export first your reg.info from:
[HKEY_LOCAL_MACHINE\SOFTWARE\SuperFlexibleSynchronizer]
then make an *.cmd (* your name )
CODE
regedit.exe /s dvdfab.reg
SuperFlexibleSetup.exe /VERYSILENT /SP- /LANG=english (or skip this) / /NORESTART
EXIT

then make an winrar sfx

Setup= your *.cmd )
TempMode
Silent=1
Overwrite=1

thats all

NOTES: the setup.exe's name are is induvidual, make sure you creect the values in the *cmd

more switches: http://www.appdeploy.com/tips/detail.asp?id=113
Loras
QUOTE
You lost me here....
9) Need the f-secure folder on cd?
Do a silent install in RunOnceEx?

10) Then have windows restart in RunOnceEx?
Execute FSUpdate.exe via RunOnceEx?

11) ???
12) ??

Does not seem very unattended to me...maybe I misunderstood?


These all steps is ONLY for making Unattended files...
You need install F-Secure before execute "FSUpdate.exe". Then install virus updates and make
dbupdate.sfx.
Finaly you have one directory "F-Secure" and two files - dbupdate.sfx and reghack.reg
Place them to your UA CD and and execute from RunOnceEx fsecure.exe -s, then dbupdate and reghack.
That's all smile.gif
Sodium Cyanide
Xfire

I had this posted here a long while ago, but it looks like it got deleted from the topic. Xfire used to not make shortcuts properly, but thanks to a forum post it has been fixed as of version 1.50.

The current switch is:

CODE
xfire_installer.exe /S

Which is 100% functional. For archival purposes, the old method was using a small Delphi shortcut-making program and this batch file:

silent.bat
CODE
mkdir "%ALLUSERSPROFILE%\Start Menu\Programs\Xfire\"
shortcut.exe /f:"%USERPROFILE%\Start Menu\Programs\Startup\Xfire.lnk" /a:c /t:"%PROGRAMFILES%\Xfire\Xfire.exe" /i:"%PROGRAMFILES%\Xfire\Xfire.exe"
shortcut.exe /f:"%ALLUSERSPROFILE%\Start Menu\Programs\Xfire\Xfire.lnk" /a:c /t:"%PROGRAMFILES%\Xfire\Xfire.exe" /i:"%PROGRAMFILES%\Xfire\Xfire.exe"
shortcut.exe /f:"%ALLUSERSPROFILE%\Desktop\Xfire.lnk" /a:c /t:"%PROGRAMFILES%\Xfire\Xfire.exe" /i:"%PROGRAMFILES%\Xfire\Xfire.exe"
ron0909
QUOTE (avgasse @ Feb 29 2004, 02:29 AM) *
Total Commander 6.01
  • Download the installer.
  • Using Total Commander itself, open the installer using CTRL+PGDN
  • Copy install.inf to the other pane using F5. You could also use your favorite packer program like winzip, winrar,... but why bother if you have TC? thumbup.gif
  • Edit install.inf as follows:
CODE
[auto]
auto=1
lang=1
alllang=1
iniloc=c:\totalcmd
iniall=1
mkgroup=1
mkdesktop=1
  • See the section [Languages] to know your language number. If you are reading this forum, you are smart enough to figure out the rest of the file.
  • Put install.inf back in the installer (copy it back using F5).
  • To do an unattended installation, just run the modified installer.
  • If you are a registered user, copy the file wincmd.key in the installation folder.


If you have the key, copy it into the installer just as you did with install.inf and once again modify install.inf
to include the 2nd entry below

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


Thanks for sending me searching in the right direction Avgasse!

Ron
beaker
Mp3tag

Switch: /S /D=dirname
Usage: mp3tagv232bsetup.exe /S /D=D:\Multimedia\Mp3tag
Extraction needed: No

Verified and working...

[EDIT] added link
JoeMSFN
7-zip 4.32 Per the FAQ...
use /S

so for me it is
CODE
7z432.exe /S


Thought I'd add this since I'm making a fresh disc, and 7-zip is at the top and is now wrong for the newst version. newwink.gif
Now just wish I could have a progress bar when installing silently. whistling.gif
Corke
QUOTE (hamohd70 @ Nov 10 2005, 10:49 PM) *
Acronis TrueImage 9

AcronisTrueImage.msi /qn PIDKEY="xxxxxxxxxxxxxxxxxxxxxxxxx"

I have tried this one and it works perfectly.
start /wait %systemdrive%\Install\Apps\Acronis.True.Image.9.0.0.2337\AcronisTrueImage.msi PIDKEY=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx/qb+ /norestart
Nakatomi2010
I'm sure most people have figured this out, but I'm adding it anyways...

Windows Defender Beta 2 is install silently with
CODE
%Location%\WindowsDefender.msi /qn


Of course, you need a machine with a valid CDKey for it to install at all.. If the key is not valid it will not regurgitate an error.... It simply wont install....
Ivanov
X-Chat v2.x

xchat.exe /S

eMule Plus 1.2

eMulePlus-1.2.Installer.exe /SILENT
Crusty01
The switch for Everest Home Edition 2.20:

(name of Everest file altered in this example, use the file downloadable from main software sites)

@ECHO.
@ECHO Installing Everest Home Edition 2.20
@ECHO Please wait...
Start /wait %systemdrive%\install\Ev220.exe /VERYSILENT
sz2201
eRightSoft SUPER 2006.17
SUPERsetup.exe /q1 /b0
followed by a
taskkill /F /IM hh.exe

Havent fully tested yet, but this should work for anything else using the Tarma installer as well laugh.gif
nDrew
NOD32 Antivirus 2.5x

Unpack the original distribution. There's a file setup.exe there...

setup.exe /silentmode /cfg=myconfig.cfg /instmfc /noreboot

...where myconfig.cfg - is your config made with nod32's Configuration Editor

KAV 5 (Kaspersky Anti-Virus Personal 5.0.xxx)
CODE
Dim WshShell, fso, objArgs, pf, aup, dir

Set WshShell = WScript.CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
On Error Resume Next

pf = WshShell.ExpandEnvironmentStrings("%Programfiles%")
aup = WshShell.ExpandEnvironmentStrings("%AllUsersProfile%")
dir = fso.GetParentFolderName(WScript.ScriptFullName)

WshShell.Run (dir & "\Personal.exe /S /D=" & pf & "\KAV"), 1, true

fso.DeleteFile(aup & "\Application Data\Kaspersky Anti-Virus Personal\5.0\Bases\*.*"), true
fso.CopyFolder dir & "\bases", aup & "\Application Data\Kaspersky Anti-Virus Personal\5.0\Bases"
fso.CopyFile dir & "\MYKEY.key", pf & "\KAV\MYKEY.key.yek"

Wscript.Quit


where MYKEY.key - is your LEGAL key for KAV5
T D
PowerArchiver: powarc.exe /VERYSILENT
Inno Setup

Messenger Plus Live 4.xx msgpluslive.exe /Silent
n/a
Rulle
First Class:

Extract downloaded file:
FC8200US.exe -extract_all:"C:\Temp"

Create setup.iss (from the extracted folder):
setup.exe /r
The answerfile will be in C:\Windows

Silent install:
X:\FC82\Setup.exe /s /sms /f1X:\FC82\Setup.iss
or
\\SRVNAME\SHARE\Setup /s /sms /f1\\SRVNAME\SHARE\Setup.iss
Doggie52
PowerISO

PowerISO30.exe /S

Using that switch will not make the program define it's file asociations, you can do that later inside the program itself.
mastrboy
i finaly found some HP Softpaq switches on a forum


QUOTE
I do a lot of unattended installs of Windows an find that extracting or silently installing some of the HP Softpaq drivers is quite troublesome. Over time I've discovered a number of options that may be helpful:

* "SPxxxxx.exe is the SoftPaq to unpack
* "-pdf" is a runtime switch that overrides the build parameters
* "-f" is a runtime switch that overrides the default path set at build time
* "-s" instructs the package to unpack in silent mode, skipping the Welcome, License, and Directory screens
* "-e" instructs the package to extract only, that is, do not run the component installation program.
* -s -a -silent -reboot (Good for silent installs.)
ricktendo64
Diskeeper 10 Professional

Switch: /S /v/qb or /qn
Example: dskkpr.exe /S /v/qb

No registration window
The "/S" has to be in CAPS or install will fail, this is the EXE file no need to extract
Sneakyghost
Opera 9.01 International

Silent & Invisible:

/S /v/qn

Extraction needed: No

Make sure you have all switches exactly the way it is shown above! Slash, capital "S", space and then lower case "v" followed by slash and lower case "qn"

Dunno if anyone needs or wants this, just came across the thread hunting for an opera switch. Since i didn't find it i post it (after having done the famous command "/?" on the opera exe....).

(i don't mention that it took me 30 minutes to actually have that idea....)

whistling.gif
andrew84uk
IE7 RC1

To install this silantly just download the package and do this

CODE
START /WAIT %SystemDrive%\updates\hotfix\ie7\IE7RC1.exe /quiet /norestart


Its as easy as that.
crahak
Not exactly mainstream apps, but could always be useful to somebody else...

Atmel AVR Studio 4.12 and SP3 for Atmel AVR Studio 4.12:
Both use an Installshield installer (-R to record to setup.iss, -s for silent install). Select W/O USB driver if you don't want that to popup (can easily be installed later, and no use unless you've got like a USB JTAG ICE or such)

Software for Tekpower lab equipment (multimeter, adj power supplies, etc - for RS232 comms) uses installshield as well (same switches, -R, -s)

CodeVisionAVR C Compiler: password protected Inno installer:
setup.exe /VERYSILENT /SP- /PASSWORD=passwordgoeshere

ImageCraft ICCAVR seemingly has no switches (home made installer?) You have to capture/repack it.

I'll spare you guys the really weird/unusual stuff newwink.gif

[edit] More stuff:

PerfectDisk Command Center 8
Installshield
-r to record, -s [-f1] [-f2] as usual

WinMerge 2.4.10
Inno
/VERYSILENT /SP-

SQL2005 Service Manager 1.0.0.10
MSI
/qb or /qn

Unleash It v2.4.1.0
NSIS
/S

GhostDoc 1.9.5 (for 2005; v1.3.0 for 2003)
MSI
/qb or /qn

The Regulator 2.03
MSI
/qb or /qn

Console 2.00 Beta
No installer!
Use $OEM$ or make a SFX
masterhard
from the opensource and free software guys....GZIP for windows!!

http://prdownloads.sourceforge.net/gnuwin32/gzip-1.3.5-3.exe?

echo Installing Gzip...
start /wait %cdrom%\cabs\GNU\gzip1.3.exe /VERYSILENT /SUPPRESSMSGBOXES


more info about inno setup:
http://gnuwin32.sourceforge.net/setup.html
ps: my second post here i think =)
masterhard
ACTIVESYNC from the M$ guys smile.gif

download:
http://www.microsoft.com/downloads/details...;DisplayLang=en

echo Installing ActiveSync
start /wait %cdrom%\cabs\phone\activesync.exe /S /v/qn


these switches worked with both 4.1 and 4.2 versions =)

more info:
http://www.microsoft.com/windowsmobile/bus...tmodesetup.mspx

have a nice day thumbup.gif
masterhard
for those people who DBPowerAMP gives annoying moments

CODE
echo install DBPowerAmp FAAC Codec
start /wait %cdrom%\cabs\MM\dBpowerAMP-codec-FAAC-mp4.exe ^<Silent^>

echo install DBPowerAmp WMA9 Codec
start /wait %cdrom%\cabs\MM\dBpowerAMP-codec-wmav9.exe ^<Silent^>

echo install DBPowerAmp Ogg Codec
start /wait %cdrom%\cabs\MM\dBpowerAMP-codec-ogg.exe ^<Silent^>

echo install DBPowerAmp
start /wait %cdrom%\cabs\MM\dMC-r11.exe ^<Silent^>

taskkill /IM musicconverter.exe


tongue.gif
rhyvun
Here is a tool to assist in the installation of Adobe Acrobat that I just happened to stumble across. I don't think it's been posted anywhere but it's direct from adobe, here ya'lls go.

http://www.adobe.com/support/downloads/detail.jsp?ftpID=1272
berrios-zipline
Because I am lazy,

I use the free addition of Caphyon's Advanced Installer to create my own *.msi slip stream installers. I used it for sysinternals applications, putty, WinDirStat, TrueCrypt, etc ... The standard cmd line options for *.msi are supported, so /quiet works. I even used it, again because I am lazy, to install all my quick launch shortcuts. I prefer doing this because the uninstaller is included for free and I can tweak how I want the apps installed

here is the link: http://www.caphyon.com/
http://www.advancedinstaller.com/
Plamdi
Adobe Reader 8.0:

Files required:

AcroRead.msi
Data1.cab


All other files may be deleted.

Silent Installation:
CODE
msiexec /i AcroRead.msi /qb
Auto-accept EULA:
CODE
REG ADD "HKLM\Software\Adobe\Acrobat Reader\8.0\AdobeViewer" /V "EULA" /T REG_DWORD /D 1 /F
Contrary to popular belief, it is NOT necessary to also add this to HKeyCurrentUser.
Shark007
QUOTE (Alanoll @ May 10 2004, 04:28 PM) *
Notice

This thread is for posting switches, not requesting or saying you've had problems. I went through and deleted all posts regarding requests and problems. Please Read the very first thread next time.

Well that was 2.5 years ago..

Cleaned up again today, Lets keep it clean.

SUBMISSIONS ONLY - PM THE AUTHORS IF SOMETHING DOESNT WORK

shark
03GrandAmGT
For all who don't have the switches for PORT95NT.exe, here they are. Copy and paste to your RunOnceEx.cmd

This is a module for LCD displays for the parallel port. Looked on the board and couldn't find anything.

REG ADD %KEY%\045 /VE /D "PORT95NT" /f
REG ADD %KEY%\045 /V 1 /D "%systemdrive%\Install\applications\port95nt\port95nt.exe /s /a /s" /f

john
wan
Desktop Sidebar 116 http://desktopsidebar.com

QUOTE
Dynaletik :
After downloading the package, I extract it using WinRAR and then I have an .msi file that can be installed using
CODE
DesktopSidebar.msi /qb-!
auspcs
MCAFEE VIRUSSCAN V10 and SPAMKILLER V10 (2006)
Hi all,
Im new to this "posting in forums thing" but have been here for yonks. I have been struggling to work out Mcafees Virusscan V10 for the past 3 days. Its got a nasty little zipped file called vsoins.ui and its passworded so you can't get in and change the install behaviour. I was stumped to find a way to silently install it. Anyway, last night I thought I'll have a break from it and move on to Mcafees Spamkiller V10. I cut the spamkiller folder from an Internet Security 2006 OEM CD and ran the setup.exe to watch it and lo and behold it installed "Very Silent" straight from the CD, I thought wow, dont have to do anything with that one, anyway, I went back to the same CD and did the same with Virusscan, and it too installed silently. SO what I couldn't do with the virusscan CD Was already done for me on the Internet Security CD.

Hope this helps anyone else trying to silently install this V10 Mcafee...

On a side note- I made a winrar SFX file to do this because Mcafee deletes the source folder on reboot. very annoying
Is that a correct post for here? it is a contribution I think.

Hey do I get flamed if I ask how to silently install Limewire......

Just kidding guys.
daddydave
CSDiff
Switch: -s [case sensitive]
Full syntax: CSDiff50.exe -s
Extraction needed: yes, from csdiff.zip
Program Site:http://www.componentsoftware.com/Products/CSDiff/index.htm

This is a file and folder differencing tool, my favorite.

This uses Ghost Installer, which PEID doesn't seem to recognize.

-----

XMLPad 3
WMHelp XMLPad 3.0.1 setup , although an .EXE, has an MSI inside which can be extracted with Universal Extractor...so you can just install that silently.
Program Site: http://www.wmhelp.com/index.htm
wolfshade
from my batch:

CODE
echo Installing Adobe Reader
start /wait E:\PostInst\AR\AR8.exe /sAll
echo.


CODE
echo Installing ATI Catalyst Control Center
start /wait E:\PostInst\ACCC\setup /s /v"/qn /norestart"
echo.


CODE
echo Installing FlashGet
start /wait E:\PostInst\FlashGet\FG /s
pskill flashget
start /wait regsvr32 /u /s "c:\program files\google\googletoolbar1.dll"
echo.


CODE
echo Installing Sun Java VM
start /wait E:\PostInst\SJavaVM\SJavaVM /s /v"/qn addlocal=jrecore iexplorer=1 reboot=suppress javaupdate=0 webstarticon=0"
echo.


CODE
echo Installing RegEditX
start /wait E:\PostInst\regeditx\regeditx /s
echo.


CODE
echo Installing WinRAR
start /wait E:\PostInst\WinRAR\winrar /s
copy "E:\PostInst\WinRAR\rarreg.key" "%ProgramFiles%\WinRAR"
copy "E:\PostInst\WinRAR\Settings.reg" "%ProgramFiles%\WinRAR"
start /wait regedit /s "%ProgramFiles%\WinRAR\Settings.reg"
echo.


CODE
echo Installing Yahoo Messenger
start /wait E:\PostInst\ymsgrie\ymsgr8 /s
pskill YahooMessenger
echo.
blahface
Winrar:

In WinRAR 3.70 we added -d<path> SFX option, so you can
try to use it like this:

wrar37b2.exe -s "-dc:\program files\winrar37"

It is not supported by earlier WinRAR versions.
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.