Go to solutions
How to switch from USB 3.0 to USB 2.0 on server models higher than (R/T) 330.
The USB mode can be set in the BIOS: (Figure 1)
There is a toggle switch in the BIOS which allows to either use USB 2.0 or USB 3.0 (this defaults to 2.0 from our factory). Using the USB 2.0 option makes older Windows versions simple to install.
Figure 1: Dell BIOS
With USB 3.0 using the default media, installation gets stuck at the following stage without keyboard and mouse functionality (Figure 2):
Figure 2: Stopped Installation in the setup screen
If possible the most convenient solution is to install Windows 2012 which natively contains the USB 3.0 driver and have no issues during installation. When this solution is not possible, the alternative is to inject the USB 3.0 driver into the installation media.
Steps:
Set-ExecutionPolicy Unrestricted
.\DriverUpdate.ps1
In this method, we have to inject the USB 3.0 drivers manually. In order to achieve the same, we must inject the drivers into "Boot.wim" which has 2 indexes (1 & 2).
"Boot.wim" has 2 indexes (1 & 2). The Intel USB 3.0 drivers must be injected into both.CD \temp
Dism /Get-WimInfo /WimFile:C:\temp\WindowsISO\sources\boot.wim
Dism /Get-WimInfo /WimFile:C:\temp\WindowsISO\sources\Install.wim
Dism /Mount-Wim /WimFile:C:\temp\WindowsISO\sources\boot.wim /Index:1 /MountDir:C:\temp\Wim
Dism /Image:C:\temp\wim /Add-Driver /Driver:C:\temp\drivers /Recurse
Dism /Unmount-Wim /MountDir:C:\temp\wim /Commit
Mount index 2 of wim file:
Dism /Mount-Wim /WimFile:C:\temp\WindowsISO\sources\boot.wim /Index:2 /MountDir:C:\temp\Wim
Dism /Image:C:\temp\wim /Add-Driver /Driver:C:\temp\drivers /Recurse
Dism /Unmount-Wim /MountDir:C:\temp\wim /Commit
Dism /Mount-Wim /WimFile:C:\temp\WindowsISO\sources\Install.wim /Index:3 /MountDir:C:\temp\Wim
Dism /Image:C:\temp\wim /Add-Driver /Driver:C:\temp\drivers /Recurse
Dism /Unmount-Wim /MountDir:C:\temp\wim /Commit
CD 'C:\Program Files (x86)\Windows Kits\8.1\Assessment and Deployment Kit\Deployment Tools\amd64\Oscdimg
oscdimg -n -m -bc:\temp\WindowsISO\boot\etfsboot.com C:\temp\WindowsISO C:\temp\WindowsISO\Mynew_Windows_Server2008_Ent_USB3.0.iso
Not Applicable
Not Applicable