我使用这个简短的unattended.xml文件编写了与sysprep一起使用的文件,虽然基础知识非常明显,但我认为布局,标题或者甚至可能存在问题设置通过,任何人有任何想法?
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
<OOBE>
<InputLocale>0452:00000452</InputLocale>
<SystemLocale>en-GB</SystemLocale>
<UILanguage>en-GB</UILanguage>
<UserLocale>en-GB</UserLocale>
<HideEULAPage>true</HideEULAPage>
<NetworkLocation>Other</NetworkLocation>
<ProtectYourPC>1</ProtectYourPC>
<TimeZone>GMT Standard Time</TimeZone>
<SkipUserOOBE>true</SkipUserOOBE>
</OOBE>
</component>
</settings>
</unattend>
答案 0 :(得分:0)
如果有人看过这个我对它进行了排序。在错误的传球中设置了很多问题。我刚回去使用Windows系统映像管理器从头开始做了所有事情。
答案 1 :(得分:0)
我注意到的第一件事是您的GB(英国)代码不正确:
<InputLocale>0452:00000452</InputLocale>
应为0809:00000809
,因此正确的元素应为
<InputLocale>0809:00000809<InputLocale>
此外,如果您遇到了专门的丢失错误,则可能是TimeZone中的GMT标准时间应该在专门的区域中,并在下面设置外壳程序。