使用答案文件,您可以完全自定义Win10的安装。但是,我们只是配置Win10的S模式,因此会设置自动化过程的离线服务阶段。
为了创建答案文件以启用S模式,请使用以下步骤:
1、在“Windows映像”下,展开“组件”文件夹。
2、右键单击amd64_Microsoft_Windows_CodeIntegrity组件,然后选择添加设置以传递2 offlineServicing选项。
3、在右侧的“答案文件”下,选择amd64_Microsoft_Windows_CodeIntegrity组件。
4、在右侧的“设置”下,将SkuPolicyRequired值更改为1。
5、点击工具菜单,然后选择验证答案文件选项。
6、如果没有错误,请单击“文件”菜单,然后选择“将答案文件另存为”选项。
7、导航到要保存文件的文件夹。
8、在“文件名”下,使用unattend.xml文件名。
9、点击保存按钮。
完成这些步骤后,将创建unattend.xml文件,您现在可以使用该文件将其集成到Win10映像中以启用S模式。
在unattend.xml文件中,offlineServicing的设置部分应如下所示:
<settings pass="offlineServicing">
<component name="Microsoft-Windows-CodeIntegrity"
processorArchitecture="amd64"
publicKeyToken="31bf3856ad364e35"
anguage="neutral"
versionScope="nonSxS"
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SkuPolicyRequired>1</SkuPolicyRequired>
</component>
</settings>