Tag: dism
-
How to add drivers to a windows install file / ISO
C:\> Dism /mount-wim /wimfile:C:\temp\install.wim /index:1 /mountdir:c:\mount C:\> Dism /Add-Driver /Image:”c:\mount” /Driver:”C:\temp\x64″ /Recurse C:\> dism /unmount-wim /Mountdir:c:\mount /commit
-
Adding drivers to a Windows install image
If you need to add drivers to a Windows install USB then do this: 1. Copy the install.wim file from the USB stick to your local drive. (optional, to speed up the process) 2. Run the following command to mount the Windows image file. Assumes that you put the file in C:\temp and have created…