现在我们就可以通过MDT进行部署了,在开始部署操作系统之前,我们需要对Windows PE启动引导进行简单自动化配置,从而方便后续操作系统部署的顺利进行,需要补充的是:在未集成SQL之前,这里的自定制设置是整个自动化部署过程中最重要的环节。接下来就为大家带来今日的自动化部署配置、客户端部署过程中信息系统日志的远程存放(Logs日志的远程存放是为了方便大家在分发失败的时候更好的排错)、控制台的更新内容。
配置启动镜像,选择“MDT Deployment Share”右键属性:
imageNetwork(UNC) path网络共享存放路径,及Local path本地存放路径位置
image设置 Rules 参数(自动化部署参数)
image image点击Windows PE 出现了报错是因为没有预安装PE负载项下载链接
image image image image image image image勾选掉“Generate a lite Touch bootable ISO image”,即不创建ISO镜像
image image为了防止有中文识别乱码问题,建议奖香港台湾两地语言包一起勾选
image相关驱动及补丁包的默认调用设置
image我们需要在相应服务器上设置一个共享文件夹,everyone有可读可写权限,以方便客户端日志信息的远程写入。
image image image右键MDT Deployment Share ,选择Update Deployment Share进行更新 (每次更改操作后都需要更新)
image image image启动映像生成完成,会在对应Deploymentshare下的Boot目录下生成相应的启动WIM映像;
imagerules 自动化参数详解
Rules 参数设置注解:
[Settings]
Priority=Default
Properties=MyCustomProperty
[Default]
OSInstall=YES //是否允许部署操作系统到目标计算机
SkipBDDWelcome= NO //是否跳过欢迎界面
SkipCapture= NO //是否跳过镜像捕获
SkipDeploymentType= NO //是否跳过选择部署类型
DeploymentType=NEWCOMPUTER
SkipAdminPassword= NO //是否跳过设置本地管理员密码
adminpassword=
SkipAppsOnUpgrade=NO //是否跳过应用程序安装向导页
SkipComputerName=NO //是否跳过设置计算机名
SkipProductKey= NO //是否跳过输入产品密钥
SkipDomainMembership=NO //是否跳过加域或工作组
SkipComputerBackup= NO //是否跳过计算机备份
SkipBitLocker=YES //是否跳过BitLocker配置
SKipTaskSequence=NO //是否跳过任务序列(可自定义)
SkipFinalSummary= NO //是否跳过系统部署完成后的最后总结
SkipTimeZone= NO //是否跳过时区和语言设置
TimeZoneName=China Standard Time //时区
KeyboardLocale=zh-cn //键盘区域
UserLocale=zh-cn //用户区域
UILanguage=zh-cn //语言
SkipLocaleSelection= NO //是否跳过本地选择
SkipUserData= NO //是否跳过用户数据配置
SkipSummary= NO //是否跳过配置摘要确认
SLShare=\********\logs //可指定部署日志存放位置,以方便日常排错
Bootstrap 参数设置注解:
[Settings]
Priority=Default
[Default]
DeployRoot=\10.0.0.2\DeploymentShare$ //共享目录
UserID=administrator //启动管理账户设置
UserDomain=***** //启动账户所属的域
UserPassword=***** //账户对应密码
KeyboardLocale=zh-cn //键盘语言设置
SkipBDDWelcome=YES //是否跳过欢迎界面
下面是我的rules规则,可以参考下
[Settings]
Priority=Default
Properties=MyCustomProperty
[Default]
OSInstall=Y
SkipCapture=YES
SkipAdminPassword=YES
SkipProductKey=YES
SkipComputerBackup=YES
SkipBitLocker=YES
SkipProductKey=YES
SkipComputerBackup=YES
SkipBitLocker=YES
SkipUserData=YES
SkipTimeZone=YES
SkipLocalSelection=YES
TimeZoneName=China Standard Time
KeyboardLocale=zh-cn
UserLocale=zh-cn
UILanguage=zh-cn
SkipAppsOnUpgrade=NO
SkipApplications=N0
Applications1={cfa9a4cf-167a-4380-9c3f-dc657377de2c}
Applications2={f158bf0d-facd-49b9-9761-6d1207ec18b7}
Applications3={e5d86726-d376-43b1-9484-a7d2ac9af3a5}
Applications4={5490fcee-5573-4ea1-be11-152e3fa7137a}
Applications5={418507b4-a13a-4119-aab8-4d413b9a8eea}
Applications6={d8879eda-9a6e-4608-ad6b-45dd5cc0f203}
Applications7={4c5e5b9d-a634-44a2-af91-2092da80c029}
Applications8={2fa352d7-b77f-44f1-bfc5-813bc9b8b083}
Applications9={c58a59db-1337-4b94-8d86-9ab61d1d0f8e}
Applications10={a07efd26-fda3-4410-8462-74ba1437d466}
Applications11={22ae8f4d-439d-437f-97be-ff5b8363d9aa}
Applications12={8d4e2fef-ff16-4fd8-bac8-42d47b3ce8c4}
Applications13={59584478-35e1-4209-ad37-30c53b6261cc}
SkipLocaleSelection= YES
SkipSummary= YES
SkipUserData=YES
SLShare=\\iphonefintech\Logs
bootstrap
[Settings]
Priority=Default
[Default]
DeployRoot=\\192.168.135.23\DeploymentShare$
userid=poweruser
userdomain=iphonefintech.com
userpassword=Abc123456
SkipBDDWelcome=YES
网友评论