Unattended Setup Software Components (无人值守安装软件组件)
To help all the "unattended people" out there, I provide a part of my "winnt.sif" for unattended setup of the build-in software components. The official documents might not cover all entries, or some might be placed in the wrong section. The components are verified for SP3. The only addition in SP3 from SP2 is the component "k". This is just some very strange kind of placeholder. The component "netoc" is not included, 'cos the network section will be always proceeded!
Warning: NEVER TURN "OFF" WBEM!
[components]
accessopt = "off"
calc = "on"
charmap = "off"
chat = "off"
clipbook = "off"
deskpaper = "off"
dialer = "off"
fax = "off"
fp_extensions = "off"
freecell = "off"
freestyle = "off"
hearts = "off"
hypertrm = "off"
ieaccess = "off"
iis_common = "off"
iis_doc = "off"
iis_ftp = "off"
iis_inetmgr = "off"
iis_smtp = "off"
iis_www = "off"
iis_www_vdir_printers = "off"
iis_www_vdir_scripts = "off"
indexsrv_system = "off"
k = "off"
minesweeper = "off"
mousepoint = "off"
mplay = "off"
msmq_adintegrated = "off"
msmq_core = "off"
msmq_httpsupport = "off"
msmq_localstorage = "off"
msmq_triggersservice = "off"
msmsgs = "off"
msnexplr = "off"
mswordpad = "off"
netfx = "off"
notebook = "off"
oeaccess = "off"
oobe = "off"
paint = "off"
pinball = "off"
rec = "off"
rootautoupdate = "off"
solitaire = "off"
spider = "off"
stickynotes = "off"
system = "off"
templates = "off"
terminalserver = "off"
tpg = "off"
tswebclient = "off"
vol = "on"
wbem = "on"
wmaccess = "off"
wmpocm = "off"
zonegames = "off" [netoptionalcomponents]
beacon = "0"
iprip = "0"
lpdsvc = "0"
p2p = "0"
simptcp = "0"
snmp = "0"
upnp = "0"
wbemsnmp = "0"
Regards
Unattended Setup Software Components (无人值守安装软件组件)的更多相关文章
- 使用PowerShell实现服务器常用软件的无人值守安装
操作系统:windows server 2016 , windows server 2019 软件环境: 类型 名称 版本 系统功能 TelnetClien IIS 启用Asp.n ...
- ubuntu dpkg出现语法错误:安装软件提示无效组件
当安装软件是提示组件错误而导致不能安装,特别是以前卸载软件之后,再安装新版本的软件,其实就是之前卸载的时候没有按照正确的方法卸载引起的 解决方法如下: 使用sudo授权 1. 列出sudo dpkg ...
- Oracle 11g静默安装软件+手工创建数据库
由于是二次跳转+远程操作,无法使用图形界面,不能直接图形界面安装.采用静默安装软件+手工创建数据库的方式完成需求. 静默模式安装Oracle软件,配置监听程序 手工建库 检查各组件是否符合要求 1. ...
- Installshield自动安装IIS组件
原文:Installshield自动安装IIS组件 一. 工程类型:IS2010 installscript 二.原理: 1. XP和 Server2003系统:由于系统默认没有自带IIS组件,一般情 ...
- Vmware部署Linux无人值守安装Centos7系统
Linux - 无人值守安装服务 # 需求分析 - 使用光盘镜像来安装 Linux 系统的方式; 坦白讲, 该方法适用于只安装少量 Linux 系统的情况, 如果生产环境中有数百台服务器都需安装系统, ...
- Linux安装软件总结(二.几种安装命令介绍)
一.rpm包安装方式步骤: 1.找到相应的软件包,比如soft.version.rpm,下载到本机某个目录: 2.打开一个终端,su -成root用户: 3.cd soft.version.rpm所在 ...
- linux 下安装开发组件包
最初安装redhat 时, 系统自己装的,只安装了base 包,在开发过程中,需要不停的安装某个需求包, 图省事,安装光盘下的开发组件包: 在安装光盘下,,,用命令: yum grouplist ...
- 用Inno Setup来解决.NetFramework安装问题
用Inno Setup来解决.NetFramework安装问题 2010-03-01 09:59:26 标签:.Net Framework Setup 休闲 Inno 原创作品,允许转载,转载时请务必 ...
- Windows Xp Home Edition 安装IIS组件
问题描述: 在虚拟机(操作系统是Windows Xp Home Edition)中安装Sql Server 2005的时候警告缺少IIS相关组件,控制面板"添加/删除组件"中也没有 ...
随机推荐
- redo、undo、binlog的区别
在MySQL中,redo.undo.binlog经常见,但很容易混淆这三者. redo undo binlog 作用 保持事务的持久性 帮助事务回滚及MVCC的功能 进行Point-In-Time ...
- DragonBoard810使用记录
1. 执行~/workdir/Source_Package$ getSource_and_build.sh后该脚本先下载android仓库.repo到~目录,然后将android源码check out ...
- ASCII码、base64编码 为什么有的代码要用 base64 进行编码?
百度百科 ASCII码:http://baike.baidu.com/link?url=bNtzytBhlSUt_l3pwpfICxCxqgAfqsBMaeWX6QF7gH46Tg4pQtKM2aAV ...
- 3Sum Smaller 解答
Question Given an array of n integers nums and a target, find the number of index triplets i, j, k w ...
- 利用内存结构及多线程优化多图片下载(IOS篇)
利用内存结构及多线程优化多图片下载(IOS篇) 前言 下载地址, 后续发布, 请继续关注本blog 在IOS中,我们常常遇到多图片下载的问题.最简单的解决方案是直接利用别人写好的框架.但是这如同练武, ...
- 《Java程序员面试笔试宝典》之volatile有什么作用
在由Java语言编写的程序中,有时候为了提高程序的运行效率,编译器会自动对其进行优化,把经常被访问的变量缓存起来,程序在读取这个变量的时候有可能会直接从缓存(例如寄存器)中来读取这个值,而不会去内存中 ...
- SQLServer 循环1百万插入测试数据
1,首先创建student表 create table student ( sno int primary key , sname VARCHAR(200) ) 2,--向数据库中插入100万条随机姓 ...
- H5移动端性能优化
概述 1. PC优化手段在Mobile侧同样适用 2. 在Mobile侧我们提出三秒种渲染完成首屏指标 3. 基于第二点,首屏加载3秒完成或使用Loading 4. 基于联通3G网络平均338KB/s ...
- Ext树控件第一次勾选父节点子节点没选中
项目中同事提出了这样一个bug 问题: 第一次勾选父节点子节点竟然没选中,逆天了啊 初步分析: 可能是之前代码的逻辑错误造成的,随进入调试阶段... 调试中发现该参数为空(原来写代码的也太没素质了), ...
- 0118——RTLabel和正则表达式
RTLabel和RegexKitLite都要导入第三方库 使用Regexkitlite库进行正则表达式的解析 1.库是使用MRR,如果在ARC工程里面使用这个类,必须在project->buil ...