0

我正在使用我编写的这个简短的 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>
4

2 回答 2

0

如果有人看过这个,我对其进行了排序。将东西设置在错误的通道等方面存在大量问题。我刚刚返回并使用 Windows 系统映像管理器从头开始完成整个工作。

于 2014-11-26T10:04:49.317 回答
0

我注意到的第一件事是您的 GB (UK) 代码不正确:

<InputLocale>0452:00000452</InputLocale>

它应该是0809:00000809,因此正确的元素是

<InputLocale>0809:00000809<InputLocale>

此外,如果您遇到专门的缺失错误,则可能是 TimeZone 中的 GMT 标准时间应该位于专门的区域中,并在下面设置了 shell。

于 2018-07-22T22:39:19.737 回答