Create a Windows 7 USB flash installation with new drives for new MB's

Megahertz07

Wish to be flying
Guru
Gold Member
VIP
Local time
9:40 AM
Messages
7,400
Location
Brazil
Create a Windows 7 USB flash installation with new driver for new MB's

This tutorial is to help to install Windows 7 64 bits on new MB that has USB 3 and other devices that requires drivers that are not in Windows 7 installation disk.

Please read it first till the end before you begin to work.
At the end you'll find the PDF of this tutorial and a the Drivers7.zip folder with the commands on it.

I’d a hard time to install Windows 7 64 bits on my new Gigabyte Z170 MB because Windows 7 installation disk doesn’t have Intel USB 3 and new SATA (AHCI and / or RAID) drivers.
If you try to install Windows 7 without these drivers you will not have mouse (and keyboard, if it’s connected to USB port) and you will not see your disks.

Gigabyte provided a Windows USB Installation toll, which is intended to install USB 3 and NVMe disk drivers. It didn’t work as it should.
I guess, one reason was that my Windows 7 installation disk wasn’t SP1.
After downloading a Windows 7 SP1 installation disk from MS, it did install the USB 3 driver but did NOT my SATA (AHCI and / or RAID) drivers to the install wizard.

So I began to Google to find some other options.
I found on this site: [FONT=&quot]http://codeabitwiser.com/2014/03/how-to-install-windows-7-with-only-usb-3-0-ports/[/FONT] that gave me a line to follow (thanks to Travis Payton). It didn’t install other drivers, so I had to adapt it to my needs. You should read it and also this [FONT=&quot]https://www.msigeek.com/2635/unmount-and-clean-up-a-wim-image-using-deployment-image-servicing-and-management-dism[/FONT] .

Here is my tutorial. My MB is a GA Z170, so it worked for my MB. If you have AMD or another kind of Intel MB, you will have to adapt it to your needs. You will also need a computer with Windows installed.

Hope it help you to build a Windows 7 installation disk with USB 3, new SATA (AHCI and / or RAID) and any other drivers to install or maintain windows 7.

- First of all, update your new MB BIOS.
- Configure the BIOS and set Storage Boot and PCI device to UEFI and XHCI Hand off to enable.
- Disable Secure Boot. It may be as Operating System (OS) = Other and / or CSM = Enable
- Disable Fast Boot. Fast boot disable USB ports and other hardware till OS is booted. You can enable it after Windows is installed.


On the computer with Windows installed:

- If your Windows 7 installation disk isn’t SP1, download it on MS site:
Windows 7 iso download:
[FONT=&quot]https://www.microsoft.com/en-us/software-download/windows7[/FONT]

https://www.heidoc.net/php/Windows ISO Downloader.exe

- From your MB manufacture site, download the latest chipset USB 3, SATA drivers (32 and 64 bits) and any other drivers you need (like MVMe disk driver). They must be multi file type (*.inf, *.cat, *.sys) and not a *.exe, *.msi or *.msu type.

Some explanations: On the Windows 7 installation disk there are two wim files on \sources: Boot.wim and Install.wim. We are going to work on these two files.

- Boot.wim has the wizard for maintenance and to install Windows. It has two “programs” and we are going to work on both:
Windows PE (index 1).
Windows Setup (index 2).

- Install.wim has the four Windows 7 brands and we are going to work on the one you want to install:
Windows 7 Homebasic (index 1)
Windows 7 Homepremium (index 2)
Windows 7 Professional (index 3)
Windows 7 Ultimate (index 4)

- Create a folder tree (any place you like) as below:

tree.JPG


- Extract the Sata, USB 3 files and any other drivers (like MVMe disk driver) you have downloaded.

- Place the 32 and 64 bits Sata files as extracted (it can have folders and sub folders) on the Drives7\Boot\Sata folder.
- Place the 32 and 64 bits USB 3 files as extracted (it can have folders and sub folders) on the Drives7\Boot\USB3 folder.
- Place the 32 and 64 bits other files as extracted (it can have folders and sub folders) on the Drives7\Boot\other folder. If you don’t need any other drivers, leave it blank.

Boot.JPG


- Place the 64 bits Sata files as extracted (it can have folders and sub folders) on the Drives7\ Install \Sata folder.
- Place the 64 bits USB 3 files as extracted (it can have folders and sub folders) on the Drives7\ Install \USB3 folder.
- Place the 64 bits other files as extracted (it can have folders and sub folders) on the Drives7\ Install \other folder. If you don’t need any other drivers, leave it blank.

Install.JPG


To work on boot.wim and Install.wim we are going to use C:\Windows\SysWOW64\dism
If your computer is 32 bits, replace C:\Windows\SysWOW64\dism with C:\Windows\System32\dism

Make this cmd files (make new text files, copy the text commands and rename as *.cmd)

- Clean.cmd:
C:\Windows\SysWOW64\dism /cleanup-wim
pause

- Mount_info.cmd:
C:\Windows\SysWOW64\dism /get-MountedWiminfo
pause

- Boot_info.cmd:
C:\Windows\SysWOW64\dism /Get-WimInfo /WimFile:boot.wim
pause

- Boot_1.cmd:
C:\Windows\SysWOW64\dism /mount-wim /wimfile:boot.wim /index:1 /mountdir:mount
pause
C:\Windows\SysWOW64\dism /image:mount /add-driver:"usb3" /recurse
pause
C:\Windows\SysWOW64\dism /image:mount /add-driver:"sata" /recurse
pause
Rem C:\Windows\SysWOW64\dism /image:mount /add-driver:"other" /recurse
pause
C:\Windows\SysWOW64\dism /unmount-wim /mountdir:mount /commit
pause

- Boot_2.cmd:
C:\Windows\SysWOW64\dism /mount-wim /wimfile:boot.wim /index:2 /mountdir:mount
pause
C:\Windows\SysWOW64\dism /image:mount /add-driver:"usb3" /recurse
pause
C:\Windows\SysWOW64\dism /image:mount /add-driver:"sata" /recurse
pause
Rem C:\Windows\SysWOW64\dism /image:mount /add-driver:"other" /recurse
pause
C:\Windows\SysWOW64\dism /unmount-wim /mountdir:mount /commit
pause

Remark: If you do have other drivers, remove the Rem from Boot_1.cmd and Boot_2.cmd.

- install_info.cmd:
C:\Windows\SysWOW64\dism /Get-WimInfo /WimFile:install.wim
pause

- Install_2.cmd: (Rem.: replace index number with the one related to your Windows (Basic=1, Homepremium=2, Professional=3 and Ultimate=4). If you want, you can create multi Install_X.cmd’s, one for each index and run one by one (see below how).

C:\Windows\SysWOW64\dism /mount-wim /wimfile:install.wim /index:2 /mountdir:mount
pause
C:\Windows\SysWOW64\dism /image:mount /add-driver:"usb3" /recurse
pause
C:\Windows\SysWOW64\dism /image:mount /add-driver:"sata" /recurse
pause
Rem C:\Windows\SysWOW64\dism /image:mount /add-driver:"other" /recurse
pause
C:\Windows\SysWOW64\dism /unmount-wim /mountdir:mount /commit
pause


Remark: If you want to make a Windows 7 installation disk for more than just one brand, for instance, Homepremium and Professional, create a Install_2.cmd and a Install_3.cmd as described above.
Remark: If you do have other drivers, remove the Rem from Install_X.cmd and Install_Y.cmd.

From \sources of your Windows 7 installation disk or iso file, copy Boot.wim to Drives7\Boot and Install.wim to Drives7\Install.

Place *.cmd as below:

Drives7\Boot:

Boot1.JPG


Drives7\Install


Install1.JPG


Everything is now ready to work on boot.wim and install.wim.
If all the below steps are successful, run Clean.cmd and then Mount_Info.cmd. If Mount_Info still say you have a mounted images but there is nothing on the mount folder, simply shift+delete the mount folder and create a new one.

If any of the below steps gives an error, you will have to take a close look at your drivers and find a solution by your own. Anyway, run Clean.cmd and then Mount_Info.cmd. If Mount_Info still say you have a mounted images but there is nothing on the mount folder, simply shift+delete the mount folder and create a new one. You will have to start all over with a new copy of boot.wim and / or install.wim.

Go to Drives7\Boot.
Run Boot_info.cmd. You’ll see the two indexes.
Run Boot_1.cmd as administrator (right click).
Every step finishes with a pause so you can check if successful.
When all successful and done, run the Clean.cmd and then Mount_Info.cmd. Mount_Info should give you a No mounted images found. Congratulations: first step done
If all successful but still say you have a mounted images but there is nothing on the mount folder, simply shift+delete the mount folder and create a new one.

Run Boot_2.cmd as administrator (right click).
Every step finishes with a pause so you can check if successful.
When all successful and done, run the Clean.cmd and then Mount_Info.cmd. Mount_Info should give you a No mounted images found. Congratulations: second step done
If all successful but still say you have a mounted images but there is nothing on the mount folder, simply shift+delete the mount folder and create a new one.

If Run Boot_1.cmd and Run Boot_2.cmd were successful, congratulations, Boot.wim is ready.

Go to Drives7\Install.
Run Install_info.cmd. You’ll see the four indexes.
Run Install_X.cmd as administrator (right click).
Every step finishes with a pause so you can check if successful.
When all successful and done, run the Clean.cmd and then Mount_Info.cmd. Mount_Info should give you a No mounted images found. Congratulations: first step done
If all successful but still say you have a mounted images but there is nothing on the mount folder, simply shift+delete the mount folder and create a new one.

Remark: If you created another Run Install_Y.cmd, Run Install_Y.cmd as administrator (right click).
Every step finishes with a pause so you can check if successful.
When all successful and done, run the Clean.cmd and then Mount_Info.cmd. Mount_Info should give you a No mounted images found. Congratulations: second step done
If all successful but still say you have a mounted images but there is nothing on the mount folder, simply shift+delete the mount folder and create a new one.

If Run Install_X.cmd and Run Install_Y.cmd were successful, congratulations, Install.wim is ready.

Make a USB drive (4G minimum) bootable using Windows7-USB-DVD- Installer or Rufus with the Windows 7 installation disk or iso file.
When done, replace \sources\boot.wim and \sources\ Install.wim on the USB drive with the ones you created above.

If you want to have the same Windows 7 installation disk for multiple windows 7 brands, rename \sources\ei.cfg to \sources\ei.cfg.orig. When installing windows, it will ask witch brand you want to install. Of course, the related key must be used.

If everything successful, you are ready to install Windows 7 on your new MB.

The PDF of this tutorial
View attachment Windows 7 install.pdf

The Drives7 folder
View attachment Drives7.zip

Megahertz07
 
Last edited:

My Computers My Computers

  • At a glance

    Windows 7 HP 64i5 6600K - 800MHz to 4200MHz4+4G GSkill DDR4 3000IG - Intel 530
    Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    custom build
    OS
    Windows 7 HP 64
    CPU
    i5 6600K - 800MHz to 4200MHz
    Motherboard
    GA-Z170-HD3P
    Memory
    4+4G GSkill DDR4 3000
    Graphics Card(s)
    IG - Intel 530
    Monitor(s) Displays
    Samsung 226BW
    Screen Resolution
    1680x1050
    Hard Drives
    (1) -1 SM951 – 128GB M.2 AHCI PCIe SSD drive for Windows 7 and Lubuntu
    (2) -1 WD SATA 3 - 1T for Data
    (3) -1 WD SATA 3 - 1T for backup
    PSU
    Thermaltake 450W TR2 gold
    Keyboard
    Old and good Chicony mechanical keyboard
    Mouse
    Logitech mX performance - 9 buttons (had to disable some)
    Internet Speed
    500Mb/s
    Browser
    Firefox 64
    Other Info
    TinyWall firewall
  • At a glance

    Windows 7 Proi7-4500U 800MHz to 3.0GHz(4+4)G DDR3 1600IG intel 4400 + NVIDIA GeForce GT 745M
    Computer type
    Laptop
    System Manufacturer/Model Number
    Asus Q550LF
    OS
    Windows 7 Pro
    CPU
    i7-4500U 800MHz to 3.0GHz
    Motherboard
    Asus Q550LF
    Memory
    (4+4)G DDR3 1600
    Graphics Card(s)
    IG intel 4400 + NVIDIA GeForce GT 745M
    Sound Card
    Realtek
    Monitor(s) Displays
    LG Display LP156WF4-SPH1
    Screen Resolution
    1920 x 1080
    Hard Drives
    BX500 120G SSD for Windows and programs +
    1T HDD for data
    Internet Speed
    500 Mb/s
    Browser
    Firefox
    Other Info
    TinyWall firewall
After downloading a Windows 7 SP1 installation disk from MS, it did install the USB 3 driver but did NOT my SATA (AHCI and / or RAID) drivers to the install wizard.



Megahertz07

Hi sorry i did not read the full content if your post but you have wrong info.

The USB patcher has nothing to do with Sata it will only fix the usb so you can use usb port to install the OS. And Sata fully works without the USB patcher.
 

My Computer My Computer

At a glance

Windows 7 Ultimate 64 Bit SP1Pentium Dual Core E6500 2.93 Ghz2 Gig DDR2ATI Radeon HD 4300 Series
OS
Windows 7 Ultimate 64 Bit SP1
CPU
Pentium Dual Core E6500 2.93 Ghz
Memory
2 Gig DDR2
Graphics Card(s)
ATI Radeon HD 4300 Series
Hard Drives
160 Gig
Yes, USB patcher only loads the mouse drivers to installation (Windows Setup (index 2)) that allows to use the mouse for installation, and you will need to load the SATA drives. It doesn't install USB or SATA drives to Windows PE (index 1), used for maintenance, neither to the installed Windows, so after installation, you will have no USB support. The method showed at the post, loads, not only the USB drivers, but also SATA and any other needed, to all situations.
 

My Computers My Computers

  • At a glance

    Windows 7 HP 64i5 6600K - 800MHz to 4200MHz4+4G GSkill DDR4 3000IG - Intel 530
    Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    custom build
    OS
    Windows 7 HP 64
    CPU
    i5 6600K - 800MHz to 4200MHz
    Motherboard
    GA-Z170-HD3P
    Memory
    4+4G GSkill DDR4 3000
    Graphics Card(s)
    IG - Intel 530
    Monitor(s) Displays
    Samsung 226BW
    Screen Resolution
    1680x1050
    Hard Drives
    (1) -1 SM951 – 128GB M.2 AHCI PCIe SSD drive for Windows 7 and Lubuntu
    (2) -1 WD SATA 3 - 1T for Data
    (3) -1 WD SATA 3 - 1T for backup
    PSU
    Thermaltake 450W TR2 gold
    Keyboard
    Old and good Chicony mechanical keyboard
    Mouse
    Logitech mX performance - 9 buttons (had to disable some)
    Internet Speed
    500Mb/s
    Browser
    Firefox 64
    Other Info
    TinyWall firewall
  • At a glance

    Windows 7 Proi7-4500U 800MHz to 3.0GHz(4+4)G DDR3 1600IG intel 4400 + NVIDIA GeForce GT 745M
    Computer type
    Laptop
    System Manufacturer/Model Number
    Asus Q550LF
    OS
    Windows 7 Pro
    CPU
    i7-4500U 800MHz to 3.0GHz
    Motherboard
    Asus Q550LF
    Memory
    (4+4)G DDR3 1600
    Graphics Card(s)
    IG intel 4400 + NVIDIA GeForce GT 745M
    Sound Card
    Realtek
    Monitor(s) Displays
    LG Display LP156WF4-SPH1
    Screen Resolution
    1920 x 1080
    Hard Drives
    BX500 120G SSD for Windows and programs +
    1T HDD for data
    Internet Speed
    500 Mb/s
    Browser
    Firefox
    Other Info
    TinyWall firewall
Last edited:

My Computers My Computers

  • At a glance

    7 X64i5 84002x8gb 3200mhz
    Computer type
    PC/Desktop
    OS
    7 X64
    CPU
    i5 8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Hard Drives
    various
    PSU
    pure power 11 400w cm
    Case
    Coolermaster
    Cooling
    cryorig m9i
  • At a glance

    7x64g54008gb ddr4 2400
    Computer type
    PC/Desktop
    OS
    7x64
    CPU
    g5400
    Motherboard
    ga b365m ds3h
    Memory
    8gb ddr4 2400
    PSU
    xfx pro 450w
Great contribution SIW. As your program has so many fields, do you have a instruction guide on how to use it?
 

My Computers My Computers

  • At a glance

    Windows 7 HP 64i5 6600K - 800MHz to 4200MHz4+4G GSkill DDR4 3000IG - Intel 530
    Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    custom build
    OS
    Windows 7 HP 64
    CPU
    i5 6600K - 800MHz to 4200MHz
    Motherboard
    GA-Z170-HD3P
    Memory
    4+4G GSkill DDR4 3000
    Graphics Card(s)
    IG - Intel 530
    Monitor(s) Displays
    Samsung 226BW
    Screen Resolution
    1680x1050
    Hard Drives
    (1) -1 SM951 – 128GB M.2 AHCI PCIe SSD drive for Windows 7 and Lubuntu
    (2) -1 WD SATA 3 - 1T for Data
    (3) -1 WD SATA 3 - 1T for backup
    PSU
    Thermaltake 450W TR2 gold
    Keyboard
    Old and good Chicony mechanical keyboard
    Mouse
    Logitech mX performance - 9 buttons (had to disable some)
    Internet Speed
    500Mb/s
    Browser
    Firefox 64
    Other Info
    TinyWall firewall
  • At a glance

    Windows 7 Proi7-4500U 800MHz to 3.0GHz(4+4)G DDR3 1600IG intel 4400 + NVIDIA GeForce GT 745M
    Computer type
    Laptop
    System Manufacturer/Model Number
    Asus Q550LF
    OS
    Windows 7 Pro
    CPU
    i7-4500U 800MHz to 3.0GHz
    Motherboard
    Asus Q550LF
    Memory
    (4+4)G DDR3 1600
    Graphics Card(s)
    IG intel 4400 + NVIDIA GeForce GT 745M
    Sound Card
    Realtek
    Monitor(s) Displays
    LG Display LP156WF4-SPH1
    Screen Resolution
    1920 x 1080
    Hard Drives
    BX500 120G SSD for Windows and programs +
    1T HDD for data
    Internet Speed
    500 Mb/s
    Browser
    Firefox
    Other Info
    TinyWall firewall

My Computer My Computer

At a glance

Win-7-Pro64bit 7-H-Prem-64biti7-5930K 2nd i9-9940x both water blocked VRM'...Trident-z 3200C14 2nd Trident-z 3600C16EVGA 1080ti ftw3 2nd Titan Xp both water blocked
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Custom assembled by me :}
OS
Win-7-Pro64bit 7-H-Prem-64bit
CPU
i7-5930K 2nd i9-9940x both water blocked VRM's too
Motherboard
ASUS SABERTOOTH X99 2nd ASUS x299 Apex
Memory
Trident-z 3200C14 2nd Trident-z 3600C16
Graphics Card(s)
EVGA 1080ti ftw3 2nd Titan Xp both water blocked
Sound Card
Built-in Realtek
Monitor(s) Displays
1-AOC G2460PG 24"G-Sync 144Hz/ 2nd 1-ASUS VG248QE 24" 144Hz
Screen Resolution
1920 x 1080 144Hz
Hard Drives
2-Samsung M.2 Evo & Evo Plus
2-Samsung 850 EVO 500GB SSD's/ 3-2.5 W.D. Black 1tb-&3-1tb/3-3.5 WD Black 1tb hdd's
PSU
EVGA SuperNOVA 1000-P2 2nd 1200-P2
Case
2-Corsair Obsidian Series 450D Black ATX Mid Tower
Cooling
Custom water loops
Keyboard
Logitech G710+/ 2nd Logitech G910
Mouse
2-RedDragon M901 Perdition 16400 dpi Gaming mouse = wired
Internet Speed
Comcast Ping 19ms 89.31mbps download speed 6.12mbps upload
Antivirus
Malwarebytes Pro/ Superantispyware Pro
Browser
FireFox & Pale moon
Other Info
2nd ASUS X299 Apex/Intel i9-9940x with Custom water loop/7H-Prem-x64/Corsair 450D case/Ram Trident-z 3600C16 4x8gb / Samsung970Evo plus 500gb SSD/Dual ssd EZ swap evo/PSU EVGA SuperNova 1200w-P2 80+Platinum/GPU Titan Xp /8-ML-140 on push-pull on 2-280GTX rads

ThrashZone
All USB patches only loads the USB 3.0 drivers to installation (Windows Setup (index 2)) that allows to use the mouse for installation, and you will need to load the SATA drives.
Asus, Gigabyte and many MB manufactures has one. Even Intel has released its own. Download Windows 7* USB 3.0 Creator Utility

It doesn't install USB or SATA drives to Windows PE (index 1), used for maintenance, neither to the installed Windows, so after installation, you will have no USB support. The method showed at the post, loads, not only the USB drivers, but also SATA and any other needed, to all situations.
 
Last edited:

My Computers My Computers

  • At a glance

    Windows 7 HP 64i5 6600K - 800MHz to 4200MHz4+4G GSkill DDR4 3000IG - Intel 530
    Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    custom build
    OS
    Windows 7 HP 64
    CPU
    i5 6600K - 800MHz to 4200MHz
    Motherboard
    GA-Z170-HD3P
    Memory
    4+4G GSkill DDR4 3000
    Graphics Card(s)
    IG - Intel 530
    Monitor(s) Displays
    Samsung 226BW
    Screen Resolution
    1680x1050
    Hard Drives
    (1) -1 SM951 – 128GB M.2 AHCI PCIe SSD drive for Windows 7 and Lubuntu
    (2) -1 WD SATA 3 - 1T for Data
    (3) -1 WD SATA 3 - 1T for backup
    PSU
    Thermaltake 450W TR2 gold
    Keyboard
    Old and good Chicony mechanical keyboard
    Mouse
    Logitech mX performance - 9 buttons (had to disable some)
    Internet Speed
    500Mb/s
    Browser
    Firefox 64
    Other Info
    TinyWall firewall
  • At a glance

    Windows 7 Proi7-4500U 800MHz to 3.0GHz(4+4)G DDR3 1600IG intel 4400 + NVIDIA GeForce GT 745M
    Computer type
    Laptop
    System Manufacturer/Model Number
    Asus Q550LF
    OS
    Windows 7 Pro
    CPU
    i7-4500U 800MHz to 3.0GHz
    Motherboard
    Asus Q550LF
    Memory
    (4+4)G DDR3 1600
    Graphics Card(s)
    IG intel 4400 + NVIDIA GeForce GT 745M
    Sound Card
    Realtek
    Monitor(s) Displays
    LG Display LP156WF4-SPH1
    Screen Resolution
    1920 x 1080
    Hard Drives
    BX500 120G SSD for Windows and programs +
    1T HDD for data
    Internet Speed
    500 Mb/s
    Browser
    Firefox
    Other Info
    TinyWall firewall
I keep getting the error that says -
"Error: 2"
"The system cannot find the file specified"
"The DISM log file can be found at C:\windows\logs\DISM\dism.log"

What should I do?
 

My Computer My Computer

At a glance

Windows 7 64 bit
Computer type
Laptop
Computer Manufacturer/Model Number
Custom Build
OS
Windows 7 64 bit
There are many commands on my tutorial. Under witch one you've got the error?
What does the dism.log say about the error?
Please read ALL the tutorial once again and make sure you understand each step.

Did you use the commands that are on the Drives7.zip (attached)?
 

My Computers My Computers

  • At a glance

    Windows 7 HP 64i5 6600K - 800MHz to 4200MHz4+4G GSkill DDR4 3000IG - Intel 530
    Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    custom build
    OS
    Windows 7 HP 64
    CPU
    i5 6600K - 800MHz to 4200MHz
    Motherboard
    GA-Z170-HD3P
    Memory
    4+4G GSkill DDR4 3000
    Graphics Card(s)
    IG - Intel 530
    Monitor(s) Displays
    Samsung 226BW
    Screen Resolution
    1680x1050
    Hard Drives
    (1) -1 SM951 – 128GB M.2 AHCI PCIe SSD drive for Windows 7 and Lubuntu
    (2) -1 WD SATA 3 - 1T for Data
    (3) -1 WD SATA 3 - 1T for backup
    PSU
    Thermaltake 450W TR2 gold
    Keyboard
    Old and good Chicony mechanical keyboard
    Mouse
    Logitech mX performance - 9 buttons (had to disable some)
    Internet Speed
    500Mb/s
    Browser
    Firefox 64
    Other Info
    TinyWall firewall
  • At a glance

    Windows 7 Proi7-4500U 800MHz to 3.0GHz(4+4)G DDR3 1600IG intel 4400 + NVIDIA GeForce GT 745M
    Computer type
    Laptop
    System Manufacturer/Model Number
    Asus Q550LF
    OS
    Windows 7 Pro
    CPU
    i7-4500U 800MHz to 3.0GHz
    Motherboard
    Asus Q550LF
    Memory
    (4+4)G DDR3 1600
    Graphics Card(s)
    IG intel 4400 + NVIDIA GeForce GT 745M
    Sound Card
    Realtek
    Monitor(s) Displays
    LG Display LP156WF4-SPH1
    Screen Resolution
    1920 x 1080
    Hard Drives
    BX500 120G SSD for Windows and programs +
    1T HDD for data
    Internet Speed
    500 Mb/s
    Browser
    Firefox
    Other Info
    TinyWall firewall
It happened for all of them except clean.

Yea im using the attached commands. I have edited the number for install_2 to install_4 since im using ultimate. I have to drives7 in my C:\ but it is still saying no file found.
 
Last edited:

My Computer My Computer

At a glance

Windows 7 64 bit
Computer type
Laptop
Computer Manufacturer/Model Number
Custom Build
OS
Windows 7 64 bit
Head up, I had to use the full path to the .wim file
C:\Windows\SysWOW64\dism /Get-WimInfo /WimFile:C:\Users\Owner\Desktop\W7Setup\Drives7\Drives7\Boot\boot.wim
Pause
 

My Computer My Computer

At a glance

Fedora 16, Win 7
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Custom
OS
Fedora 16, Win 7
Is the cmd file in the same folder as Boot.wim, in your case C:\Users\Owner\Desktop\W7Setup\Drives7\Drives7\Boot?
I see that you have W7Setup\Drives7\Drives7. Is the cmd file at W7Setup\Drives7 and Boot.wim at W7Setup\Drives7\Drives7\Boot?

Did you use the Drives7.zip attached?
 

My Computers My Computers

  • At a glance

    Windows 7 HP 64i5 6600K - 800MHz to 4200MHz4+4G GSkill DDR4 3000IG - Intel 530
    Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    custom build
    OS
    Windows 7 HP 64
    CPU
    i5 6600K - 800MHz to 4200MHz
    Motherboard
    GA-Z170-HD3P
    Memory
    4+4G GSkill DDR4 3000
    Graphics Card(s)
    IG - Intel 530
    Monitor(s) Displays
    Samsung 226BW
    Screen Resolution
    1680x1050
    Hard Drives
    (1) -1 SM951 – 128GB M.2 AHCI PCIe SSD drive for Windows 7 and Lubuntu
    (2) -1 WD SATA 3 - 1T for Data
    (3) -1 WD SATA 3 - 1T for backup
    PSU
    Thermaltake 450W TR2 gold
    Keyboard
    Old and good Chicony mechanical keyboard
    Mouse
    Logitech mX performance - 9 buttons (had to disable some)
    Internet Speed
    500Mb/s
    Browser
    Firefox 64
    Other Info
    TinyWall firewall
  • At a glance

    Windows 7 Proi7-4500U 800MHz to 3.0GHz(4+4)G DDR3 1600IG intel 4400 + NVIDIA GeForce GT 745M
    Computer type
    Laptop
    System Manufacturer/Model Number
    Asus Q550LF
    OS
    Windows 7 Pro
    CPU
    i7-4500U 800MHz to 3.0GHz
    Motherboard
    Asus Q550LF
    Memory
    (4+4)G DDR3 1600
    Graphics Card(s)
    IG intel 4400 + NVIDIA GeForce GT 745M
    Sound Card
    Realtek
    Monitor(s) Displays
    LG Display LP156WF4-SPH1
    Screen Resolution
    1920 x 1080
    Hard Drives
    BX500 120G SSD for Windows and programs +
    1T HDD for data
    Internet Speed
    500 Mb/s
    Browser
    Firefox
    Other Info
    TinyWall firewall
On the image
Left is Drives7\Boot
Right is Drives7\Install
 

Attachments

  • Boot1.JPG
    Boot1.JPG
    15.2 KB · Views: 274
  • Install1.JPG
    Install1.JPG
    14.7 KB · Views: 274

My Computers My Computers

  • At a glance

    Windows 7 HP 64i5 6600K - 800MHz to 4200MHz4+4G GSkill DDR4 3000IG - Intel 530
    Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    custom build
    OS
    Windows 7 HP 64
    CPU
    i5 6600K - 800MHz to 4200MHz
    Motherboard
    GA-Z170-HD3P
    Memory
    4+4G GSkill DDR4 3000
    Graphics Card(s)
    IG - Intel 530
    Monitor(s) Displays
    Samsung 226BW
    Screen Resolution
    1680x1050
    Hard Drives
    (1) -1 SM951 – 128GB M.2 AHCI PCIe SSD drive for Windows 7 and Lubuntu
    (2) -1 WD SATA 3 - 1T for Data
    (3) -1 WD SATA 3 - 1T for backup
    PSU
    Thermaltake 450W TR2 gold
    Keyboard
    Old and good Chicony mechanical keyboard
    Mouse
    Logitech mX performance - 9 buttons (had to disable some)
    Internet Speed
    500Mb/s
    Browser
    Firefox 64
    Other Info
    TinyWall firewall
  • At a glance

    Windows 7 Proi7-4500U 800MHz to 3.0GHz(4+4)G DDR3 1600IG intel 4400 + NVIDIA GeForce GT 745M
    Computer type
    Laptop
    System Manufacturer/Model Number
    Asus Q550LF
    OS
    Windows 7 Pro
    CPU
    i7-4500U 800MHz to 3.0GHz
    Motherboard
    Asus Q550LF
    Memory
    (4+4)G DDR3 1600
    Graphics Card(s)
    IG intel 4400 + NVIDIA GeForce GT 745M
    Sound Card
    Realtek
    Monitor(s) Displays
    LG Display LP156WF4-SPH1
    Screen Resolution
    1920 x 1080
    Hard Drives
    BX500 120G SSD for Windows and programs +
    1T HDD for data
    Internet Speed
    500 Mb/s
    Browser
    Firefox
    Other Info
    TinyWall firewall
Good idea, but it is a bit complicated for the average user. Might be better to knock up a gui of some kind. Perhaps just browse capability would be enough.

( Winre.wim could do with the same treatment. )
 

My Computers My Computers

  • At a glance

    7 X64i5 84002x8gb 3200mhz
    Computer type
    PC/Desktop
    OS
    7 X64
    CPU
    i5 8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Hard Drives
    various
    PSU
    pure power 11 400w cm
    Case
    Coolermaster
    Cooling
    cryorig m9i
  • At a glance

    7x64g54008gb ddr4 2400
    Computer type
    PC/Desktop
    OS
    7x64
    CPU
    g5400
    Motherboard
    ga b365m ds3h
    Memory
    8gb ddr4 2400
    PSU
    xfx pro 450w
Hello, thank you for doing this. I am currently building a new system and going to use B250M motherboard with i5 7500 cpu. I have a Windows 7 Home Premium 64 Bit license and I don't want to use Windows 10. I saw that the Kabylake cpus (along with new motherboards) won't support W7, this USB 2/3 support is one of the problems I guess. I want to learn that do I have to install Windows 7 through USB or can I install from a DVD (which I used to format the pc over time) without doing these changes in the files? So are these all for to make new motherboard recognise the USB that contains Windows 7 files?
 

My Computer My Computer

At a glance

Windows 7 Professional 64 bitIntel i5-7500
Computer type
PC/Desktop
OS
Windows 7 Professional 64 bit
CPU
Intel i5-7500
Motherboard
MSI B250M Bazooka
You can try to install Win 7 using a DVD and navigating with the keyboard (If you have a PS2 Keyboard).
Remember to disable fast boot and secure boot and enable CSM on BIOS.
If you succeed, you'll end with an installation that has no mouse. Use the DVD disk that came with the MB to install the drivers.
But I read that you won't be able to install it on a Kaby lake Chipset / CPU. I read that you can only install Linux and Win 10. By the other hand, I've seen an article that they installed Win 7 on a Kaby lake laptop.

Let us know what you find out.
 

My Computers My Computers

  • At a glance

    Windows 7 HP 64i5 6600K - 800MHz to 4200MHz4+4G GSkill DDR4 3000IG - Intel 530
    Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    custom build
    OS
    Windows 7 HP 64
    CPU
    i5 6600K - 800MHz to 4200MHz
    Motherboard
    GA-Z170-HD3P
    Memory
    4+4G GSkill DDR4 3000
    Graphics Card(s)
    IG - Intel 530
    Monitor(s) Displays
    Samsung 226BW
    Screen Resolution
    1680x1050
    Hard Drives
    (1) -1 SM951 – 128GB M.2 AHCI PCIe SSD drive for Windows 7 and Lubuntu
    (2) -1 WD SATA 3 - 1T for Data
    (3) -1 WD SATA 3 - 1T for backup
    PSU
    Thermaltake 450W TR2 gold
    Keyboard
    Old and good Chicony mechanical keyboard
    Mouse
    Logitech mX performance - 9 buttons (had to disable some)
    Internet Speed
    500Mb/s
    Browser
    Firefox 64
    Other Info
    TinyWall firewall
  • At a glance

    Windows 7 Proi7-4500U 800MHz to 3.0GHz(4+4)G DDR3 1600IG intel 4400 + NVIDIA GeForce GT 745M
    Computer type
    Laptop
    System Manufacturer/Model Number
    Asus Q550LF
    OS
    Windows 7 Pro
    CPU
    i7-4500U 800MHz to 3.0GHz
    Motherboard
    Asus Q550LF
    Memory
    (4+4)G DDR3 1600
    Graphics Card(s)
    IG intel 4400 + NVIDIA GeForce GT 745M
    Sound Card
    Realtek
    Monitor(s) Displays
    LG Display LP156WF4-SPH1
    Screen Resolution
    1920 x 1080
    Hard Drives
    BX500 120G SSD for Windows and programs +
    1T HDD for data
    Internet Speed
    500 Mb/s
    Browser
    Firefox
    Other Info
    TinyWall firewall
Thank you for the reply. Actually I am using a USB keyboard but I have an old ps2 keyboard I can use it. Can I also use a PS2 mouse? Honestly I never did anything on Bios, hope I can do these steps properly, I will look more on internet about them.

When searching about Kaby Lake - Windows 7 issue, I came across a Kaby Lake CPU review in which they test it using Windows 7. Here is the link:

The Intel Core i7-7700K (91W) Review: The New Out-of-the-box Performance Champion

So I understand from that Windows 7 can be used on kaby lake processors without any important issue.
 

My Computer My Computer

At a glance

Windows 7 Professional 64 bitIntel i5-7500
Computer type
PC/Desktop
OS
Windows 7 Professional 64 bit
CPU
Intel i5-7500
Motherboard
MSI B250M Bazooka
Please edit your profile with ALL hardware specs.
You can try this tutorial that adds the drivers not only to the installation wizard but also to the maintenance and to the installation. You can also go to the MSI or Asus site and download their program to add the drivers only to the installation wizard.
I also read that you need to add the AHCI / SATA drivers.
 

My Computers My Computers

  • At a glance

    Windows 7 HP 64i5 6600K - 800MHz to 4200MHz4+4G GSkill DDR4 3000IG - Intel 530
    Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    custom build
    OS
    Windows 7 HP 64
    CPU
    i5 6600K - 800MHz to 4200MHz
    Motherboard
    GA-Z170-HD3P
    Memory
    4+4G GSkill DDR4 3000
    Graphics Card(s)
    IG - Intel 530
    Monitor(s) Displays
    Samsung 226BW
    Screen Resolution
    1680x1050
    Hard Drives
    (1) -1 SM951 – 128GB M.2 AHCI PCIe SSD drive for Windows 7 and Lubuntu
    (2) -1 WD SATA 3 - 1T for Data
    (3) -1 WD SATA 3 - 1T for backup
    PSU
    Thermaltake 450W TR2 gold
    Keyboard
    Old and good Chicony mechanical keyboard
    Mouse
    Logitech mX performance - 9 buttons (had to disable some)
    Internet Speed
    500Mb/s
    Browser
    Firefox 64
    Other Info
    TinyWall firewall
  • At a glance

    Windows 7 Proi7-4500U 800MHz to 3.0GHz(4+4)G DDR3 1600IG intel 4400 + NVIDIA GeForce GT 745M
    Computer type
    Laptop
    System Manufacturer/Model Number
    Asus Q550LF
    OS
    Windows 7 Pro
    CPU
    i7-4500U 800MHz to 3.0GHz
    Motherboard
    Asus Q550LF
    Memory
    (4+4)G DDR3 1600
    Graphics Card(s)
    IG intel 4400 + NVIDIA GeForce GT 745M
    Sound Card
    Realtek
    Monitor(s) Displays
    LG Display LP156WF4-SPH1
    Screen Resolution
    1920 x 1080
    Hard Drives
    BX500 120G SSD for Windows and programs +
    1T HDD for data
    Internet Speed
    500 Mb/s
    Browser
    Firefox
    Other Info
    TinyWall firewall
Hello everyone.
There is no driver in the archive. Can everybody upload a driver?
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64
Computer type
PC/Desktop
OS
Windows 7 Ultimate x64
Welcome to the Forum

This tutorial was created almost 4 years ago. It is still valid but the drivers have to be furnished by the user.

SIW2 has a more up to date tutorial. Have a look at Update your Win 7 installation media
 

My Computers My Computers

  • At a glance

    Windows 7 HP 64i5 6600K - 800MHz to 4200MHz4+4G GSkill DDR4 3000IG - Intel 530
    Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    custom build
    OS
    Windows 7 HP 64
    CPU
    i5 6600K - 800MHz to 4200MHz
    Motherboard
    GA-Z170-HD3P
    Memory
    4+4G GSkill DDR4 3000
    Graphics Card(s)
    IG - Intel 530
    Monitor(s) Displays
    Samsung 226BW
    Screen Resolution
    1680x1050
    Hard Drives
    (1) -1 SM951 – 128GB M.2 AHCI PCIe SSD drive for Windows 7 and Lubuntu
    (2) -1 WD SATA 3 - 1T for Data
    (3) -1 WD SATA 3 - 1T for backup
    PSU
    Thermaltake 450W TR2 gold
    Keyboard
    Old and good Chicony mechanical keyboard
    Mouse
    Logitech mX performance - 9 buttons (had to disable some)
    Internet Speed
    500Mb/s
    Browser
    Firefox 64
    Other Info
    TinyWall firewall
  • At a glance

    Windows 7 Proi7-4500U 800MHz to 3.0GHz(4+4)G DDR3 1600IG intel 4400 + NVIDIA GeForce GT 745M
    Computer type
    Laptop
    System Manufacturer/Model Number
    Asus Q550LF
    OS
    Windows 7 Pro
    CPU
    i7-4500U 800MHz to 3.0GHz
    Motherboard
    Asus Q550LF
    Memory
    (4+4)G DDR3 1600
    Graphics Card(s)
    IG intel 4400 + NVIDIA GeForce GT 745M
    Sound Card
    Realtek
    Monitor(s) Displays
    LG Display LP156WF4-SPH1
    Screen Resolution
    1920 x 1080
    Hard Drives
    BX500 120G SSD for Windows and programs +
    1T HDD for data
    Internet Speed
    500 Mb/s
    Browser
    Firefox
    Other Info
    TinyWall firewall
Back
Top