WDS:我的unattend.xml有什么问题?

被困在“Windows无法parsing或处理通过[无效]的无人参与答案文件时,应答文件中指定的设置无法应用,处理组件[Microsoft-Windows-Shell-Setup] “阶段。

<?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.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ProductKey></ProductKey> <RegisteredOrganization>POCL</RegisteredOrganization> <ComputerName></ComputerName> <ShowWindowsLive>false</ShowWindowsLive> <StartPanelOff>false</StartPanelOff> <CopyProfile>false</CopyProfile> <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled> <TimeZone>Pacific Standard Time</TimeZone> <AutoLogon> <Password> <Value>[removed]</Value> <PlainText>false</PlainText> </Password> <LogonCount>5</LogonCount> <Username>[removed]</Username> </AutoLogon> </component> </settings> <settings pass="oobeSystem"> <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"> <InputLocale>en-us</InputLocale> <SystemLocale>en-us</SystemLocale> <UILanguage>en-us</UILanguage> <UserLocale>en-us</UserLocale> </component> <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"> <Password> <Value>[removed]</Value> <PlainText>false</PlainText> </Password> <Name>[removed]</Name> <Group>Administrators</Group> </LocalAccount> </LocalAccounts> </UserAccounts> <OOBE> <HideEULAPage>true</HideEULAPage> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <NetworkLocation>Other</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> </OOBE> <StartPanelOff>false</StartPanelOff> </component> </settings> <cpi:offlineImage cpi:source="wim:c:/users/administrator/desktop/ces_img0.wim#CES Win7" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> 

任何人都看到什么明显

编辑:它的一个win7亲安装

专业化期间有5次自动login的原因吗? 无人参与的安装不喜欢在specialize传递期间重新启动,如果实际login5次,则应该在oobe阶段执行。

尝试删除整个

  <AutoLogon> <Password> <Value>[removed]</Value> <PlainText>false</PlainText> </Password> <LogonCount>5</LogonCount> <Username>[removed]</Username> </AutoLogon> 

从专门的块和testing安装。

如果你真的不想使用它们,你也应该摆脱空的<ProductKey></ProductKey><ComputerName></ComputerName>字段。

@ethrbunny你有没有find你的答案? 我把你的unattend.xml放到我的Windows系统映像pipe理器(WSIM)中,它告诉我设置“StartPanelOff”已被弃用,不应该使用。 当我删除这两行(在专门和OOBE通行证),那么唯一的警告是,它正试图find的图像是在您的桌面上。

您是否使用Windows自动安装工具包(WAIK)? 它包含了WSIM,WSIM将帮助您创build您的unattend.xml文件,并且有一个选项来validation文件以检查错误。 WAIK可以在这里下载 。 WAIK也是Microsoft部署工具包(MDT)的一部分。 MDT可以是一个独立的成像工具,或者将与WDS或SCCM集成,使您的部署更容易。 MDT可以在这里下载 。

您还应该访问TechNet上的Springboard系列 ,您将在其中find部署Windows所需的信息和工具。 第3部分(交付)是关于部署Windows。

希望这可以帮助。