Isso foi resolvido finalmente. A questão é simplesmente uma questão de diferenciação de maiúsculas e minúsculas. Formatei o documento xml usando o Visual Studio para obter o recuo adequado e não notei que ele mudou de <CopyProfile>
para <copyprofile>
. Eu atualizei o caso como por outro arquivo de amostra, e funcionou. O trabalho unattend.xml
é copiado abaixo:
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="specialize">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.micro...fig/2002/State" xmlns:xsi="http://www.w3.org/20...hema-instance">
<CopyProfile>true</CopyProfile>
<DoNotCleanTaskBar>true</DoNotCleanTaskBar>
<RegisteredOrganization>XXXXXXXXX</RegisteredOrganization>
</component>
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.micro...fig/2002/State" xmlns:xsi="http://www.w3.org/20...hema-instance">
<CopyProfile>true</CopyProfile>
<DoNotCleanTaskBar>true</DoNotCleanTaskBar>
<RegisteredOrganization>XXXXXXXXX</RegisteredOrganization>
</component>
</settings>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.micro...fig/2002/State" xmlns:xsi="http://www.w3.org/20...hema-instance">
<UseConfigurationSet>true</UseConfigurationSet>
</component>
</settings>
<cpi:offlineImage cpi:source="wim:c:/users/tech/desktop/install.wim#Windows 8 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>
Por favor, note que o offlineImage
não precisa realmente corresponder a um arquivo real. Eu não sei exatamente porque isso é necessário.