How To Build A Video Controller Driver Windows 7

  • Jan 5, 2017 - Expand Display adapters to see your graphics card details. You can right-click on them and select Update Driver Software to update the.
  • Oct 31, 2015  how to download network controller driver for window 7. How to fix driver network controller.fix.network controller driver windows 7 64 bit.network.
  • The few motherboard driver download pages I looked at showed Windows 7 drivers for Intel's integrated video, audio, Ethernet controller, and more. Intel also keeps a short list [ here ] of motherboards, released around the time Windows 7 was released, that fully supported the operating system.
  • A step by step tutorial to updating drivers in Windows 7 with screenshots. Well as a walkthrough for installing any kind of driver like a video card, sound card, etc. Make sure to right-click the actual device entry, not the category that the.
  1. How To Build A Video Controller Driver Windows 7 1
  2. Multimedia Video Controller Windows 7
  3. How To Build A Video Controller Driver Windows 7 Free

Jul 12, 2017 - For instance: video card drivers included in Windows rarely include all the. Even if you aren't a gamer, make sure you have the real drivers.

Learning has never been so easy!

Recently I came across a problem when attempting to install Windows 7 onto a Dell Precision 7710. I would boot up with a DVD that had an .iso image of Windows 7 installed on it, but when after clicking the install windows button, I would get a notice that the installer couldn't locate the CD/DVD driver and I needed to browse to locate it. Well, I thought I would be smart and instead do the install via a USB device. Same error. Well, how does this make sense? It's asking for a DVD driver when using a USB device. That's like your car throwing a CEL for the carburetor not working when you're using fuel injection.

This issue is caused because the installer media doesn't have a driver to install through a USB 3.0 port. You might ask, well why did the DVD drive throw the error? Well, that's because the DVD drive was an external because there is no internal DVD drive on this model laptop. So I now know my problem. USB 3.0 drivers need to be added to the boot media. Follow this guide and I'll show you how to accomplish this using the CMD line and the DISM utility.

9 Steps total

Step 1: Download the USB Drivers

Now, I had all intention of describing this how-to specifically for adding USB 3.0 drivers, but it can also be used for adding any number of drivers to the boot media as well.

First thing you're going to do is to download the USB drivers from either your computer's manufacturer or from your motherboard's manufacturer. With the Dell Precision 7710 I went to http://www.dell.com/support, punched in my service tag number and proceeded to download an entire driver pack in .CAB format.

Step 2: Extract the drivers

Build

Depending on the type of file you downloaded, it could be an .exe, a .cab, or a .zip, so you'll need to unzip the drivers out of this file. Driver files are historically mainly .inf files, but you don't need to pick and choose the individual files because this next process makes it automatic for you. The DISM (Deployment Image Servicing and Management Tool) is smart and will automatically grab the correct files.

1. Create a folder on your desktop named 'Drivers'.
2. Create two folders inside of the 'Drivers' folder, 'mount' and 'USB'.
3. Extract or copy/paste the driver files directly into the 'USB' folder. I used 7-zip to extract my driver files directly into the 'USB' folder.

Step 3: Cut the 'boot.wim' and 'install.wim' files

Locate these two files from within your boot media. This is easy if you are using a USB drive instead of a DVD, so that you don't have to reburn the DVD once we finish modifying these files.

Example: If the USB drive is plugged in and has been given drive letter 'P:' you will locate the 'boot.wim' and 'install.wim' files within the path: P:sources

It is best to just cut them out of the install media, but if you want to have a backup copy you can copy and paste. You are pasting into the 'Drivers' folder on the desktop. Just make sure to overwrite the old files with the new updated ones once we're finished with this process.

Step 4: Open up CMD prompt as Administrator and navigate to the 'Drivers' folder on the desktop

Windows 7:
1. Start, type in cmd, right click on the icon and choose Run as Administrator
Windows 8:
1. Windows Key + Q
2. Move mouse to top right corner and search, type in Command Prompt, Right click and Run as Administrator.

Next, you will need to change the directory path so that it isn't pointing to the default of C:WindowsSystem32.

Type in: cd C:Users%currentuser%DesktopDrivers - Then press Enter.
*Note: Make sure to change the %currentuser% to that of the user profile where the 'Drivers' folder was saved.

Step 5: Update the 'boot.wim' file.

In the cmd line now displaying the cd pointing to the right directory, type in these commands pressing enter after each one.

dism /mount-wim /wimfile:boot.wim /index:2 /mountdir:mount
Explanation: This command mounts the boot.wim file, index points it to the correct boot parameters for the correct OS, and /mountdir:mount points it to mount the file to the 'mount' folder we created in this directory earlier.

dism /image:mount /add-driver:'USB' /recurse
Explanation: This command automatically grabs the driver files that it locates in the 'USB' folder that we created earlier and copied the drivers to. This can take a while depending on the number of driver files that it locates.

dism /unmount-wim /mountdir:mount /commit
Explanation: This command unmounts the boot.wim file and saves the information. Think of this as a file transfer/compression process.

Step 6: Determine which index you're going to update the driver files for on the 'install.wim' file

This process wasn't necessary on the 'boot.wim' file, but it is in the 'install.wim' file. Each version of Windows can have a specific index number and we will need to locate which one it is in order to issue the command for the version of Windows you plan on installing. This is specific to the install media you are using because some install media only comes with one version of Windows 7, such as Professional, but some others may have multiple version of Windows 7, such as Home, Ultimate and Professional, just to name a few.

Issue the following command to determine what your version is:

dism /Get-WimInfo /WimFile:install.wim

You'll see in the screenshot that I have an index of 1.

Step 7: Update the 'install.wim' file.

You should still be pointed to the correct directory, so now issue the following commands to update the 'install.wim' file, using the index information you got from the step above.

dism /mount-wim /wimfile:install.wim /index:1 /mountdir:mount
Explanation: All exactly the same as the boot.wim file command, except the index is the only difference.

dism /image:mount /add-driver:'USB' /recurse

dism /unmount-wim /mountdir:mount /commit

Step 8: Cut/Paste or Copy/Paste your new 'boot.wim' and 'install.wim' files

Since I used the Cut/Paste method to remove these two files from the P:sources location, I'm going to do the same to remove them from the C:Users%currentuser%DesktopDrivers folder and place them back into the P:sources folder.

Wait for the transfer to finish. This is going to take a little bit longer to copy back over to the flash drive because the files going back in are larger than they were before due to the driver files that you've added to it.

Step 9: You're Done!

Take out the flash drive and pop it into the machine you want to reinstall Windows 7 on. You should now find that you no longer receive the pesky CD/DVD driver missing notice.

Thank you all for reading through this. These commands can be adapted to suit whichever folder names you want to use. Good luck!

Published: Jan 20, 2016 · Last Updated: Nov 06, 2017

103 Comments

  • Thai Pepper
    Capef3ar Jan 28, 2016 at 06:39pm

    Nice read - haven't run across this yet but good info to have just in case. Thanks!

  • Tabasco
    bethernet Mar 17, 2016 at 10:56pm

    THANK YOU! I only wish I had found this 3 hours ago... It worked exactly as your directions said it would, and Windows 7 is installing now!

  • Pimiento
    jimnowotny Apr 4, 2016 at 02:48pm

    Thanks! The problem with an older OS and really new hardware.

  • Pimiento
    hmasri Apr 13, 2016 at 05:28am

    If its just USB 3.0 drivers for Win7 you want ...

    https://downloadcenter.intel.com/download/25476/Windows-7-USB-3-0-Creator-Utility

    5ryn

  • Pimiento
    MrMcG33k Jun 7, 2016 at 04:26pm

    Thank You! I just ran into this issue and this resolved my problem!

  • Pimiento
    nicoserup Jun 10, 2016 at 08:43pm

    Question for point 6:
    In my Windows image, I have unlocked all the versions, so which one should i pick?
    - I haven't tried the guide yet though.

  • Anaheim
    palehmkuhl Jun 13, 2016 at 01:22pm

    Choose whichever version that you plan on installing Windows with.

  • Pimiento
    nicoserup Jun 16, 2016 at 02:41pm

    It doesn't work for me yet.
    In my version I have unlocked all of the versions, starter to ultimate.
    I chose to mount it to proff.
    But when i boot, I never get as far as to choose which windows version I want, before the message: Missing CD/DVD comes.

  • Anaheim
    palehmkuhl Jun 16, 2016 at 03:16pm

    Ok, so you're booting into the Windows ISO using your image on a bootable USB drive and that's when you're getting the message about it missing the CD/DVD drive. Sounds like something didn't go as planned if you did the process I outlined above. Either that or the driver that you added to the USB drive isn't the right one for that computer.

  • Pimiento
    scotthowell Jun 16, 2016 at 03:39pm

    For some reason I'm unable to mount the install.wim. When i try to run dism /mount-wim /wimfile:install.wim /index:1 /mountdir:mount I get an error: 5 'access is denied' error no matter which index I use.

  • Anaheim
    palehmkuhl Jun 16, 2016 at 04:14pm

    Did you run the command line as an administrator during this process?

  • Pimiento
    scotthowell Jun 16, 2016 at 05:53pm

    Yes, and the boot.wim worked just fine. I am using a Dell proprietary Win7 installation image, though.

  • Anaheim
    palehmkuhl Jun 16, 2016 at 06:02pm

    That might have something to do with it. I used a Win7 image that I downloaded from the Microsoft VLSC website. Generic. I don't believe this process is restricted to specific images, but you want to have the access to modify files in those directories. Try using a different Win7 bootable and see if you get different results.

  • Pimiento
    mikemccormack Jun 20, 2016 at 04:45pm

    Excellent KB...worked flawlessly - thank you for posting this!

    Have a great week!

  • Pimiento
    christernordell Jun 29, 2016 at 03:35pm

    scotthowell: I experienced the same problem getting error 5 when mounting install.wim. Found out its McAfee that is blocking, see https://kc.mcafee.com/corporate/index?page=content&id=KB76867. Deactivate McAfee during the mounting of install.wim solved the problem for me.In my case I had a rule that stopped handling .scr files and the mounting stopped when it reached the file bubbles.scr.

  • prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • next

The video controller, or video card, as it is more commonly called, requires a driver to communicate with your computer properly. A driver is a small piece of software that tells the device and computer how to interact with one another. If your video card begins to malfunction or begins to randomly crash while running programs or games, then the driver is a likely culprit. When you experience issues with your installed video controller, it is best to use Windows Update to find the correct driver.

Step 1

Open the Windows “Start” menu and select “Run” to open the Run dialog. Run commands can be typed directly into the search bar on the “Start” menu if you are running Windows Vista or Windows 7.

Step 2

Type “devmgmt.msc” into the Run dialog and click “OK.” Press “Enter” after you type the command if you type it into the search bar on the “Start” menu in Windows Vista or Windows 7. This opens the Windows Device Manager.

Step 3

Click “View” in the Device Manager menu and click “View by Type.” Click “Display Adapters” from the Device Manager's device list. Right-click the name of your video controller and click “Properties” from the context menu.

Step 4

Click the “Driver” tab in the video controller's properties screen. This tab displays information about the current driver the video card is using. Click “Update Driver” and allow Windows to connect to Windows Update to locate the video card's correct driver. Click “Next.”

Click “Next” after the driver installation wizard locates the correct or updated driver for your video controller. Allow your computer to complete the installation process and restart your computer if you are directed to do so.

How To Build A Video Controller Driver Windows 7How To Build A Video Controller Driver Windows 7

How To Build A Video Controller Driver Windows 7 1

Tip

  • If Windows Update is unable to find a suitable driver for your device, check the Microsoft Windows website to see if your video card is compatible with your installed version of the Windows operating system.

Video of the Day

Brought to you by Techwalla

Multimedia Video Controller Windows 7

How To Build A Video Controller Driver Windows 7 Free

More Articles