Подскажите пожалуйста, а файл AutoUnattend.xml как-нибудь связан с
конкретным дистрибутивом? Имеется ввиду вот что: создавал (при помощи WAIK) свой файл ответов и обнаружил, что помимо собственно создания AutoUnattend.xml, ешё и модифицируются файлы дистрибутива (Install.wim, в частности). А также в самом файле AutoUnattend.xml обнаружен явно прописанный путь к тому же Install.wim. Это прям так уж необходимо? На что это влияет?
И еще вопрос: Почему-то не срабатывает файл SetupComplete.cmd. Запускаю ручками - всё выполняется, а в конце установки - нет. Привожу свой файл ответов. Винда - 64-х разрядная.
Код:
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="windowsPE">
<component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SystemLocale>en-us</SystemLocale>
<UserLocale>en-us</UserLocale>
<UILanguage>ru-RU</UILanguage>
<UILanguageFallback>en-us</UILanguageFallback>
<InputLocale>0409:00000409</InputLocale>
</component>
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UserData>
<ProductKey>
<Key>xxxx</Key>
<WillShowUI>OnError</WillShowUI>
</ProductKey>
<Organization>HOME</Organization>
<FullName>Sergey</FullName>
<AcceptEula>true</AcceptEula>
</UserData>
<ImageInstall>
<OSImage>
<InstallFrom>
<MetaData wcm:action="add">
<Key>/IMAGE/NAME</Key>
<Value>Windows 7 ULTIMATE</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
</component>
</settings>
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UserAccounts>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Name>Serg</Name>
<Group>Administrators</Group>
<Password>
<PlainText>true</PlainText>
<Value>123</Value>
</Password>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
<OOBE>
<HideEULAPage>true</HideEULAPage>
<NetworkLocation>Other</NetworkLocation>
<ProtectYourPC>3</ProtectYourPC>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
</OOBE>
</component>
<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UILanguage>ru-RU</UILanguage>
<UserLocale>ru-RU</UserLocale>
<InputLocale>0409:00020409</InputLocale>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<AutoLogon>
<Enabled>true</Enabled>
<Username>Serg</Username>
<Password>
<PlainText>true</PlainText>
<Value>123</Value>
</Password>
<LogonCount>9999999</LogonCount>
</AutoLogon>
<TimeZone>Arabian Standard Time</TimeZone>
<ComputerName>ASV</ComputerName>
</component>
</settings>
<cpi:offlineImage cpi:source="wim:D:/W7/sources/install.wim#Windows 7 Р_акС_РёР_Р°Р>С_Р_Р°С_" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>