最近再使用MDT 2010 为客户做部署,用MDT的过程中,让各种软件静默部署是很重要的,可以节约大量的时间和精力。这里是几个常用软件的静默安装。

1. Adobe Reader 9 
PDF免费的阅读器很多,比如有名的Foxit Reader,十分小巧轻便,相较而言Adobe Reader非常臃肿缓慢。但在实际使用中,多次遇到Foxit无法正常打开的PDF文件,用Adobe没问题。因此建议大量使用PDF的公司还是用Adobe为佳。
下载地址: http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows
其中包括补丁包和各种语言包,如果公司接触海外或港澳台客户,建议安装语言包。

静默安装代码:

 
  
  1. AdbeRdr930_zh_CN.exe /sPB /rs /l /msi"/qb-! /norestart  ALLUSERS=2 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES" 
  2. msiexec  /p AdbeRdrUpd932_all_incr.msp /qb-! /norestart 
  3. REM http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows 
  4. REM LangFontPack90 
  5. msiexec /i FontPack90_zh_TW.msi /qb-! /norestart 
  6. msiexec /i FontPack90_ja_JP.msi /qb-! /norestart 
  7. msiexec /i FontPack90_ko_KR.msi /qb-! /norestart 
  8. msiexec /i FontPack90_Xtd_Lang.msi /qb-! /norestart 
  9. msiexec /i AdbeRdrSD90_all.msi /qb-! /norestart 


2. Adobe Flash 10
Flash 很常用,建议安装。
下载地址:
Active X for IE  http://www.adobe.com/go/full_flashplayer_win_msi
Plug-in For firefox http://www.adobe.com/go/full_flashplayer_win_pl_msi

静默安装代码:
 
  
  1. msiexec /I install_flash_player_10_active_x.msi /qb- /norestart 
  2. msiexec /I install_flash_player_10_plugin.msi /qb- /norestart 

 

3.Windows Live 软件包 MSN9
注意应该下载136兆的 wlsetup-all.exe
静默安装代码:

 
  
  1. REM  Install complete live suite with the following switches: 
  2. REM  - AppSelect:[ProductID] or ![ProductID] Photo,Mail,Messenger 
  3. REM  - log:log_location 
  4. REM  - NOToolbarCEIP (to not opt into Toolbar CEIP) 
  5. REM  - NOhomepage (to not set home page defaults) 
  6. REM  - Nolaunch (blocks all applications from running automatically after your installation is complete) 
  7. REM  - NOMU (to opt the computer into Microsoft Update
  8. REM  - nosearch (to not set search defaults) 
  9. REM  - q (for a silent/unattended install) 
  10. REM  仅安装Messenger,Live Mail。不要安装IE工具条,不要设置主页,不要设置默认搜索,不要立即运行 
  11. WLSetup-all.exe /q /NOToolbarCEIP /NOhomepage /Nolaunch /nosearch /AppSelect:Messenger,Mail 


4.IE8 For XP
静默安装代码:

 
  
  1. REM 静默安装IE8 For XP 不要在线升级 
  2. IE8-WindowsXP-x86-CHS.exe /passive /update-no /norestart