解决方案分析:解决方案的主要点是必须手动注入USB 3.0驱动程序。将驱动程序注入到包含2个索引(1和2)的手段和方法中boot.wim”中。
“Boot.wim有两个索引(1和2)。 Intel USB 3.必须在两个索引中注入0驱动程序。
索引1 = Microsoft Windows PE
索引2 = Microsoft 电脑Windows Setup
“Install.wim有八个索引。根据所用介质的版本,需要使用Intel USB 3.将0驱动程序注入索引。以下列表可能与客户介质上的列表不同。
索引1 = Windows Server 2008 R2 Server Standard
索引2 = Windows Server 2008 R2 Server Standard Core
索引3 = Windows Server 2008 R2 Server Enterprise
索引4 = Windows Server 2008 R2 Server Enterprise Core
索引5 = Windows Server 2008 R2 Server Datacenter
索引6 = Windows Server 2008 R2 Server Datacenter Core
索引7 = Windows Server 2008 R2 Server Web
索引8 = Windows Server 2008 R2 Server Web Core
在将Intel USB 3.在将0驱动程序注入操作系统图像之前,首先要创造维护环境。如果正在从Windows 7操作系统中的维护Windows Server 2008 R2 SP1.必须在客户端操作系统上安装Windows工具包的自动安装(WAIK),如果使用Windows 8/Windows Server 必须安装2012年及更高版本的操作系统Windows ADK。
具体步骤如下:
一、创建以下文件夹:
1、C:\ emp\\WindowsISO(将 windows 2008R2 ISO解压缩到文件夹)
2、C:\ emp\\drivers(添加本文件夹中的所有驱动程序文件夹)
3、C:\ emp\\wim(是WIM临时文件夹)
二、将USB解压缩驱动程序文件到C:\ emp\\drivers(图1)
1、从ADK 8.下载并安装部署工具的安装程序。(以下任何过程oscdimg.exe所有工具都需要它)
2.将命令提示符合管理员权限命令或部署和图像工具环境命令提示符(任何)ADK 8.1的Windows操作系统)结合使用,集成驱动程序:
3.管理员:命令提示符命令:列出索引文件:(图2)
CD \ emp
Dism /Get-WimInfo /WimFile:C:\ emp\\WindowsISO\\sources\\boot.wim
(图3)列出索引文件
Dism /Get-WimInfo /WimFile:C:\ emp\\WindowsISO\\sources\\Install.wim
5、安装wim文件索引1:(图4)
Dism /Mount-Wim /WimFile:C:\ emp\\WindowsISO\\sources\\boot.wim /Index:1 /MountDir:C:\ emp\\Wim
6.将驱动程序注入安装wim中(图5)
Dism /Image:C:\ emp\\wim /Add-Driver /Driver:C:\ emp\\drivers /Recurse
7、卸载wim索引文件并提交变更(图6)
Dism /Unmount-Wim /MountDir:C:\ emp\\wim /Commit
注:为boot.wim两个索引和任何需要安装介质的索引install.wim索引重复上述步骤
8、安装wim文件索引2:(图7)
Dism /Mount-Wim /WimFile:C:\ emp\\WindowsISO\\sources\\boot.wim /Index:2 /MountDir:C:\ emp\\Wim
9.将驱动程序注入安装wim中(图8)
Dism /Image:C:\ emp\\wim /Add-Driver /Driver:C:\ emp\\drivers /Recurse
10、卸载wim文件索引并提交变更:(图9)
Dism /Unmount-Wim /MountDir:C:\ emp\\wim /Commit
11.根据您想要安装的操作系统版本安装wim文件索引。
在这个例子中,我们使用了Windows Server2008 R索引3(图10)
Dism /Mount-Wim /WimFile:C:\ emp\\WindowsISO\\sources\\Install.wim /Index:3 /MountDir:C:\ emp\\Wim
将驱动程序注入安装wim中(图11)
Dism /Image:C:\ emp\\wim /Add-Driver /Driver:C:\电脑 emp\\drivers /Recurse
13、卸载wim文件索引并提交变更(图12)
Dism /Unmount-Wim /MountDir:C:\ emp\\wim /Commit
14.使用修改文件创建新文件ISO映像(图13)
CD C:\\Program Files (x86)\\Windows Kits\\8.1\\Assessment and Deployment Kit\\Deployment Tools\\amd64\\Oscdimg
15.使用修电脑 改文件创建新文件ISO(图14)
oscdimg -n -m -bc:\ emp\\WindowsISO\\boot\\etfsboot.com C:\ emp\\WindowsISO C:\ emp\\WindowsISO \\Mynew_Windows_Server2008_Ent_USB3.0.iso
16.此时已经创造了新的Windows ISO图像和注入USB 3.0驱动程序,现在可以用它们来安装Windows Server 2008 R2并在BIOS中启用USB 3.0。(图15)
电脑