HOW TO INSTALL DUAL BOOT 10/7 SYSTEM ON NVMe DRIVE WITH 10 FIRST?

Page 2 of 5 FirstFirst 1234 ... LastLast

  1. Posts : 4,568
    several
       #11

    ShArKy said:
    CAN ANYONE HELP?
    should i open another thread like megahertz said?
    Yes, on sevenforums. I have made a thing for the job. You will need to give the machine details in case anything extra is required.
    Update your Win 7 installation media - Windows 7 Help Forums
      My Computer


  2. Posts : 27
    windows 10 pro (x64), windows 7 ultimate (x64), windows XP (64)
    Thread Starter
       #12

    topgundcp said:
    Running and installing the dirver from Windows 10, it will install in Windows 10. You will need to inject the driver downloaded from Samsung into the install.wim image of Windows 7. Here's the link on how to add a driver to the image:

    https://docs.microsoft.com/en-us/win...-windows-image

    so that the driver will be installed during "setting up devices" phase.
    HELLO...thanks again for your help...i used Win7-USB3.0-Creator-V3-Win7Admin from dell & i put inside the driver folder the NVMe drivers...but i dont think they were added...CANT I JUST ADD THE DRIVERS INTO THE CORRECT PLACES IN THE WIN 7 INSTALL MANUALLY??...if so which directories do i need to move the files into?

    - - - Updated - - -

    SIW2 said:
    Yes, on sevenforums. I have made a thing for the job. You will need to give the machine details in case anything extra is required.
    Update your Win 7 installation media - Windows 7 Help Forums
    hello & thanks for your help...

    its a DELL XPS 8910 that ive inserted a SAMSUNG 970 NVMe card into....ive partitioned it into 2 parts...
    C: Win 10
    D: Win 7

    ive already used the DELL Win7-USB3.0-Creator-V3-Win7Admin to insert the USB 3 drivers into the image....but maybe the samsung drivers didnt make it in even tho i modified the program to do that...i checked inside the SYSTEM32\DRIVERS directory....cant i just put the driver files into the correct places inside the Win 7 installation?
      My Computer


  3. Posts : 18,432
    Windows 11 Pro
       #13

    To add a driver to a Windows installation image, you actually have to mount the image you want to add the driver to, add the driver to the mounted image, then unmount the image committing the changes made:
    https://docs.microsoft.com/en-us/win...-windows-image
      My Computer


  4. Posts : 4,187
    Windows 11 Pro, 22H2
       #14

    I just wrote up a pretty long procedure for another user, so I thought I would include it here if interested in some very detailed instructions. I hope that this is helpful:


    Adding or Removing Drivers from an Offline Image

    This procedure is only needed if you want to add or remove drivers to or from an image. You can do this with a plain Windows installation image or a customized image that you have created as detailed in Kari's tutorial


    Get Drivers

    Use one or both methods below to first obtain drivers.


    Get drivers: Download Method

    Download required drivers from manufacturer's site.
    Extract the drivers in order to be able to access the .inf file.

    The following is an example of extracting the contents of a driver called "driver.cab". Start by opening an elevated command prompt and changing to the directory where the driver is located, then run these commands:

    Code:
    md .\extracted
    expand .\driver.cab -f:*.* .\extracted
    Note that these commands will create a subdirectory called "extracted" and will extract the driver to that folder.


    Get drivers: Export Method (3 ways to export)

    Create a new folder for exported drivers, in this example I'll use D:\Drivers

    1) Using DISM: To export all hardware drivers from an existing Windows 10 installation, use the following command in elevated command prompt or PowerShell, replacing path D:\Drivers with your actual path:

    Code:
    dism /Online /Export-Driver /Destination:D:\Drivers
    2) Using PNPUTIL: Run from an elevated command prompt or PowerShell:

    Code:
    pnputil /export-driver * D:\Drivers
    3) Using PowerShell: This method provides more detail on the extracted drivers then just the cryptic directory names provided by the DISM or PNPUTIL methods.

    Run these commands in the elevated PowerShell:

    Code:
    $Drivers = Export-WindowsDriver -Online -Destination D:\Drivers
    $Drivers | Select-Object ClassName, ProviderName, Date, Version | Sort-Object ClassName
    You can use any variable in place of $Drivers and you can sort however you want.


    End of Get Drivers Sub-Section

    Mount Offline Image

    Create a folder to which you will extract your Windows ISO image, for example, d:\ISO_Files. If you already have this folder from the steps above, you can use those files. Otherwise, extract the files from your ISO image to that folder now.

    Create a folder to mount the offline image. For example, D:\Mount.

    Open an elevated command prompt. Enter the following command to check what editions are included in image:

    Code:
    Dism /Get-WimInfo /WimFile:D:\ISO_Files\Sources\install.wim
    Note the index number of your selected edition. In this example we are using an index number of 8.


    Mounting an Image Located on HD, Thumb Drive, Flash Media

    Mount the image of your preferred Windows 10 edition using its index number, index 8 in this example:

    Code:
    Dism /Mount-Image /ImageFile:D:\ISO_Files\Sources\install.wim /Index:8 /MountDir:D:\Mount
    Skip to Adding or Removing Drivers below.

    NOTE: If you followed Kari's tutorial to create a sysprep image, that image has only a single edition of Windows so you should use index number 1 (the only one available).


    Mounting an Image Located on Virtual HD (VHD / VHDX)

    When mounting a VHD file, the index number is always 1. Set /ImageFile as path to virtual hard disk file, for instance mounting a VHDX file named W10PROx64.vhdx which is stored in folder F:\VHD_Files, you would use the following mount command:

    Code:
    Dism /Mount-Image /ImageFile:F:\VHD_Files\W10PROx64.vhdx /Index:1 /MountDir:D:\Mount
    This will take some time. Please notice, the drive where the Mount folder is located needs some free space. Make sure that you have enough space available!

    Mounting a VHD / VHDX file requires at least as much free space on the drive where the Mount folder is located as the size of the virtual hard disk. If you mount a dynamically expanding 64 GB virtual hard disk to be serviced, you need at least 70 GB free space.


    Optional: Checking for Drivers Already Present

    Optional: You can always check which drivers are already present in an offline image with the following command:

    Code:
    dism /Image:D:\Mount /Get-Drivers

    Adding or Removing Drivers


    Adding Individually Downloaded Drivers

    If you downloaded individual drivers, you could add them now to offline mounted image with following command:

    For signed drivers, use this command:

    Code:
    dism /Image:D:\Mount /Add-Driver /Driver:X:\Drivers\DriverName.inf
    For unsigned drivers, use this command:

    Code:
    dism /Image:D:\Mount /Add-Driver /Driver:X:\Drivers\DriverName.inf /ForceUnsigned
    Replace the mounted folder path D:\Mount in above sample command with the actual path to your mount folder, and driver path and name X:\Drivers\DriverName.inf with the actual path to downloaded driver.


    Adding Multiple Drivers by Recursing a Folder

    If you have a folder that contains multiple drivers in subfolders, like when exported from an existing installation as described above, you can add all drivers with one simple command, replacing the mount folder and drivers folder paths with your actual paths:

    Code:
    dism /Image:D:\Mount /Add-Driver /Driver:D:\Drivers /Recurse
    The /Recurse switch will cause the folder and all subfolders to be processed, adding all drivers found.


    Removing Drivers

    If you want to remove a driver from offline image, use the following command:

    Code:
    dism /Image:D:\Mount /Remove-Driver /Driver:X:\Drivers\DriverName.inf
    With /Add-Driver and /Remove-Driver you can add or remove multiple drivers:

    Code:
    dism /Image:D:\Mount /Add-Driver /Driver:X:\Drivers\DriverName.inf /Driver:X:\Drivers\Driver2Name.inf

    Unmount Offline Image

    You can now save changes and unmount offline image with following command:

    Code:
    dism /Unmount-Image /MountDir:D:\Mount /Commit
    The /Commit switch is the important one, it commits (saves) all changes to the image.

    End of Procedure for Adding and Removing Drivers

      My Computers


  5. Posts : 27
    windows 10 pro (x64), windows 7 ultimate (x64), windows XP (64)
    Thread Starter
       #15

    Megahertz said:
    Win 7 installation files don't have new drivers required to install on new hardware.
    You have to add those new drivers (USB3.x, SATA, MVMe) to the win 7 installation drive.
    Open a thread on Installation & Setup - Windows 7 Help Forums and we will help you to install win 7 on your computer.
    ive done that now...i think lol..THANKS

    - - - Updated - - -

    topgundcp said:
    @Megahertz

    By using the command above. You actually install Windows 7 manually while running Windows 10, by passing the booting process. After rebooting, Windows 7 will start setting up default drivers for devices, network, prompt you to set up user etc...

    If in fact a particular driver is needed. You can mount the install.wim then use add-package to add additional driver(s) so it will be part of Windows 7 installation then run the command.


    Been a long time that I install any Windows 7 but if I am not mistaken, Windows 7 came with a single edition and index 1 is the only available option. However, if I am wrong then use :
    DISM.exe /Get-WimInfo /WimFile:install.wim
    to get correct index # for the edition that you want to install.

    For Windows 10 iso, came with multiple editions, for example: 6 is for Windows 10 Pro.
    ill have to do this again but with the index 4 it seems...

    this is getting confusing i think because these terms aren't being defined & just thrown around with no explanation...

    what shud have been a very easy thing has turned into a mess so id like to have ONE simple set of instructions to make this work...ive followed 15 different options but they all failed...
    LET ME EXPLAIN WHAT IVE DONE SO FAR so we can take things from that point if we agree those steps were correct...

    if not maybe we can start over...id just like to solve this already as its getting very frustrating

    1) i downloaded the ISO file & created the USB drive ill be using for the install using Windows7-USB-DVD-Download-Tool-Installer-en-US

    2) i updated (supposedly) the wim file with dell's usb 3 driver updater Win7-USB3.0-Creator-V3-Win7Admin and by adding to their drivers the samsung drivers into the x64 directory inside the programs directory

    the usb drivers seemed to work fine because i was able to run the setup file on the flash drive (usb 3.0) just fine & start the copy process of the setup files but at about 6% into the expanding phase it came back with a missing driver message
      My Computer


  6. Posts : 4,568
    several
       #16

    ive already used the DELL Win7-USB3.0-Creator-V3-Win7Admin to insert the USB 3 drivers into the image....but maybe the samsung drivers didnt make it in even tho i modified the program to do that...i checked inside the SYSTEM32\DRIVERS directory....cant i just put the driver files into the correct places inside the Win 7 installation?
    If you pay attention to your question on sevenforums:

    You need usb3 drivers, and nvme updates.
      My Computer


  7. Posts : 6,299
    Windows 11 Pro - Windows 7 HP - Lubuntu
       #17

    ShArKy, despite the very good and skilled people on TenForums, you are on the wrong forum to get help on Win 7.

    I myself use Win 7 on a M.2 drive. I had to add USB3.x, SATA and MVMe drivers to the win 7 installation drive.
    I already did what you want to do many times.

    SIW2 has made a tutorial and a script to add those drivers, not only to the Install.wim but also to the Boot.wim and WinRE.

    Please, open a thread at Installation & Setup - Windows 7 Help Forums and we will guide you.
      My Computers


  8. Posts : 4,187
    Windows 11 Pro, 22H2
       #18

    Megahertz said:
    SIW2 has made a tutorial and a script to add those drivers, not only to the Install.wim but also to the Boot.wim and WinRE.
    @SIW2, If you happen to have a link to that script that you can share, I'd love to take a look. I too wrote a program that let's me inject drivers into WinPE and WinRE and I'd love to just see if there are any tricks I could learn from how you do it.
      My Computers


  9. Posts : 4,568
    several
       #19

    You can download the 7upv54.zip
    7UPv54.zip
    Scripts are in there. They call stuff from the BIN folder.

    HOW TO INSTALL DUAL BOOT 10/7 SYSTEM ON NVMe DRIVE WITH 10 FIRST?-7upv54.jpg
      My Computer


  10. Posts : 4,187
    Windows 11 Pro, 22H2
       #20

    Thank you! Very much appreciate that.
      My Computers


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 00:37.
Find Us




Windows 10 Forums