Изображение после обобщенного sysprep, не пропускающего OOBE
Я пытался сделать образ Windows 10 (весеннее обновление 1803). С помощью System Image Manager я создал файл ответов для автоматической установки Windows, но некоторые шаги OOBE не пропускаются, хотя я добавил это в файл ответов.
Появится следующая страница: EULA Подключение к сети Настройки конфиденциальности.
В xml-файл я включил следующие строки:
<HideEULAPage>true</HideEULAPage>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
<ProtectYourPC>3</ProtectYourPC>
Полный xml-файл:
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<servicing>
<package action="configure">
<assemblyIdentity name="Microsoft-Windows-Client-LanguagePack-Package" version="10.0.17134.1" processorArchitecture="amd64" publicKeyToken="xxxxxxxxx" language="nl-NL" />
</package>
</servicing>
<settings pass="specialize">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="wow64" publicKeyToken="xxxxxxxxx" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OEMInformation>
<SupportPhone>xxxxxxxxx</SupportPhone>
<SupportHours>xxxxxxxxx</SupportHours>
</OEMInformation>
<CopyProfile>true</CopyProfile>
<TimeZone>W. Europe Standard Time</TimeZone>
<RegisteredOwner>xxxxxxxxx</RegisteredOwner>
</component>
<component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="xxxxxxxxx" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Home_Page>xxxxxxxxx</Home_Page>
</component>
</settings>
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="wow64" publicKeyToken="xxxxxxxxx" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OOBE>
<HideEULAPage>true</HideEULAPage>
<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
<ProtectYourPC>3</ProtectYourPC>
<UnattendEnableRetailDemo>false</UnattendEnableRetailDemo>
<HideLocalAccountScreen>true</HideLocalAccountScreen>
</OOBE>
<UserAccounts>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value>xxxxxxxxx</Value>
<PlainText>false</PlainText>
</Password>
<DisplayName>xxxxxxxxx</DisplayName>
<Name>xxxxxxxxx</Name>
<Description>xxxxxxxxx</Description>
<Group>xxxxxxxxx</Group>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
<RegisteredOwner />
</component>
<component name="Microsoft-Windows-International-Core" processorArchitecture="wow64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<InputLocale>0413:00020409</InputLocale>
<SystemLocale>nl-NL</SystemLocale>
<UILanguage>nl-NL</UILanguage>
<UILanguageFallback></UILanguageFallback>
</component>
</settings>
<cpi:offlineImage cpi:source="wim:x:/xxxxxxxxx.wim#xxxxxxxxx" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
Есть ли что-то, чего мне не хватает, чтобы убедиться, что OOBE полностью пропущен?