当前位置:文档之家› 静默安装参数

静默安装参数

常用的软件封包静默安装参数总结


常用的软件封包形式主要有以下几个形式
Inno Setup
InstallShield
NSIS
Microsoft Windows Installer
WISE

QUOTE:

一.Inno Setup
使用Inno技术制成的程序安装包可以使用/SILENT 和 /VERYSILENT参数进行静默安装
我不知道这两个参数有什么分别,因为它们实现的功能看上去是一样的

setup.exe /VERYSILENT

你会看到一个对话框,询问你是否打算继续安装:

我们可以通过使用一个参数跳过这个对话框:

setup.exe /VERYSILENT /SP-

有些利用Inno 技术做作的安装包会在程序安装完毕后自动运行所安装的程序,例如ISOBuster
不过我们可以使用一个叫做Taskkill的系统自带工具杀死相关的进程。

以下是一个可以用于批处理文件安装由Inno打包的软件的命令的示例:

ECHO.
ECHO 正在安装ISOBuster 1.4
ECHO 请稍候...
start /wait %systemdrive%\install\Applications\ISOBuster\IsoBuster14.exe /VERYSILENT /SP-
ECHO.
ECHO Killing ISOBuster.exe process
taskkill.exe /F /IM isobuster.exe
ECHO.

我怎么知道哪个安装程序是用Inno 技术打包的?

这种软件安装时第一个界面一般如下图所示
在窗口标题栏左侧的图标上点击鼠标左键
然后再探出菜单上点击“About Setup”也可以看见安装类型

更多使用Inno技术打包的软件可用的参数可以在下面看到:
E文好的朋友可以仔细研究研究
With the Inno Setup Extentions in use the following command line switches become available:

SP-
Disables the This will install... Do you wish to continue? prompt at the beginning of Setup. Of course, this will have no

effect if the DisableStartupPrompt [Setup] section directive was set to yes.

/SILENT, /VERYSILENT
Instructs Setup to be silent or very silent. When Setup is silent the wizard and the background window are not displayed but

the installation progress window is. When a setup is very silent this installation progress window is not displayed.

Everything else is normal so for example error messages during installation are displayed and the startup prompt is (if you

haven''t disabled it with DisableStartupPrompt or the ''/SP-'' command line option explained above)

If a restart is necessary and the ''/NORESTART'' command isn''t used (see below) and Setup is silent, it will display a

Reboot now? messagebox. If it''s very silent it will reboot without asking.

/NORESTART
Instructs Setup not to reboot even if it''s necessary.
/LOADINF="filename"
Instructs Setup to load the settings from the specified file after having checked the command line. This file can be prepared

using the ''/SAVEINF='' command as explained below.

/SAVEINF="filename"
Instructs Setup to save installation settings to the specified file.

/DIR="x:\dirname"
Overrides the default directory name displayed on the Select Destination Dir

ectory wizard page. A fully qualified pathname

must be specified. If the [Setup] section directive DisableDirPage was set to yes, this command line parameter is ignored.

/GROUP="folder name"
Overrides the default folder name displayed on the Select Start Menu Folder wizard page. If the [Setup] section directive

DisableProgramGroupPage was set to yes, this command line parameter is ignored.

/NOICONS
Instructs Setup to initially disable the Don''t create any icons check box on the Select Start Menu Folder wizard page.

/COMPONENTS="comma separated list of component names"
Overrides the default components settings. Using this command line parameter causes Setup to automatically select a custom

type.

QUOTE:

二.InstallShield


要使用静默安装的方式安装用InstallShield技术打包的程序
你首先要在现有的操作系统中创建一个setup.iss文件。

1. 在命令行窗口中使用 -R 参数(大小写敏感)运行安装程序。

例如:
Setup.exe -R

2. 接着会显示常见的安装屏幕,并且询问你一些问题,例如要安装的目录等
有一点是很重要的,在安装结束后你不能选择“立刻重启动计算机”的选项
如果你选了,在批处理文件中的其他命令就会因为计算机重启动而无法执行

3. 在安装程序运行完毕后,打开你的C:\Windows (或者C:\WINNT)目录
然后找到setup.iss文件,把这个文件和你将要静默安装的程序setup.exe保存在同一个目录中

4. 用以下命令进行静默安装:

start /wait %systemdrive%\install\Application\Application_name\Setup.exe -s

5. 对所有准备进行静默安装,并且使用了InstallShield技术打包的程序重复上面的步骤操作

技术难点:从光盘上的RunOnceEx中安装用Installshield技术打包的程序
如果从光盘上直接执行RunOnceEx,用Installshield打包的应用程序安装将会失败
除非你指定了用于保存日至文件的位置
下面就有一个示例,你可以将这个例子用于你自己的程序的安装(粗体字部分看仔细了):

REG ADD %KEY%\045 /VE /D "Kerio Personal Firewall 2.1.5" /f
REG ADD %KEY%\045 /V 1 /D "%CDROM%\apps\KPF\Setup.exe -s -f2\"%systemdrive%\kerio.log\"" /f

然后你可以用一个cleanup.cmd文件删除kerio.log文件
DEL "%systemroot%\kerio.log"

我怎么知道哪个程序是使用InstallShield技术打包的?
大部分这类程序的安装文件都可以被压缩软件解压缩,安装文件setup.exe的属性对话框中应该有“InstallShield (R) Setup Launcher”或者

其他类似的字样。
最后,如果你在保存安装文件的文件夹中看到了一个setup.iss文件,
那么毫无疑问这是用InstallShield打包了!


QUOTE:

三. Nullsoft SuperPiMP Install System (NSIS)


使用NSIS 打包的安装文件可以用 /S参数进行自动安装(“S”是大小写敏感的):

Setup.exe /S


也可以用 /D参数选择将要安装的目标分区和文件夹:

Setup.exe /S /D=E:\Software\CDex

像Winamp 和CDex这类的软件都会在安装结束后显示一个确认屏幕(CDex)
或者一个设置文件关联方式的结束安装屏幕(Winamp)
我还不知道怎样跳过这一步,但是这个屏幕对批处理文件的继续执行不会有任何影响


我怎么知道哪个程序是使用NSIS技术打包的?


很多用NSIS打包的程序在安装的时候都有类似这样的窗口,例如Winamp 和CDex:



QUOTE:

四.Microsoft Windows Installer


微软老大的封包形式!
如果某个软件是用Windows Installer打包的,那你就应该能在文件夹中看到*.msi文件。
这是最典型的特征
这些文件通常可以使用 /QB和 /QN参数进行自动安装。
Powertoys使用了 /s /v/qn参数,对于这些软件,你可以依次尝试上面提到的参数
看看哪个是有效的。

/qb 会在窗口中显示一个基本的安装进程
/qn 参数则不会显示任何窗口,直接在后台自动安装

阻止程序安装完成后自动重启动:
为了阻止某些程序安装成功后自动重启动(例如Kerio Personal Firewall 4),你可以在 /qn 或者 /qb参数后使用REBOOT=Suppress标记,例

如:

setup.msi "/qn REBOOT=Suppress"

有些安装程序使用 /s/v/qn参数进行自动安装,因此阻止它们重启动应该用:

setup.exe /s /v"/qn REBOOT=Suppress"


QUOTE:

五.WISE Installer



用WISE技术打包的软件在安装的时候可以选择使用 /s参数进行自动安装:

Setup.exe /s

更多的其他参数:
You can run Wise Installation .EXE with command line options to automate many of the tasks you would normally do in the User

Interface. The list of options is as follows.

/c file.wse -- creates executable file from wise script
/r -- opens Wise in SetupCapture window
/u -- runs the upgrade wizard that checks for any upgrades online
/d CompVar=Value -- defines a single compiler variable in Enterprise Edition. Multiple definitions require multiple /d
/d=filename -- uses filename to define compiler variables. Each line in file is CompVar=Value

Example: installbuilder.exe /c /d _MYVAR_="Test" c:\my\source\files\setup.wse

Wise Installations:

/T -- test mode
/X pathname -- extracts files into pathname
/Z pathname -- extracts files into pathname and reboots
/S -- silent install
/M -- prompts for windows, system, temp directories
/M=filename -- specifies a value file similar to /d above, but for standard variables (See NOTE below).
/M1 -- same as /m plus it prompts before any file that is self-registered
/M2 -- reserved for internal use by Wise during debugger sessions

Example: setup.exe /T

Unwise:

/Z -- remove empty directories, including one with unwise itself in it.
/A -- automatic mode, no user choices other than cancel.
/S -- silent mode, automatic mode with no user

choices
/R -- rollback mode, selects option to rollback on uninstall
/U -- like automatic mode, but gives all choices other than custom/automatic title window title can be at the end of the

command line

Example: unwise.exe /S c:\my\program\directory\install.log

NOTE: The values file is a simple text file with variables listed, one per line, in VARIABLE="VALUE" format. If the variable

is found in the values file, the specified value is used; otherwise, its value is unchanged. The file containing the

variables can be up to 32K.
==============================================
1.对于微软的补丁基本上有两种:a.Self-Extrcating Cabinet格式的采用:/Q /M /Z 参数;b.Win32 Cabinet Self-Extrcator格式的采用:/Q:A /R:N 参数;或者你可以用xxx.exe /?来看到它的静默安装参数;
2.Installshield 应用程序,要使用自动安装的方式安装用InstallShield技术打包的程序,你首先要创建一个setup.iss文件。
3.对于所有以winrar制作的安装程序都可以用/S安装;
4.inno封装方法的/silent /verysilent /norestart
5.nsis 封装方法的 /s /D=E:\Software\CDex
6.wsis 封装方法的/s
===================================================
7Zip
-y /q /r:n

ABC - Another Bit Torrent Client 2.6.5
/S

Acdsee 6.03
/qn

Acrobat Reader 6.0
-p"-s /v\"/qn\""

Ad Muncher
/S /I:\"%systemdrive%\install\Applications\Ad Muncher\AdMuncher.amc\" /P:\"%ProgramFiles%\Ad Muncher\"

Alcohol 120%
/qn

AM-DeadLink v2.00
/S

AOL Instant Messenger
/s

AVG Anti Virus Program


BitTornado 0.3.7
/S

Boot XP
/S

Cisco VPN Client
/qn REBOOT=REALLYSUPPRESS

Command Prompt Explorer Bar 1.1
/qn

Connectix Virtual PC
/qn

Connectix Virtual PC IS Script
/qn

ConTEXT 0.97
/verysilent

Corel Photo Album
Serialnumber=XXXXXXX-XXXXXXX-XXX /qn

Crap Cleaner v110
/S

Creative Audigy/Live Driver
/q /o /r

Customizer XP 1.8.5
/VERYSILENT /SP-

Daemon Tools
/qn /Reboot=Suppress

DeepBurner 1.1.1.128
/S

DreamweaverMX
/qb

DUMeter 3
/VERYSILENT /SP-

DVD Region Free 5.01
/VERYSILENT /SP-

Easy CD Creater 5.0
/s /v/qn

Easy CD Creater 6.0
/s /v\"/qr REBOOT=Suppress REBOOTPROMPT=S\"

Emule 0.42
/S

FastFolders v3.0.0
\"%ProgramFiles%\FastFolders\" License.dlc

FileZilla v2.2.7b
/S

Fireburner 2.2.1
/qn

FireFox 9.3 Browser
/qn

FreshUI 6.80
/silent

GetDiz 3.0
/s

Google Toolbar
/s /qn

Google Toolbar (without advanced features)
/q /d

Gunbound 3.06
/silent

ieSpell - A Spell Checker for Internet Explorer
/S

iISystem Wiper v2.3
/verysilent /norestart

Index.dat Suite v2.6.0
/VERYSILENT

Jasc Paint Shop Pro 8
/qn

Journal Viewer 1.5
/qn

Kazaa Codec Pack
/silent

Kazaa Lite K++ 2.43
/silent

Kazaa Lite Resurrection
/silent

Lavasoft Ad-Aware 6 Build 181
/silent

Logon Loader
/VERYSILENT /SP-

MagicTweak
/silent

Media Encoder 9
/Q:A /R:N

Microsoft .Net 1.1
/qb

M

icrosoft Office 2003 Professional
TRANSFORMS=office11.MST /qb-

Microsoft Visual Basic 6 Runtimes
/Q

Mozilla 1.6
-ma -ira

MRU-Blaster v1.5
/verysilent /norestart

MSFN Toolbar Icon
/VERYSILENT /SP-

MusicMatch Jukebox
/s

Nero Burning ROM 6.0.0.23+
/SILENT /NOREBOOT /SN=xxxxx-xxxxx-xxxxx-xxxxx-xxxxx /WRITE_SN

Netscape 7.02
-ms -ira -ispf

Norton Ghost
/q

Norton Systemworks 2003
/qn /Reboot=Suppress

O&O Professional Defrag 6
/qn

Paint Shop Pro X
Serialnumber=XXXXXXX-XXXXXXX-XXX /qn

Partition Magic 8.0
/s /v/qn

PC Cillin
/qb REBOOT=Supress

PC Wizard 2004 v1.632
/verysilent

Pdf Creator
/verysilent /norestart

Perfect Disk 6
/qn

PowerDesk 5 Pro


PowerDesk 5.0
/S /N /LANG=ENG

Preparing Installation...


QCD Player
/S

Quick Par
/S

QuickTime Alternative
/VERYSILENT /SP-

Real Alternative
/VERYSILENT /SP-

RealPlayer One v2
-s

RealVNC 3.3.7
/silent /sp-

Registry Tweaks
/S %CDROM%\software\regtweaks.reg

Resplendent Registrar 3.21
/S

SiSoft Sandra Pro MAX3
/VERYSILENT

skype .95 beta
/VERYSILENT /SP-

Slim Browser v4.00.2
/S

SpyBot Search & Destroy
/verysilent

SpywareBlaster
/verysilent

Sun Java VM 1.4.2
/s /v"/qn ADDLOCAL=jrecore IEXPLORER=1"

Sun Java VM 1.4.2.05
/s /v\"/qb IEXPLORER=1 REBOOT=ReallySuppress\"

Sygate Personal Firewall
/QN Reboot=Supress

Symantec Antivirus Corporate 8.1
/qn

Symantec Antivirus Corporate 9
/qn RUNLIVEUPDATE=0 REBOOT=REALLYSUPPRESS

Text Pad
/s /v/qn

TightVNC
/silent

TuneUp Utilities
/q

TuneUp Utilities (Extracted)
/qn

Tweaknow PowerPack
/VERYSILENT /SP-

TweakUI 2.10 Powertoy
/qb

TweakXP Pro 2.0
/qn

VideoLAN 0.7.2
/S

Visual CD v 1.8
/verysilent

WinAmp 5.1
/S

Windows MediaPlayer 9
/Q:A /R:N /C:\"setup_wm.exe /DisallowSystemRestore /Q:A /R:N\"

Windows XP Support Tools
/qn

WinRAR 3.20
/s

Winscp 2.3
/silent

WinXP Image Resizer Power Toy
/s /v/qn

WMP 9 Bonus Pack
/q

Works7
/qb

XoftSpy 3.4.4
/SP- /VERYSILENT
==================================================
Windows 补丁包
有两种情况,一种是类似IE增量补丁包的那种安装文件,要使之静默安装,只需要在执行文件后加上 /q:a /r:n 参数即可;一种是 Windows 常用的补丁文件,一般情况下加上 /U /N /Z 即可实现静默安装。
(对于新的系统补丁,也可使用 /passive /norestart)。这通用大部分情况,但某些特定的补丁不能用此法进行静默安装。


显示选项
/quiet
安静模式,无用户交互
/passive
无从参与模式 - 只显示进程栏
/q[n|b|r|f]
设置用户界面级别
n - 无用户界面
b - 基本界面
r - 精简界面
f - 完整界面(默认值)
/help
帮助信息
重新启动选项
/norestart
安装完成后不重新启动
/promptrestart
提示用户重新启动(如果必要)
/forcerestart
安装后总是重新启动计算机
日志选项
/l

[i|w|e|a|r|u|c|m|o|p|v|x|+|!|*]
i - 状态消息
w - 非致命警告
e - 全部错误消息
a - 操作的启动
r - 操作特定记录
u - 用户请求
c - 初始界面参数
m - 内存不足或致命退出信息
o - 磁盘空间不足消息
p - 终端属性
v - 详细输出
x - 额外调试信息
+ - 扩展到现有日志文件
! - 每一行刷新到日志
* - 记录所有信息,除了 v 和 x 选项
/log
与 /l* 相同
更新选项
/update [;Update2.msp]
应用更新
/uninstall [;Update2.msp] /package
删除产品的更新
修复选项
/f[p|e|c|m|s|o|d|a|u|v]
修复产品
p - 仅当文件丢失时
o - 如果文件丢失或安装了更旧的版本(默认值)
e - 如果文件丢失或安装了相同或更旧的版本
d - 如果文件丢失或安装了不同版本
c - 如果文件丢失或较验和与计算的值不匹配
a - 强制重新安装所有文件
u - 所有必要的用户特定注册表项(默认值)
m - 所有必要的计算机特定注册表项(默认值)
s - 所有现有的快键方式(默认值)
v - 从源运行并缓存本地数据包

一些常用软件自动安装参数

MPC·暴风影音(Storm Codec)5
安装程序制作:NSIS
是否要提取安装文件:否
获取安装参数: /?
手动安装参数: /skipcnnic
自动安装参数: /S /skipcnnic /skipasso

BitComet 0.57
安装程序制作:NSIS
是否要提取安装文件:否
自动安装参数: /S

NTI CD DVD-Maker Platinum 7
安装程序制作:InstallShield
是否要提取安装文件:是
获取安装参数: /?
自动安装参数: /S /v/qn

K-Lite Mega Codec Pack 1.2
安装程序制作:Inno Setup 5
是否要提取安装文件:否
自动安装参数: /SP- /SILENT /NORESTART

VLC media player 0.8
安装程序制作:NSIS
是否要提取安装文件:否
自动安装参数: /S

UltraISO 7.5
是否要提取安装文件:否
自动安装参数: /SP- /SILENT /NORESTART

ACDSee v3.1 SR1 美化版
安装程序制作:NSIS
是否要提取安装文件:否
自动安装参数: /S

傲游(Maxthon) v1.2
安装程序制作:NSIS
是否要提取安装文件:否
自动安装参数: /S

Beyond Compare v2.2.7
安装程序制作:NSIS
是否要提取安装文件:否
自动安装参数: /S

Windows Media Player v10
安装程序制作:Win32 Cabinet Self-Extrcator
是否要提取安装文件:否
自动安装参数: /Q:A /R:N
特别说明:若事先关闭系统还原则会弹出对话框使自动安装失败!

卡巴斯基反病毒单机版(Kaspersky Anti-Virus Personal) v5.0.227
安装程序制作:?
是否要提取安装文件:否
自动安装参数: /S

卡巴斯基反病毒单机专业版(Kaspersky Anti-Virus Personal Pro) v5.0.20
安装程序制作:InstallShield
自动安装参数: -s

InstallShield 使用 -s 静默安装参数的

软件都要做一个静默安装参数文件 setup.iss
7-Zip
参数: -y /q /r:n
完整命令: 7Zip.exe -y /q /r:n
是否需要提取安装文件: ?

Adobe Reader 6.0 Basic and Full
参数: -p"-s /v\"/qn\""
完整命令: AdbeRdr60_enu_full.exe -p"-s /v\"/qn\""
是否需要提取安装文件: No
注意: 在Windows目录下创建一个名为Cache的文件夹,随后可以使用RD命令删除这个文件夹 (使用rm /?命令可以获得详细信息)

Adobe Acrobat 5.1
参数: -R to create ISS file.
完整命令: 参考 Unattended/xp/applications/installshield.htm
是否需要提取安装文件: Yes

Alcohol 120%
参数: /qn
完整命令: setup.exe /qn
是否需要提取安装文件: ?

ACDsee 6.02
See: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=12161

Adobe Photoshop 7 & 8
See: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=10552

AVG Anti-Virus
See: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=10705

Avant Browser
See: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=10712

Boot XP
参数: /S
完整命令: bootxpsetuprc2.50.exe /S
是否需要提取安装文件: ?

Connectix Virtual PC IS Script
参数: /qn
完整命令: ISScript8.Msi /qn
是否需要提取安装文件: ?

Connectix Virtual PC
参数: /qn
完整命令: CVPC.msi /qn
是否需要提取安装文件: ?

Command Prompt Explorer Bar 1.1
参数: /qn
完整命令: Cmdbar.msi /qn
是否需要提取安装文件: ?

ConTEXT 0.97
参数: /verysilent
完整命令: context.exe /verysilent
是否需要提取安装文件: ?

Customizer XP 1.8.5
参数: /VERYSILENT /SP-
完整命令: cstmizxp_reg.exe /VERYSILENT /SP-
是否需要提取安装文件: ?

DUMeter 3
参数: /VERYSILENT /SP-
完整命令: dumeter3.exe /VERYSILENT /SP-
是否需要提取安装文件: No

Daemon Tools
参数: /qn /Reboot=Suppress
完整命令: daemon.msi /qn /Reboot=Suppress
是否需要提取安装文件: Yes

eMule
See: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=10756

Easy CD Creater 5.0
参数: /s /v/qn
完整命令: setup.exe /s /v/qn
是否需要提取安装文件: ?

Foobar2000
See: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=10958

Google Toolbar
参数: /s /qn (or /q /d)
完整命令: GoogleToolbarInstaller.exe /s /qn
完整命令: GoogleToolbarInstaller.exe /q /d
是否需要提取安装文件: No
注意: /d 会以简单模式安装Google Toolbar

Jasc Paint Shop Pro
参数: /qn
完整命令: JPSP8.msi /qn
是否需要提取安装文件: ?

Journal Viewer 1.5
参数: /qn
完整命令: JV.msi /qn
是否需要提取安装文件: Yes

Kazaa Codec Pack
参数: /silent
完整命令: kcodec210.exe /silent
是否需要提取安装文件: ?

Logon Loader
参数: /VERYSILENT /SP-
完整命令: Logon_Loader_2.1.0.exe /VERYSILENT /SP-
是否需要提取安装文件: No

MCAffe Viruscan 8
See: https://www.doczj.com/doc/796490584.html,/board

/index.php?showtopic=10946

mIRC
See: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=10723

Microsoft Visual Basic 6 Runtimes
参数: /Q
完整命令: vbrun6.exe /Q
是否需要提取安装文件: ?

MusicMatch Jukebox
参数: /s
完整命令: MusicMatch.exe /s
是否需要提取安装文件: ?
注意: 会显示用户注册界面

MagicTweak
参数: /silent
完整命令: MT270.exe /silent
是否需要提取安装文件: ?

Messenger Plus 2.54
参数: /SilentInstallNoSponsor or /SilentInstall
完整命令: msgplus254.exe /SilentInstallNoSponsor
是否需要提取安装文件: No
注意: 安装完成后会打开IE和MSN Messenger

Nero Burning ROM 6.0
参数: /SILENT /NOREBOOT /SN=xxxxx-xxxxx-xxxxx-xxxxx-xxxxx /WRITE_SN
完整命令: Nero6xxxxx.exe /SILENT /NOREBOOT /SN=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx /WRITE_SN
是否需要提取安装文件: No
注意: 仅适用于Nero 6.0.0.23以及之前的版本,使用/HELP可查看更多参数

Norton Systemworks 2003
参数: /qn
完整命令: Setup.exe /qn /Reboot=Suppress
是否需要提取安装文件: ?

OpenOffice 1.10
See: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=12044

Partition Magic 8.0
参数: /s /v/qn
完整命令: setup.exe /s /v/qn
是否需要提取安装文件: ?

PowerDesk 5.0
参数: /S /N /LANG=ENG
完整命令: PD5.exe /S /N /LANG=ENG
是否需要提取安装文件: ?

Perfect Disk 6
参数: /qn
完整命令: pdwks60.msi /qn
是否需要提取安装文件: ?

PC Cillin
参数: /qb REBOOT=Supress
完整命令: pcc.msi /qb REBOOT=Supress
是否需要提取安装文件: ?

PowerDVD 5
参数: -R to create ISS file.
完整命令: See https://www.doczj.com/doc/796490584.html,/unattended/xp/applicat...stallshield.htm
是否需要提取安装文件: ?
Also see: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=11115

Quicktime 6
下载完整的安装文件,然后按照下面的格式创建一个QuickTimeInstaller.ini文件:

[QTSETUP]
license_option=0
no_dialogs=true
registration_dialog=false
supress_speed_dialog=true
install_qtjava=false
install_qd3d=true
show_sample=false
show_readme=false
show_programfolder=false
install_qtinfo=true
完整的安装文件和QuickTimeInstaller.ini必须保存在同一个文件夹中

QuickTime Alternative
参数: /VERYSILENT /SP-
完整命令: quicktimealtxxx.exe /VERYSILENT /SP-
是否需要提取安装文件: No

QCD Player
参数: /S
完整命令: qcd411.exe /S
是否需要提取安装文件: ?
注意: 还可以使用Taskkill /F /IM QCDPlayer

RealPlayer One v2
参数: -s
完整命令: RealOnePlayerV2GOLD_en.exe -s
是否需要提取安装文件: ?

Real Alternative
参数: /VERYSILENT /SP-
完整命令: realaltxxx.exe /VERYSILENT /SP-
是否需要提取安装文件: No

Resplendent Registrar 3.21
参数: /S
完整命令: regist.exe /S
是否需要提取安装文件: ?

SpywareBlaster

参数: /verysilent
完整命令: spywareblastersetup.exe /verysilent
是否需要提取安装文件: ?

Sygate Personal Firewall
参数: /QN Reboot=Supress
完整命令: spf.exe /QN Reboot=Supress
是否需要提取安装文件: No

SiSoft Sandra Pro MAX3
参数: /VERYSILENT
完整命令: filename.exe /VERYSILENT
是否需要提取安装文件: ?

TuneUp Utilities
参数: /q
完整命令: filename.exe /q
是否需要提取安装文件: 不,但如果你提取了,请使用TU2003.msi /qn命令

TweakXP Pro 2.0
参数: /qn
完整命令: tweakxp.exe /qn
是否需要提取安装文件: ?

Tweaknow PowerPack
参数: /VERYSILENT /SP-
完整命令: setup.exe /VERYSILENT /SP-
是否需要提取安装文件: ?

TightVNC
参数: /silent
完整命令: filename.exe /silent
是否需要提取安装文件: ?

WinISO 5.3
参数: /VERYSILENT /SP-
完整命令: WinISO.exe /VERYSILENT /SP-
是否需要提取安装文件: ?

WMP 9 Bonus Pack
参数: /q
完整命令: WMP9Bonus.exe /q
是否需要提取安装文件: ?

Windows XP Support Tools
参数: /qn
完整命令: Suptools.msi /qn
是否需要提取安装文件: ?

WinAmp 2.91 / 5.0
See: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=12364
and https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=11803
and https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=12160

WinZip
See: https://www.doczj.com/doc/796490584.html,/board/index.php?showtopic=10618

Yahoo Messenger 5.6
参数: /s
完整命令: yahoomessenger.exe /s
是否需要提取安装文件: No.
注意: 下载完整安装文件而不是网络安装文件,还可以使用Taskkill /F /IM YPager命令

相关主题
文本预览
相关文档 最新文档