我正在努力完成不参与安装工作的最后一步。
我有两张照片:
boot.wim
install.wim
我已经将驱动程序添加到这两种程序中,并且参考安装wim可以很好地处理包含的程序和所有内容。我已经为unattend.xml创建了一个install.wim文件,它设置了语言、语言等,一切都很好。但是,当PXE > boot.wim映像要求使用语言和分区时,我仍然必须“参加”安装。
我正在尝试为boot.wim文件创建另一个boot.wim文件(直接从原始设备制造商磁盘从源代码文件夹中撕掉),但是在WSIM中,当我将boot.wim映像添加到图像管理器(Windows7Setup或PE)时,没有amd64_Microsoft-Windows-Setup/组件,因此无法设置语言、分区和选择安装映像。
组件集文件夹中的选项有限,主要与网络有关。
我是不是遗漏了什么?
顺便说一句,现在我已经开始工作了,我遇到了MSFT部署工具包.这看上去很有希望,但在WDS上花了这么多时间之后,我不太愿意参与进来。我该继续吗?有什么好处吗?
谢谢。
编辑:
所以,我有两张照片
boot.wim <-从OEM CD的/Sources中提取
- PE只能选择捕获,而不是安装(如果我没有记错的话
install.wim <-安装了各种程序的sysprepped机器捕获到的映像
install.wim unattend.xml:
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<servicing></servicing>
<settings pass="oobeSystem">
<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="xxx" 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>
<UILanguageFallback>en-US</UILanguageFallback>
<UserLocale>en-US</UserLocale>
</component>
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="xxx" 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>
<NetworkLocation>Work</NetworkLocation>
<ProtectYourPC>2</ProtectYourPC>
</OOBE>
<UserAccounts>
<AdministratorPassword>
<Value>password123lol==</Value>
<PlainText>false</PlainText>
</AdministratorPassword>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value>passwart==</Value>
<PlainText>false</PlainText>
</Password>
<Description>Local Admin</Description>
<DisplayName>BOSS</DisplayName>
<Group>Administrators</Group>
<Name>Tony Danza</Name>
</LocalAccount>
</LocalAccounts>
<DomainAccounts>
<DomainAccountList wcm:action="add">
<Domain>allMyDomainsAreWorkgroups</Domain>
</DomainAccountList>
</DomainAccounts>
</UserAccounts>
<TimeZone>Eastern Standard Time</TimeZone>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="xxx" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<WindowsFeatures>
<ShowMediaCenter>false</ShowMediaCenter>
<ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
</WindowsFeatures>
<ComputerName>Fonz</ComputerName>
<ShowWindowsLive>false</ShowWindowsLive>
<ProductKey>1234</ProductKey>
<RegisteredOrganization>Jim's Bob Store</RegisteredOrganization>
</component>
</settings>
<cpi:offlineImage cpi:source="wim://TI-86/reminst/images/install.wim#WIN7" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>发布于 2012-08-15 20:04:17
在你的缺席中没有WindowsPE通行证。这篇文章中的第一个示例是WDS的WindowsPE通行证,它将帮助您通过最初的语言提示并设置硬盘驱动器。如果您继续使用MDT,则不必在未参加的文件中设置其中的大部分内容,因为您可以在任务序列中完成所有这些操作,并且使用MDT LiteTouch.wim文件作为WDS中的引导映像将允许您在PXE引导时选择任务序列。有关WindowsPE传递的更多信息可以在这篇文章这篇文章中找到。
发布于 2012-08-14 19:48:17
我开始安装/安装MDT。我能够带来我用WDS创建的install.wim,所以这是一个巨大的帮助。
客户端安装过程仍然不是自动化的,但它很好地简化了。我仍然需要让域连接进程在WDS中工作(或者登录到每台机器并以这种方式加入),并且使用WDS我会在机器上留下多个用户(其中一个在install.wim中,并被要求在安装过程中创建另一个用户)。我确信有很多方法可以解决这些问题,但是使用MDT,我可以获得一些简单的屏幕(管理通行证;域和域连接;OU),并且关闭并运行。
对于已经设置了WDS,我可以将MDT创建的引导映像导入WDS到PXE引导客户端到MDT中。
PS,我在阅读这个stuff...it的文档时遇到了更多的字母表汤,似乎对我发出了警告;)
如果有人有答案,我会很感激的。否则,我会在可能的时候接受这个答案。
谢谢。
https://serverfault.com/questions/417437
复制相似问题