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
SeDkY
QUOTE
REG ADD %KEY%\044 /VE /D "DVD Shrink 3.2" /f
REG ADD %KEY%\044 /V 1 /D "%systemdrive%\Install\dvdshrink.exe /SUPERSILENT"  /f


is better newwink.gif
--=ddSHADOW=--
CDCheck 3.1.2.0

QUOTE
REG ADD %KEY%\014 /VE /D "CDCheck 3.1.2.0" /f
REG ADD %KEY%\014 /V 1 /D "%systemdrive%\install\CDCheck\START.vbs " /f
REG ADD %KEY%\014 /V 2 /D "REGEDIT /S %systemdrive%\install\CDCheck\register.reg" /f
START.vbs
QUOTE
Set WshShell = WScript.CreateObject("WScript.Shell")
'To Simulate Keystrokes
WshShell.Run app & "%systemdrive%\install\CDCheck\CDCheckSetup3.1.2.0.exe"
WScript.Sleep 1000
WshShell.SendKeys "{ENTER}"
WScript.Sleep 200
WshShell.SendKeys "{ENTER}"
WScript.Sleep 3000
WshShell.SendKeys "{TAB}"
WScript.Sleep 200
WshShell.SendKeys "{ENTER}"
WScript.Quit


register.reg
QUOTE
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\SOFTWARE\CDCheck]"RegCode"=dword:your dword

example

"RegCode"=dword:1565467
muff99
TugZIP 3.1

/SILENT No wizard windows are shown, only the progress window
/VERYSILENT No windows are shown. Only error messages, if any.

Thnx to the author, Christian Kindahl, for sharing these!
mendipjohn
Registry Optimiser (UK English)

regopt_uk.msi (fully automated with GUI)

regopt_uk.msi /qn (silent)
IRP
Yeah, yeah, and yeah!!!!!!

I find it:

install_qttask=false

Add this line to the section [QTSETUP] of the file QuicktimeInstaller.ini for don't install que systray icon of the quicktime.

This is my first post in this incredible forum. Thank you very much.
utln
Acrobat Reader 7:
/S /V/QN

/S = Silent
/V passes /QN to MSIEXEC
/QN = Quiet, No GUI


No idea how to surpress the Netopsystems window...
IRP
Adobe Reader 7.0.0

CODE
AdbeRdr70_enu_full.exe -q /s /v/qn


Explanation:

-q = Supress the Netopsystems FEAD decompression window
/S = Silent
/V passes /QN to MSIEXEC
/QN = Quiet, No GUI

Comments:

InstallShield isn't case sensitive: /S is the same as /s.

Thanks.
nfm
Kazaa Lite Revolution 2.6

This switch will install bare kazaa with only one component: BadIpUpdater.
Silent switch is
CODE
/SILENT /SP-
but if use use above switch, everything will be installed icluding kazaa and other junk. To install kazaa with only BadIpUpdater open notepad copy, paste following text
CODE
[Setup]
Lang=default
Dir=C:\Program Files\Kazaa Lite Revolution
Group=Kazaa Lite Revolution
NoIcons=0
Components=program,badipupdater
save it as setup.inf and put it in the same dir where kazaa installer is. Now the batch:
CODE
ECHO.
ECHO Installing Kazaa Lite Revolution 2.6
ECHO Please wait...
start /wait %cdrom%\Install\Kazaa\Kazaa_Lite_Revolution.exe /SILENT /SP- /LOADINF=%cdrom%\Install\Kazaa\setup.inf
taskkill /im kazaalite.kpp /f
REGEDIT /S %cdrom%\Install\Kazaa\DISABLEP2P.reg
ECHO Installation Successful!
Edit your paths to your needs. If you would like to disable sharing make a reg entry
CODE
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Kazaa\LocalContent]
"DisableSharing"=dword:00000001
and put i the same dir

I think batch explains everything
nfm
SiSoftware Sandra 2005 Professional
switch is:
CODE
/VERYSILENT /SP-

First of all you need to install and enter serial number as normally. Then export reg entry with a serial number that is written in hex.
CODE
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\SiSoftware\Sandra]
"Serial Number"=your serial number (it is in hex)
and if anybody is confused here's how my batch looks:
CODE
ECHO.
ECHO Installing SiSoftware Sandra 2005 Professional
ECHO Please wait...
REGEDIT /S %cdrom%\Install\SiSoftware_Sandra_Professional_2005\FOSSP5.reg
start /wait %cdrom%\Install\SiSoftware_Sandra_Professional_2005\fo-ssp5.exe /VERYSILENT /SP-
ECHO Installation Successful!
nfm
Adobe After Effects 6.5 Professional

Switch is
CODE
/s /sms /v"/qb REBOOT=Suppress"
Now comes registration. Open notepad copy, paste following text
CODE
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\After Effects]

[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\After Effects\6.5]
"InstallPath"="C:\\Program Files\\Adobe\\After Effects 6.5\\"
"FFXInstallPath"="C:\\Program Files\\Adobe\\After Effects 6.5\\Support Files\\Presets\\"
"PluginInstallPath"="C:\\Program Files\\Adobe\\After Effects 6.5\\Support Files\\Plug-ins\\"
"RenderState"="0"
"Serial"="XXXXXXXXXXXXXXXXXXXXXXXX"
"User"=
"Company"="Microsoft Corporation"

[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\After Effects\6.5\Adobe MPEG Encoder]

[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\After Effects\6.5\Adobe MPEG Encoder\Registration]
"Usage"="66006B00-FB18"
"ActCode"=""
"StartDate"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\After Effects\6.5\Registration]
"Serial"="XXXXXXXXXXXXXXXXXXXXXXXX"
"COMPAN"="Microsoft Corporation"
"NAME"=
"Serial"="XXXXXXXXXXXXXXXXXXXXXXXX" enter your serial
and fill other blanks as well.

save as AFTEREFFECT.reg or whatever tongue.gif
my batch looks like this:
CODE
ECHO.
ECHO Installing Adobe After Effects 6.5 Professional
ECHO Please wait...
start /wait %cdrom%\Install\Adobe_After_Effects\SETUP.EXE /s /sms /v"/qb REBOOT=Suppress"
REGEDIT /S %cdrom%\Install\Adobe_After_Effects\AFTEREFFECT.reg

pause

ECHO Installation Successful!
ECHO.
Edit your paths to your needs!!! Make sure you use pause in the batch so this program gets installed totally and to avoid rushing other apps.
Smarder
Mindjet Mindmanager X5 Viewer (Mindmaps)

MMX52-E-344_Viewer.exe /S /v/qb
Mekrel
Scite Source Code editor, Version 1.57

CODE
scite.exe /VERYSILENT /NORESTART
Mekrel
GDATA AntiVirus Kit 2004

Extract the executable to any folder you wish, open up CMD prompt in this folder and execute the setup.exe using the record switch

CODE
Setup.exe -r


Install the program as you would usually, making sure you choose NOT to restart your computer.

Go to your windows directory and copy the setup.iss that is there and paste it into the folder we just opened command prompt in.

Either put all the files we have in this folder onto your unattended cd, or for size saving - I recomend a self extracting archive.

Call the setup using this command:


QUOTE
"%systemdrive%\installs\applications\avk\Setup.exe -s -f2\"%systemdrive%\avk.log\""


Edit the destination in red to suit your UA directory.
mercuryt
ahh, my first post welcome.gif

DVD2One 1.5.1

CODE
ECHO.
ECHO Installing DVD2One 1.5.1
ECHO Please wait...
start /wait %systemdrive%\install\Applications\dvd2one\Setup.exe /S

ECHO.
ECHO Registering DVD2One 1.5.1
ECHO Please wait...
REGEDIT /S %systemdrive%\install\Applications\dvd2one\reg.reg



reg.reg is:
CODE
[HKEY_LOCAL_MACHINE\SOFTWARE\Visual Domain\DVD2one]
"key"="serial # goes here"


Hope i got the code tags to work rolleyes.gif
sonica
Fine Print 5.29
http://www.pdffactory.com/


Switch: /silent
Full syntax: setup.exe /silent
Extraction needed: yes


Registration:


CODE
Windows Registry Editor Version 5.00

; DELETE section

[HKEY_USERS\S-1-5-21-1292428093-1957994488-854245398-500\Software\FinePrint Software\FinePrint5]
"CheckServer" = -

; ADD section

[HKEY_LOCAL_MACHINE\SOFTWARE\FinePrint Software\FinePrint5]
"RegName"="Name_Here"
"RegNum"="XXXX-XXXX-XXXX"



sonica
sonica
ShellEnhancer 2.0 Beta
http://www.nuonsoft.com/shellenhancer/index.htm


Switch: /verysilent
Full syntax: ShellEnhancer_2.0_Beta_Setup.exe /verysilent
Extraction needed: no




sonica
keytotime
7-zip 4.15 beta use /S
ACEOFNOS
For .MSI


/q n|b|r|f Sets user interface level.

q , qn - No UI

qb - Basic UI. Use qb! to hide the Cancel button.

qr - Reduced UI with no modal dialog box displayed at the end of the installation.

qf - Full UI and any authored FatalError, UserExit, or Exit modal dialog boxes at the end.

qn+ - No UI except for a modal dialog box displayed at the end.

qb+ - Basic UI with a modal dialog box displayed at the end. The modal box is not displayed if the user cancels the installation. Use qb+! or qb!+ to hide the Cancel button.

qb- - Basic UI with no modal dialog boxes. Please note that /qb+- is not a supported UI level. Use qb-! or qb!- to hide the Cancel button.

Note that the ! option is available with Windows Installer 2.0 and works only with basic UI. It is not valid with full UI.
paddy100
HotmailPopper is a program to enable you to download your Hotmail messages in Outlook as if they were from a POP3 server. A very handy and fast program and I use it all the time.

It can be downloaded from here HotmailPopper

Follow the instructions on the website to make it work.

I found the best way to install it silently was to extract it and place it in the $Progs folder. eg $Progs\HotmailPopper

Then add this to the registry
CODE
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"Hotpopper"="c:\\Program Files\\HotmailPopper\\hotpop.exe"


This will start it every time your PC starts and if you use outlook to read your emails you can download Hotmail messages as if they were on a POP3 server.
Metzen
QUOTE (Metzen @ Oct 5 2004, 10:53 PM)
Nvidia Forceware chipset drivers:

Switch: -s -k
Full syntax: setup.exe -s -k
Extraction needed: Yes, use WinRAR prior to install.

-s = Silent
-k = no reboot

-k must ALWAYS be last
*


This doesn't work with the latest chipset drivers. To get it to work you must remove/rename the NAM folder inside the "Ethernet" folder.
DedeKao
This is in reply to a previous post (see reference at bottom).
It's not so hard to install GhostScript and Ghostview silently. But you need to mind the quotes, because if you don't, you get the error messages mentioned in the previous post.
I know the code is trivial blushing.gif , but I just want to tell people they don't have to follow the other somewhat more extensive method.
Unzip Ghostscript and GhostView in e.g. : install\Ghostscript and install\GSView directory. Put the following in your installation batch file: (btw. I prefer using %programfiles% instead of %systemdrive%).
CODE
cmdow @ /hid
@echo off
cd install\GhostScript
setupgs.exe "%programfiles%\gs"
cd ..\GSView
setup.exe "%programfiles%\gv"


QUOTE (ravashaak @ Jul 3 2004, 08:09 AM)
GhostScript  & GhostView
< REST OF CONTENT SNIPPED >
*
erik_demon
Hitman Pro 2.03

Hitman Pro is a combination of many anti spyware programs such as Adaware, Spybot S&D, Spy sweeper and more. The program uses an AutoIT script to automaticly scan with all these utility's.

IMHO the best antispyware program ever!

An english version will arive this month

CODE
hitmanpro2nl.exe /SILENT /SP-
illust
all Elcom Advanced Password Recovery

Switch: /S
registration
[HKEY_LOCAL_MACHINE\SOFTWARE\Elcom\"xx your soft xx"\Registration]
"Code"="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx"

Canto Cumulus 6.03 Single User

Switch : -i SILENT
registration :
copie file registration (licence.txt) in Program Files\Canto\Cumulus 6 Single User\conf\

The.GodFather.0.69
http://users.otenet.gr/~jtcliper/tgf/

Switch: /S

save your preferences whit this file Program Files\The GodFather\tgf.ini

ColorImpact.2.82.3
http://www.tigercolor.com/

switch :
/SAVEINF="c:\yourfilename.ini" for save instalation setting
PS : create a blank file yourfilename.ini before

install switch : /LAODINF="c:\yourfilename.ini" /VERYSILENT /SUPPRESSMSGBOXES

Extensis Suitecase 9.02
extract suitecase.exe and create setup.iss, switch : -r

install
switch : -s
stop windows register : taskkill /F /im "Register Suitcase 9.2.exe"

registration :
[HKEY_LOCAL_MACHINE\SOFTWARE\Extensis\Suitcase\9.0\Registration]
"Name"="xxxxxxxxx"
"Company"="xxxxxxxxx"
"SerialNumber"="xxx-xxx-xxx-xxx-xxxxx"
hohner
Hi,
I have created an unattended windows install with SP2 and more recent Hot Fixes integrated. I've also included OffixeXP with SP3 and some other applications.

I am trying to allow a program called DVD2SVCD v1.2.2b3 to be silently installed. I have used the following code which I obtained from using the USSF.exe method (Universal Silent Switch Finder).

CODE
ECHO Installing DVD2SVCD 1.2.2 Build 3
ECHO Please wait...
start /wait C:\XPCD\$OEM$\$1\Install\Applications\DVD2SVCD\D2S122B3.exe /SILENT /SP- /NORESTART


It seems to work fine, however, during installation the setup will install a second program... Avisynth, and this part requires manual input.

How can I make this sub-install to run silently as well?

Thanks in advance.
Tim_Tayler
QUOTE (hohner @ Mar 12 2005, 12:01 PM)
The main setup file cannot be extracted, at least not by any method that I am aware of.
Apart from winrar, which programs are usefull with extracting setup.exe files?
*


Moin Mon,

no, there is no program to translate the code.
You have only the following possibilities,

just look at the icon to find out what installer it should be.
Check: http://www.windows-unattended.de/
at: Anwendungen

so you will find an answer.
else...
Remind me
rgreen83
FreshDevices Fresh Download 7.24

This one kicked my butt the better part of an evening (fresh programs are supposed to just use /silent, but freshdownload asks for reboot for some reason), so to help someone else out here is what should be used.

/sp- /verysilent /norestart

You may sub /silent for /verysilent if you like to see the progress bar. Do not put /verysilent without /norestart or it will reboot without asking.

I found this solution here http://unattended.sourceforge.net/installers.php , they have good explanations of the switches for nearly all installers on that page.
ashmedai
QUOTE (Aaron @ Dec 23 2003, 09:54 AM)
7-Zip

Switch: -y /q /r:n
Full syntax: 7Zip.exe -y /q /r:n
Extraction needed: ?


The copy I have is NSIS (thus works "7zip.exe /S"). Version is 4.15b.
ashmedai
Got Radclocker/Radlinker to go silent.

Started setup, which plunked an MSI file into my temp folder. Took that, killed setup. The MSI works with /quiet.
madmungo
Reget Deluxe Command line Options

/Q - Quiet modes for package, Tested and working

/T:<full path> - Specifies temporary working folder

/C - Extract files only to the folder when used also with /T

/C:<cmd> - Overide install command defined by author.
dafyk
Tiny Firewall 2005 Professional v6.5.70

switch: /S /v/qn
(case sensitive)

Setup will reboot after instalation is finished, any1 knows how to get rid of it? ;]
jErk`
Hi,

first of all I want to thank you. I found some switches i realy needed :-)


Well now:

Java 1.5.0
start /w jre-1_5_0_02-windows-i586-p.exe /L1031 /s /v"/qn ADDLOCAL=ALL IEXPLORER=1 MOZILLA=0 INSTALLDIR=C:\Programme\Java\JRE15 REBOOT=Suppress JAVAUPDATE=0"

- "/Lxxxx" is your local setting, see http://www.asphelper.de/Referenz/LCID.asp
- be aware of the the parameter order which has changed since 1.4


Arcobat 7.0
- http://www.adobe.com/support/downloads/detail.jsp?ftpID=2709

Download & install, follow the instructions and you finally get a .exe file that *DOES NOT* start NetFeed Optimizer or what ever, just installs with the Settings you did.

This one works for Acrobat Writer, too, you can deploy with Serial# .. so on.


Office 2k3
start /w %systemdrive%\setup.exe /noreboot /qr ALLUSERS=2 CDCACHE=AUTO COMPANYNAME="<foo INC>" INSTALLLOCATION=%ProgramFiles%\Office2003 LOCALCACHEDRIVE=C PIDKEY=<YourCDKey>

- Note that the CD Key has to be without spaces or '-', just like 1234567890987654321
- ALLUSERS=2 is fine for us as we deploy in a DC environment with multiple user access to the clients. It means, you install Office 2k3 as 'Admin' and any further User on that Client gets his 'personalized' installation as soon as he starts. You may use ="1" which means, actually the same, but any user who wants to use office later on has to have administrator rights.


RealVNC 4.1
- Create a installation information file:
start vnc-4_1_1-x86_win32.exe /SP- /SAVEINF="rvnc.iss"
or create one like:

[Setup]
Lang=default
Dir=C:\Programme\RealVNC\VNC4
Group=RealVNC
NoIcons=1
Components=vncviewer

Note that /SAVEINF stores the file in %windir%, so mostly like c:\windows or c:\winnt

- Than install:
vnc-3.3.4-x86_win32.exe /SP- /LOADINF="vnc.iss" /VERYSILENT
or
vnc-3.3.4-x86_win32.exe /SP- /LOADINF="vnc.iss" /SILENT

/SP- suppresses the "do you want to install box"
/SILENT will display a progress bar
/VERYSILENT displays nothing


winrar
start /w wrar342d.exe /s


mIRC
I did not found a proper solution but i want stuff like 'uninstall' in 'Software' so I did:

winrar, pack c:\programs\mirc\, create a SFX with absolute paths. In advanced SFX options you may set set 'overwrite withouth asking' and 'automacially unpack without asking'

Than you need to import a *.reg. As there are alot of keys, to much to post, please export it yourself, you need:

[HKEY_CLASSES_ROOT\ChatFile]
[HKEY_CLASSES_ROOT\irc]
[HKEY_CURRENT_USER\Software\mIRC]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ChatFile]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\irc]
(+ all the keys inside)

and
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\mIRC]
"DisplayName"="mIRC"
"UninstallString"="\"C:\\Programs\\mIRC\\mirc.exe\" -uninstall"

Now:
start /w <YourWinRARSFXFile>.exe
REGEDIT /S <YourRegExport>.reg


F-Secure (and hotfix*.fsfix)
That is infact very worse to make as there are alot of undocumentated things. If you realy want to deploy it to 15+ Workstations, try it! Its realy awsome when done. If you just have 3 clients that will be reinstalled any half year, keep it manually.

- Download & install the 'F-secure Policy Manager' from fsecure.com
- Download the F-Secure *.exe installation from fsecure.com.
- Run: Start - Programs - F-Secure Policy Manager Console - F-Secure Poliy Manger Console.
(The Password now is thatone you set up during installation of Policy Manager.)
- Click on "Installation Packages" Icon and import the *fsav*.EXE file you downloaded before.
- Export the Package into a *.JAR file.

- Get 'ilaunchr.exe'. (Maybe google for it)

start /w ilaunchr.exe <YourFsavJar>.jar /U

/U is unattended, please us a capital 'U', not 'u'.


** Hotfixes can be done the same way. **


Hummingbird
- Make a full installation.
- You'll find a file called 'sconfig' within the c:\programs\Hummingbird\Connectivity\<version>\Accessories\
- Create a installaton package
- and start it in unattend mode by:
setup.exe /S /Lxxxx /V"TRANSFORMS="<pathTo>\Admin.MST" /QN

- "/Lxxxx is your local setting, see http://www.asphelper.de/Referenz/LCID.asp


Fonts
Do not know if it was mentioned before but it wrecked my nerves!

If you want to import Fonts during a unattend installation you may realise that copy/xcopy will not work.
Its pretty easy at all. Just make a another self extracting winrar archive with a absolute path to %windir%\fonts (see mIRC section).

Maybe(!) on some Windows Versions you need to "start explorer c:\windows\fonts" so the explorer will initialize the fonts, too.


Something else

1)
For those of you using 'cacls' or want the set Registry/File/Folder/Security Permissions in a larger Windows Domain environment without AD (Like NT4PDC or SAMBA) you *realy* may want to have a look here:

- start - run - "mmc".
- Add the Snaps "Security configuration and analyses" and "Security Templates".
- Go "Security Templates" snap, and have a look at the templates in "%windir%\security\templates\".
The names are like "High Security Domain Controler", "root security" .. so on.
- Use one and click 'save as' <YourTemplate>.inf.
- Now edit the Settings, Serice Settings, User Security, ACLs, ...
- Save!
- Go "Security configuration and analyses" snap
- 'Open Database' (just type a name, it will create a new one) <YourDB>.sdb
- Import <YourTemplate>.inf
- Save!

Done! You can setup the policy by:
- secedit /configure /cfg %systemdrive%\<YourTemplate>.inf /db %systemdrive%\<YourDB>.sdb
(import it)

- gpupdate /force
(update the local policy now)


2)
If you want to connect a printer you mostly want to do two things. Either a Network/Local Printer, OR a Printer that uses a TCP/IP Port.

Network Printer (Like shared printer somewhere):
- rundll32 printui.dll,PrintUIEntry /in /b "<PrinterName>" /f Drivers\<DRIVER>.INF /n \\<YourShare>\<PrinterShareName> /m "<PrinterName>"

This will include the file Drivers\<DRIVER>.INF with a driver so you may not select one manually. You realy should use the exact Name thats specified in the INF file for "<PrinterName>", otherwise it may fail.

Setup a TCP/IP Port and connect a printer:

- Make a reg file and import:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\Standard TCP/IP Port\Ports\IP_<TheRemoteIP>]
"Protocol"=dword:00000002
"Version"=dword:00000001
"HostName"=""
"IPAddress"="<TheRemoteIP>"
"HWAddress"=""
"PortNumber"=dword:00000203
"SNMP Community"="public"
"SNMP Enabled"=dword:00000001
"SNMP Index"=dword:00000001
"Queue"="PASSTHRU"
"Double Spool"=dword:00000000

- You need to restart your Spooler Service now!
net stop spooler
net start spooler

- Than connect the Printer:
rundll32 printui.dll,PrintUIEntry /if /b "<PrinterName>" /f Drivers\<DRIVER>.INF /r "IP_<YourRemoteIP>" /m "<PrinterName>" /Z


This will include the file Drivers\<DRIVER>.INF with a driver so you may not select one manually. You realy should use the exact Name thats specified in the INF file for "<PrinterName>", otherwise it may fail.





Hth!


/jrk/
eagle00789
7zip version 4.16b correct swith <watch the capital>: /S
Extraction: No
smashly
Spybot-Search & Destroy 1.4RC

switch: /VERYSILENT /NORESTART /SP-
syntax: spybotsd14rc.exe /VERYSILENT /NORESTART /SP-
extraction needed: No
DLF
Paint.NET can be installed silently with no issues/problems. Tested earlier. Download this version from here 2.1B: http://fileforum.betanews.com/detail/PaintNET/1096481993/1 OR here http://www.eecs.wsu.edu/paint.net/download.htm Its a rar archive and extracts to a single .msi file and use the following code in your RunOnceEx.cmd with path adjusted to suit you personal needs:
CODE
REG ADD %KEY%\075 /VE /D "Installing Paint.NET V2.1B" /f
REG ADD %KEY%\075 /V 1 /D "%SystemDrive%\Install\Apps\Paintdotnet\PaintDotNet_2_1B.msi /passive /norestart" /f
Gerfaut
FileZilla & FileZilla Server

hey, this is my first post ! welcome.gif
Filezilla and FileZilla Server are very usefull, but not very easy to install silently (and properly) ! If you don't have time to loose to find out how to make it work fine, here is my method :

CODE
start /wait FileZilla_2_2_13c.exe /S
start /wait FileZilla_Server_0_9_7.exe /S
taskkill /IM "FileZilla Server Interface.exe" /F
net stop "FileZilla Server"
REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /V "FileZilla Server Interface" /F
sc config "FileZilla Server" start= demand


Ok, the switches were easy to find, but at the end of the installation, FileZilla Server and its interface are running. Moreover, I didn't want Filezilla Server to start with Windows.
The interface is stopped by taskkill (fore XP Home users, you have to put taskkill.exe in your system32 folder). The "net stop" command is fine to stop services like "FileZilla Server.exe" (you could also use taskkill, but I think this way is more aesthetic yes.gif ).
But, there is still a registery key in "HKLM/.../run" which can be removed by "REG DELETE" and then, the last (but not the least) thing : make the FileZilla Server service run only on demand (I think it is safer). You can use the "sc config" which is avaible in both Home and Professional editions of WinXP. Notice that the space after "start=" is essential !

ok that's it, I hope my english was clear enough !
Amusez-vous bien ! cool.gif
TheeBeets
Alcohol 120%

QUOTE
['%systemdrive%\\Install\\Alcohol120%\\setup.msi /quiet Reboot=Suppress']
phire
DIVX 5.21 Bundle

CODE
REG ADD %KEY%\010 /VE /D "DivX 5.21 Bundle" /f
REG ADD %KEY%\010 /V 1 /D "%systemdrive%\Install\DivX521.exe /S" /f
rutger10000
Stole a bugmenot because signups suck, anyway, here is some info.

A lot of installers use generic switches. If yours isn't listed check out http://unattended.sourceforge.net/installers.php

They have a lot of information for specific installers and for repackaging if necessary. Enjoy
Sprax.
OrcoXP
UltraISO
%FRO%\UltraISO_Media_Edition_v7.5.6.1045.exe /SILENT /NOCANCEL /DIR="%ProgramFiles%\Burning & Compression\UltraISO" /GROUP="Burning & Compression\UltraISO"
oneless
Winzip silent install with WPI .
WinZip silent thread
the method work well , on multiple computers , of course with separate registration.
i make for a customer a SFX archive with winrar who include the path C:\Program Files
QUOTE
;The comment below contains SFX script commands
Path=C:\Program Files
Silent=1
Overwrite=1
but the customer has win98 in drive c:\ and win xp in drive g:\ (his problem)
so in win xp , i extract in ?? C:\Program Files the winzip directory
an i try to execute winzip32.exe somewhere in g:\Program Files ?
dont work , of course .
if i pack the sfx with Path=%programfiles% can this work !?
i will try this anyway tomorrow .
acomputerwiz
Windows XP Recovery Console from Runonceex.cmd off cd

REG ADD %KEY%\079 /VE /D "Windows XP Recovery Console" /f
REG ADD %KEY%\079 /V 1 /D "%cdrom%\i386\winnt32 /cmdcons /unattend" /f
-Pablo-
BootVis


bootvis.msi /quiet
Special Kei
newer 7-zip (4.20) is

7zip.exe /S
juozas
Tildes biuras 2004
i made a unattended mst file. works with WPI...
CODE
cmd1[pn]=['%cdrom%\\software\\Application\\Tilde2004\\TILDES_BIURAS_2004.MSI TRANSFORMS=%cdrom%\\software\\Application\\Tilde2004\\Unattended_lt.MST /qn']
cmd2[pn]=['taskkill /F /IM Pianists.exe']
cmd3[pn]=['taskkill /F /IM Mdiction.exe']
Jito463
QUOTE (TheeBeets @ May 8 2005, 12:05 AM)
Alcohol 120%

QUOTE
['%systemdrive%\\Install\\Alcohol120%\\setup.msi /quiet Reboot=Suppress']

*



Actually, I used the following to not only silently install without reboot, but also to change the driver names (for anti-blacklisting purposes).

CODE
setup.msi /qn /REBOOT=ReallySuppress DRIVER0=???????? DRIVER1=????????

Where ???????? = whatever you want (for example, I made mine jitobus and jitoscsi).
Sapastik
Hi!

i found the switches to install kaspersky

QUOTE
ECHO Installing kASPERSKY
ECHO Please wait...
start /wait %systemdrive%\Install\KASPERSKY\KSPRSKY.exe /S /V" /QN


Important, keep the caps on switches or it not work!!!

That's all friendsz
angel0104
firefox 1.xx silent

firefox-xxxxx.exe -ms smile.gif
jon15n
Windows 98: Norton AntiVirus 2003 Professional Edition

Switch: setup.exe /qn /noreboot
edusnow
SPSS 13.0

Use the Windows Installer switchs.

setup.exe /a to make the shared folder to the files. Then run the *.msi created with the switchs /quiet /passive
ex: setupspss.msi /quiet /passive
then you must "run" the autoriazation code.

snow
Thauzar
I just wanted to tell everyone who want to install the java virtual machine in their language that since the new version uses an msi, you must extract the msi and the mst files from the temp directory when you run setup, then install it with
CODE
C:\BPDVD\Softwares\Applications\SunJava\Java2re5u4.msi TRANSFORMS=1036.MST /qb


1036 being the file for french
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.