Need help installing win7 on skylake with RAID5.

Discussion in 'Windows 7' started by MarkJohnson, May 14, 2016.

  1. MarkJohnson

    MarkJohnson MDL Junior Member

    Jan 30, 2010
    97
    9
    0
    I just purchased a skylake system for my htpc. I got a Gigabyte Q170 motherboard, a i5-6500 and 8GB RAM.

    I fired up the system and it was fine. I updated to the latest BIOS (F2). Enabled RAID, setup RAID5 in RAID BIOS (Ctrl+I), booted up win7 updated USB stick and all seems fine, until I get to select drive to install. It says it can't find anything.

    I try browsing the X: drive, but I can't seem to get to the RAID drivers folder of the USB to manually install them.

    I boot my win10 installer finds the RAID 5 no problem. I even formatted the drive to see if it would help win7, but it didn't. Still nothing at all.

    Am I missing something?
    -=Mark=-
     
  2. Flipp3r

    Flipp3r MDL Guru

    Feb 11, 2009
    2,023
    977
    90
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. LatinMcG

    LatinMcG Bios Borker

    Feb 27, 2011
    5,700
    1,600
    180
  4. MarkJohnson

    MarkJohnson MDL Junior Member

    Jan 30, 2010
    97
    9
    0
  5. Flipp3r

    Flipp3r MDL Guru

    Feb 11, 2009
    2,023
    977
    90
    #5 Flipp3r, May 14, 2016
    Last edited by a moderator: Apr 20, 2017
    Did you look at the Gigabyte utility. It would include integrating USB3 drivers as they are not Native to Win 7.
    If you wanted to manually integrate the drivers, use dism to integrate into your boot.wim (index 1 & 2) & install.wim (whatever index your installing).
    Code:
    DISM /Mount-Wim /WimFile:C:\Mount\boot.wim /Index:1 /MountDir:C:\Mount\MNT
    DISM /Image:C:\Mount\MNT /Add-Driver /Driver:C:\Mount\Drivers /recurse
    DISM /Unmount-Wim /MountDir:C:\Mount\MNT /Commit
    Note the drivers are unpacked here:
    C:\Mount\Drivers\RAID
    C:\Mount\Drivers\USB3
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...