Вы можете существенно упростить развертывание операционной системы на типовых рабочих станциях (серверах), если заранее интегрируете все необходимые драйвера в хранилище драйверов (Drive Store) в вашем установочном образ Windows. В этом случае вам не придется после установки Windows вручную скачивать и устанавливать специфические драйвера (в том числе AHCI/RAID/NVMe) на каждый компьютер.
В этой статье мы покажем, как добавить драйвера устройств непосредственно в установочный офлайн образ Windows 10 (это может быть ISO/WIM файл или VHD/VHDX файл с шаблоном ОС). Инструкция применима для всех поддерживаемых версий Windows 11, 10, 8.1 и для Windows Server 2022, 2019, 2016, 2012 R2.
Содержание:
- Добавляем драйвера в образ Windows с помощью PowerShell
- Интеграция драйверов в образ Windows Server с помощью DISM
- Удаление драйверов из образа Windows
В современных редакциях Windows вы можете добавить драйвера в установочный ISO образ двумя способами:
- с помощью утилиты DISM;
- с помощью PowerShell.
Примечание. В Windows Server 2008 R2 и Windows 7 можно было добавить драйвер в установочный образ Windows с помощью утилиты командной строки imagex (входила в состав WAIK), однако ее поддержка в Windows Server 2012 была прекращена.
Добавляем драйвера в образ Windows с помощью PowerShell
Скачайте и поместите все необходимые драйвера для устройств в один каталог (для каждого драйвера нужно создать отдельную папку). Обратите внимание, что многие производители (в том числе Dell, HP) поставляют свои драйвера в виде самораспаковывающихся exe файлов или zip архивов. Такие архивы необходимо распаковать на диск, чтобы в каталоге с драйверами присутствовали inf, cat и sys файлы.
Создайте следующую структуру каталогов:
- Каталог Drivers – в нем будут хранятся распакованные файлы драйверов для вашей редакции Windows 10 (которые предполагается интегрировать в дистрибутив);
Вы можете скачать и распаковать необходимые файлы драйверов вручную или экспортировать все сторонние драйвера с эталонного компьютера, на котором уже установлены все необходимые драйвера с помощью командлета Export-WindowsDriver.
- Каталог ISO – в каталоге хранится распакованный iso образ Windows 10. Нам нужен только файл Install.wim из каталога Sources;
- Каталог Mount – пустой каталог, в который в дальнейшем будет смонтирован WIM образ Windows.
Выведите список всех версий Windows, которые содержатся в файле Install.wim с помощью командлета PowerShell Get-WindowsImage. Это позволит вам получить индекс редакции Widows, в которую планируется интегрировать дополнительные драйвера.
Get-WindowsImage -ImagePath C:\WinWork\ISO\install.wim
В нашем примере в WIM файле содержится всего 1 редакция Windows 10 Pro с индексом 1 (ImageIndex : 1).
Если в вашем ISO образе Windows 10 имеется только файл c:\sources\install.esd, вы сможете сконвертировать файл ESD в формат WIM с помощью утилиты DISM:
dism /export-image /SourceImageFile:"C:\WinWork\ISO\install.esd" /SourceIndex:1 /DestinationImageFile:C:\WinWork\ISO\install.wim /Compress:max /CheckIntegrity
Далее необходимо смонтировать образ выбранной версии Windows в каталог Mount. Полученные выше индекс редакции Windows, которую необходимо смонтировать нужно указать в качестве аргумента Index:
Mount-WindowsImage -Path C:\WinWork\Mount\ -ImagePath C:\WinWork\ISO\install.wim -Index 1
После того, как образ смонтирован, вы можете добавить в него драйвера из каталога Drivers
Add-WindowsDriver -Path C:\WinWork\Mount\ -Driver C:\WinWork\Drivers -Recurse
Командлет Add-WindowsDriver осуществит рекурсивный поиск (параметр -Recurse) в указанном каталоге и подкаталогах всех .inf файлов с описаниями драйверов. По описанию в inf файле команда добавит зависимые INF, DLL, CAT, PNF и т.д. файлы в ваш образ Windows.
Итак, драйвера скопированы, и текущий образ можно отмонтировать, сохранив изменения в нем.
Dismount-WindowsImage -Path C:\WinWork\Mount\ –Save
В рассмотренном примере мы добавили драйверы в образ Windows в файле Install.WIM. Это образ Windows, который будет установлен на ваш диск. Если необходимо добавить драйвера в загрузочный образ Windows PE (с которого выполняется только установка Windows), необходимо добавить драйвера в файл Boot.wim. Обычно это необходимо, когда при установке Windows на компьютере не определяются локальные диски или отсутствует доступ к сети. Обычно в образ boot.wim достаточно добавить только драйвера контроллеров, дисков или сетевых адаптеров.
Вы можете сконвертировать ваш файл install.wim, содержащий установочный образ Windows с интегрированными драйверами в формат install.esd, применив сжатие (compress):
DISM /Export-Image /SourceImageFile:C:\WinWork\ISO\install.wim /SourceIndex:1 /DestinationImageFile:C:\WinWork\ISO\install.esd /Compress:recovery
Осталось создать iso файл и записать его на диск или флешку с помощью Dism++ или команды oscdimg:
oscdimg -n -m -bc:\WinWork\ISO\boot\etfsboot.com C:\WinWork\ISO C:\new_win10pro_image.iso
Данная команда сформирует ISO образ для установки на компьютер с BIOS или в режиме UEFI Legacy (CSM, compatible)
Для генерации универсального ISO образа с поддержкой UEFI и BIOS, используйте команду:
oscdimg.exe -h -m -o -u2 -udfver102 -bootdata:2#p0,e,bc:\winwork\iso\boot\etfsboot.com#pEF,e,bc:\winwork\iso\efi\microsoft\boot\efisys.bin -lWin10 c:\iso c:\new10image.iso
Для записи ISO образа на USB флешку проще всего использовать утилиту Rufus.
Утилита oscdimg входит состав Windows ADK (Assessment and Development Kit). Скачайте и установите ADK для вашей версии Windows, и затем выберите для установки Deployment Tools.
Теперь вы можете использовать ваш образ Windows для установки на компьютеры с локального устройства или по сети (с помощью PXE загрузки).
В Windows 7 / 2008R2 нет командлета Add-WindowsDriver. Он появился только в Windows 8 / Server 2012 и выше, поэтому для интеграции драйверов в образ в Win7/2008 R2 используйте DISM (см. пример ниже или в статье Интеграция драйверов USB 3.0 в дистрибутив Windows 7).
Интеграция драйверов в образ Windows Server с помощью DISM
Теперь покажем пример интеграции драйверов в установочный образ Windows Server 2022.
Структура каталогов, с которой мы будем работать может быть той же самой: Drivers (с здесь хранятся драйвера и *.inf файлы), ISO (распакованный образ Windows Server 2022), Mount (каталог монтирования образов). Все операции по модификации образа выполняются из Windows 10.
Выведите список редакций в WIM файле:
Dism /Get-ImageInfo /imagefile:"C:\iso\sources\install.wim"
В моем примере я хочу добавить драйвера в образ Windows Server 2022 Standard (Desktop Experience) с Index:2.
Смонтируйте установочный образ install.wim:
dism /mount-wim /wimfile:"C:\iso\sources\install.wim" /index:2 /mountdir:c:\mount
Теперь можно выполнить рекурсивный поиск и добавление новых драйверов в образ Windows Server 2022:
dism /image:c:\mount /Add-Driver /driver:c:\drivers\ /recurse
Для каждого успешно добавленного драйвера появится надпись:
driver.inf: The driver package was successfully installed
Сохраните изменения в образе:
dism /unmount-wim /mountdir:c:\mount /commit
Возможно придется также интегрировать драйвера для сетевых адаптеров и контролеров дисков в загрузочный образ boot.wim.
Если необходимо добавить драйвера во все редакции Windows Server в установочном образе, указанные операции нужно выполнить для всех индексов в файле install.wim.
Кроме интеграции драйверов, вы можете добавить в устанавливаемый образ Windows еще и обновления безопасности (Как интегрировать обновления в установочный образ Windows), это повысит уровень защиты ОС сразу после установки. Осталось записать обновленный установочный образ на загрузочный диск или USB флешку или сконвертировать его в ISO.
Удаление драйверов из образа Windows
В некоторых случаях вам может понадобится удалить драйвера из установочного WIM образа Windows (при удалении старых/некорректных драйверов, или для уменьшения размера ISO образа).
Для этого, смонтируйте офлайн образ WIM в локальную папку:
Mount-WindowsImage -Path C:\Mount\ -ImagePath C:\iso\sources\install.wim -Index 2
Вывести список сторонних драйверов в образе:
Get-WindowsDriver -Path "c:\Mount"
Чтобы удалить определенный драйвер, нужно указать имя его inf файла (oem<number>.inf):
Remove-WindowsDriver -Path "c:\offline" -Driver "OEM0.inf"
Можно удалить из образа драйвера определенного вендора:
$drivers = get-windowsdriver -path C:\mount$drivers | where-object {$_."ProviderName" -eq 'Intel' } | Remove-WindowsDriver -Path C:\Mount
Сохраните изменения в образе:
Dismount-WindowsImage -Path C:\Mount -save
Cо временем каталог хранилища драйверов (DriverStore\FileRepository) в установленном образе может существенно разрастаться, потому его можно периодически очищать Windows от старых версий драйверов.
The HD Audio Function 01 component by AMD (Vendor ID: 1002, Device ID: AA01) features Subsystem ID 00AA0100 and Revision 1007, designed to deliver high-definition audio processing for enhanced system sound performance and compatibility.
Realtek HD Audio Manager Not Showing Up explores common reasons why the audio utility might be missing and provides step-by-step fixes. Learn how to troubleshoot driver issues, reinstall the software, adjust Windows settings, or restore access via the Control Panel. Discover quick solutions to resolve visibility problems and regain control over your audio configurations.
Step-by-step instructions for installing the Epson L3250 printer on your notebook. Learn to download drivers, connect via USB/Wi-Fi, configure settings, and troubleshoot issues for seamless setup. Start printing efficiently in minutes!
Learn how to download, install, or update Realtek HD Audio Driver on Windows 10/11 for optimal sound performance. This guide covers manual downloads from official sources, automatic updates via Device Manager, and troubleshooting common audio issues. Ensure your system’s compatibility and enjoy seamless audio quality with the latest Realtek drivers.
The Griffin PowerMate is a versatile, programmable USB controller designed to enhance productivity on Mac and Windows. Featuring a sleek aluminum scroll wheel and customizable buttons, it enables tailored shortcuts, macros, and app controls for creative workflows, audio editing, gaming, or automation. Intuitive software allows effortless setup, adapting to your unique needs for seamless, tactile control.
Learn how to set up your Epson L3250 printer quickly with this simple guide. Follow step-by-step instructions for unboxing, installing ink, connecting to Wi-Fi, and installing drivers for Windows or Mac. Troubleshoot common issues and start printing hassle-free!
Learn how to connect your Epson L3250 printer to Wi-Fi in a few simple steps. Start by turning on the printer, then navigate to the Wi-Fi setup via the control panel. Select your network, enter the password, and confirm the connection. Use the Epson Smart Panel app for troubleshooting or additional guidance. Stay wireless and print effortlessly!
Resetting your Epson L3110 printer can resolve errors, clear internal memory, or prepare it for a new setup. This guide provides step-by-step instructions, including using the printer’s physical buttons or Epson’s software tools. Learn how to safely reset settings, troubleshoot common issues, and restore default configurations for optimal performance. Always follow manufacturer guidelines to avoid damage.
Download Epson L3150 Printer drivers and software to set up your all-in-one inkjet printer effortlessly. Access official Epson resources for seamless installation, wireless connectivity, and optimal performance. Ensure compatibility with Windows, macOS, and other operating systems for printing, scanning, and copying tasks. Simplify setup with user-friendly tools and updates tailored for the L3150 model.
Learn how to create a bootable Windows 11 USB drive with this step-by-step guide. Follow simple instructions for preparing your USB, using Microsoft’s Media Creation Tool, and installing Windows 11 effortlessly. Perfect for clean installs, upgrades, or troubleshooting – simplify your setup process in minutes!
See all queries
Название драйвера
MAYA22USB AUDIO DRIVER
Актуальная версия
1.8.0.0
MAYA22USB AUDIO DRIVER Драйвер для Windows x64
MAYA22USB AUDIO DRIVER Драйвер для Windows x86
ESI\MAYA22USB_01 драйвер
Устройства |
ОС |
ID |
Inf |
Ссылка |
---|---|---|---|---|
MAYA22USB AUDIO DRIVER 1.8.0.0
|
Windows Vista x64 Windows Vista x86 Windows XP SP2 x86 Windows XP x86 |
ESI\MAYA22USB_01 |
MAYA22USBWDM.inf | Скачать |
MAYA22USB AUDIO DRIVER 1.8.0.0
|
Windows Vista x64 Windows Vista x86 Windows XP SP2 x86 Windows XP x86 |
ESI\MAYA22USB_01 |
MAYA22USBWDM.inf | Скачать |
-
Drivers
2
-
User manuals
2
DriverHub — Updates drivers automatically. Identifies & Fixes Unknown Devices.
Completely free. Supports Windows 10, 8, 7, Vista
Choose operating system | Driver manufacturers | Version | Driver type | Description | Download |
---|---|---|---|---|---|
|
DriverHub | 1.0 | Driver utility | Don’t waste time searching for drivers — DriverHub will automatically find and install it. |
Download 20.53 MB |
|
|
1.5.0.4
|
|
n/a |
Download 2.39 MB |
ESI MAYA22 USB drivers will help to eliminate failures and correct errors in your device’s operation. Download ESI MAYA22 USB drivers for different OS Windows versions (32 and 64 bit). After you have downloaded the archive with ESI MAYA22 USB driver, unpack the file in any folder and run it.
The drivers contained on this page are suitable for the device name is: MAYA22USB Controller. Before downloading, please check that your operating system version is included in the list below, so that the device will work better.
Driver Package Download
Please select the driver released by this manufacturer according to your device type and the manufacturer of the device, and then click the «Download» button to get the download address of driver packages for this device.
For OS
Version
Type
Applicable Devices
Download
Languages supported by this driver package: English
Windows XP (32 bit)
Windows XP (64 bit)
[01/16/2013]
1.3
MEDIA
MAYA22USB Controller driver
Languages supported by this driver package: English
Windows XP (32 bit)
Windows XP (64 bit)
[08/10/2012]
1.1
MEDIA
MAYA22USB Controller driver
Common malfunction & Repair methods
The following are some common failures of , as well as the solutions to these failures. If you encounter some problems during the driver installation, or after installing the driver, these devices still cannot be used normally, it is recommended to find the corresponding problems and solutions from here, and these problems are relatively common problems.
After turning on the printer, there is no response and the printer is not powered on at all. What is …view
Printer Faults | Views: 632
The printer used to work normally, but when printing recently, the paper suddenly stopped feeding. W …view
Printer Faults | Views: 545
When the system starts, the sound is normal, but as long as the music file is played, it will freeze …view
Sound Card Faults | Views: 471
The computer motherboard integrates a sound card, and the Windows system is installed. It used to be …view
Sound Card Faults | Views: 539
When printing, the edge of printed graphics appears to scatter ink outward. What is the reason? …view
Printer Faults | Views: 798
On the printed paper, the handwriting is clear on one side and unclear on the other. What is the rea …view
Printer Faults | Views: 854
In addition, many times the device cannot work normally, and it is not necessarily because the driver is not installed properly. Most of the problems are caused by the following reasons:
1. Hardware problems, such as hardware damage, loose wiring, too much dust covering the hardware. . .
2. Operating system and driver are not compatible.
3. The parameter setting of the hardware device is wrong, which causes that sometimes it can work normally, and sometimes it can’t work normally.
4. Conflicts with other software, such as conflicts in occupying hardware resources, accidental deletion or modification of driver files.
Use the search function to quickly find the driver you need
If the drivers provided above are not what you want, or if you want to download drivers for other devices, you can enter the device name in the input box at the top of the page to quickly find various drivers.