Цитата specialist:
в sysprep и перешел к подготовке к использованию »
|
в этом месте запускайте (см.
Синтаксис командной строки Sysprep )
Код:

%SystemRoot%\system32\sysprep\sysprep.exe /oobe /shutdown /unattend:путь\файл_ответов
Цитата specialist:
в моем случае (укороченный только для последнего этапа) можно ли применять? »
|
да
Мой пример
Код:

%SystemRoot%\system32\sysprep\sysprep.exe /oobe /shutdown /unattend:C:\Unattend.xml
Файл Unattend.xml в кодировке UTF-8
Код:

<?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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<AutoLogon>
<Password>
<Value>*************</Value>
</Password>
<Enabled>true</Enabled>
<Username>ИМЯ_ПОЛЬЗОВАТЕЛЯ</Username>
</AutoLogon>
<Display>
<HorizontalResolution>1920</HorizontalResolution>
<VerticalResolution>1200</VerticalResolution>
<RefreshRate>60</RefreshRate>
<ColorDepth>32</ColorDepth>
<DPI>96</DPI>
</Display>
<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<CommandLine>net localgroup Пользователи ИМЯ_ПОЛЬЗОВАТЕЛЯ /delete</CommandLine>
<Order>1</Order>
</SynchronousCommand>
<SynchronousCommand wcm:action="add">
<CommandLine>net accounts /maxpwage:unlimited</CommandLine>
<Order>2</Order>
</SynchronousCommand>
</FirstLogonCommands>
<OOBE>
<HideEULAPage>true</HideEULAPage>
<NetworkLocation>Home</NetworkLocation>
<ProtectYourPC>3</ProtectYourPC>
</OOBE>
<UserAccounts>
<AdministratorPassword>
<Value>*************</Value>
</AdministratorPassword>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value>*************</Value>
</Password>
<Name>ИМЯ_ПОЛЬЗОВАТЕЛЯ</Name>
<Group>Administrators</Group>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
<TimeZone>Russian Standard Time</TimeZone>
</component>
<component name="Microsoft-Windows-International-Core" processorArchitecture="x86" 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>en-US; ru-RU</InputLocale>
<SystemLocale>ru-RU</SystemLocale>
<UILanguage>ru-RU</UILanguage>
<UserLocale>ru-RU</UserLocale>
</component>
</settings>
<cpi:offlineImage cpi:source="catalog:d:/seven/install_windows 7 ultimate.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>