MDL Win 7 Tool for SiMPLiX UpdatePack AiO ISO (with install.wim/esd) Creation

Discussion in 'Windows 7' started by Enthousiast, Apr 16, 2019.

  1. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,766
    7,696
    210
    Exactly, except for the first double quotes. The first double quotes must enclose the executable path only. The Temp path should not contain spaces etc, but this path (and only the path) can also be enclosed in double quotes.

    Code:
    /Temp="X:\Temp"
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. BetaTesta

    BetaTesta MDL Senior Member

    Aug 6, 2022
    274
    83
    10
    It worked. Thank you.
     
  3. BetaTesta

    BetaTesta MDL Senior Member

    Aug 6, 2022
    274
    83
    10
  4. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
    #2425 Enthousiast, Nov 13, 2024
    Last edited: Nov 13, 2024
    (OP)
    Open an elevated cmd prompt in the folder you want to list the files in and run:
    Code:
    tree /a /f
     
  5. theconfectioner

    theconfectioner MDL Novice

    Aug 1, 2023
    7
    0
    0
    Sorry for the late reply.
    yes, i have extracted the DP archive and copied the folder containing the .inf file inside to the Drivers folder. then i added one line of code inside the legacy script.

    Code:
    :Install_wim
    ECHO.
    echo=================================================================================
    echo Integrating %warch% Drivers into Install.wim...
    echo=================================================================================
    %_dism% /mount-wim /wimfile:"TEMP\WIM\aio.install.wim" /index:1 /mountdir:"%SystemDrive%\AiO_Mount"
    
    %_dism% /image:"%SystemDrive%\AiO_Mount" /Add-Driver /driver:"Drivers\(W)LAN_7_%warch%" /recurse /ForceUnsigned
    %_dism% /image:"%SystemDrive%\AiO_Mount" /Add-Driver /driver:"Drivers\nVME_7_%warch%" /recurse /ForceUnsigned
    %_dism% /image:"%SystemDrive%\AiO_Mount" /Add-Driver /driver:"Drivers\SDIO_7_%warch%" /recurse /ForceUnsigned
    
    %_dism% /Unmount-Wim /MountDir:"%SystemDrive%\AiO_Mount" /Commit
    
    :RESUME3
    It was able to integrate some of my drivers but failed to integrate others. Here's what it printed on the console:

    Code:
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.2792
    
    Image Version: 6.1.7601.17514
    
    Searching for driver packages to install...
    Found 8 driver package(s) to install.
    Installing 1 of 8 - D:\-MASTERFILES\MDL\SiMPLiX_AiO_ISO_Bare_Tool_4_0_23.12.12\Drivers\SDIO_7_x64\AMD-Catalyst-7x64\23.20.15016.15_WU\C7323435.inf: The driver package was successfully installed.
    Installing 2 of 8 - D:\-MASTERFILES\MDL\SiMPLiX_AiO_ISO_Bare_Tool_4_0_23.12.12\Drivers\SDIO_7_x64\AMD-Catalyst-7x64\26.20.15029.27017_20.4.2\C7355312.inf: Error - An error occurred. The driver package could not be installed.
    For more information, check for log files in the <windir>\inf folder of the target image.
    Installing 3 of 8 - D:\-MASTERFILES\MDL\SiMPLiX_AiO_ISO_Bare_Tool_4_0_23.12.12\Drivers\SDIO_7_x64\AMD-Catalyst-7x64\27.20.20912.1002_22.6.1\C7380405.inf: Error - An error occurred. The driver package could not be installed.
    For more information, check for log files in the <windir>\inf folder of the target image.
    Installing 4 of 8 - D:\-MASTERFILES\MDL\SiMPLiX_AiO_ISO_Bare_Tool_4_0_23.12.12\Drivers\SDIO_7_x64\AMD-Catalyst-7x64\27.20.20912.1002_22.6.1\C7380461.inf: Error - An error occurred. The driver package could not be installed.
    For more information, check for log files in the <windir>\inf folder of the target image.
    Installing 5 of 8 - D:\-MASTERFILES\MDL\SiMPLiX_AiO_ISO_Bare_Tool_4_0_23.12.12\Drivers\SDIO_7_x64\AMD-IOV-7x64\1.2.0.0043\AmdIOV.inf: The driver package was successfully installed.
    Installing 6 of 8 - D:\-MASTERFILES\MDL\SiMPLiX_AiO_ISO_Bare_Tool_4_0_23.12.12\Drivers\SDIO_7_x64\AMD-PSP-7x64\4.10.0.1\amdpsp.inf: The driver package was successfully installed.
    Installing 7 of 8 - D:\-MASTERFILES\MDL\SiMPLiX_AiO_ISO_Bare_Tool_4_0_23.12.12\Drivers\SDIO_7_x64\AMD-PSP-7x64\4.5.0.0\amdpsp.inf: The driver package was successfully installed.
    Installing 8 of 8 - D:\-MASTERFILES\MDL\SiMPLiX_AiO_ISO_Bare_Tool_4_0_23.12.12\Drivers\SDIO_7_x64\AMD-SMBus-NTx64\5.12.0.38\SMBUSamd.inf: The driver package was successfully installed.
    
    Error: 30
    
    The command completed with errors. For more information, refer to the log file.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    i could not find the log file and i could not understand the error reference. I checked my current windows 7 installation and i believe my current display driver is the 27.20.20912.1002_22.6.1\C7380461.inf
     
  6. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
    I never integrate VGA drivers, only the minimum needed ones which the tool provides: (W)Lan/Storage/USB.

    When these are installed you should have a working system on which you can manually install (or by WU) the other drivers like vga and audio.

    I can take a look at this (no guarantees) if you provide me your drivers (or the direct download links to the OEM driver page).
     
  7. theconfectioner

    theconfectioner MDL Novice

    Aug 1, 2023
    7
    0
    0
    That's true. Sorry if my English confuses you. What i mean is that i installed windows 7 on my current machine with iso i created from your tool, later i add some missing drivers using Snappy Driver Installer Origin. I believe you can check their driver packs in download0 [dot] driverpack [dot] io/driverpacks/ (sorry i can't post a link yet). I want to integrate some of that missing drivers so that everytime i reinstall my machine, i can get it running immediately. But in the meantime, i guess this current method is plenty sufficient.
     
  8. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
    Why don't you just download the drivers from the oem driver page instead of using a third party tool which not always installs the proper driver?

    If you want to re-install your device frequently why not do it once properly and create a full systemdrive backup and use that for re-installing?
     
  9. theconfectioner

    theconfectioner MDL Novice

    Aug 1, 2023
    7
    0
    0
    My machine is originally designed to host windows 10. The oem and manufacturer page also provides driver only for win10. So i resort to third party provider, i always try to stick to the most reliable one. Still, i can't get my touchpad to work haha. :flag:

    Oh yeah, i guess i'm still not used to backing up installation properly. Thank you very much for the suggestion
     
  10. bobo1704

    bobo1704 MDL Novice

    Feb 25, 2009
    22
    2
    0
    #2431 bobo1704, Nov 23, 2024
    Last edited: Nov 23, 2024
    Hello everyone!!!
    I just downloaded the latest tool, updated VC, NET, smartfix, update pack etc, downloaded x64 and x86 versions of Win 7 and I' m trying to make an AiO x64 and x86. The problem is that the tool does not integrate any nvme, usb or wifi drivers.. It shows that the x driver didn't installed successfully. I select 1 in every choice.
    Did I make anything wrong?
    Thank you a lot!
     
  11. strumf666

    strumf666 MDL Novice

    May 24, 2015
    1
    0
    0
    I am getting the following error when I run simplix.bat, how can I fix this?

    Code:
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.2792
    
    
    Error: 3
    
    The system cannot find the path specified.
    
    The DISM log file can be found at C:\WINDOWS\Logs\DISM\dism.log
    After that another error in a separate window from UpdatePack7
    Code:
    \temp\wim\aio.install.wim was not found.
     
  12. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,578
    1,581
    150
    You run
    You dont run simplix.bat
    Read the instructions and it tells you to run "W7_x86/64_3.0_modern/legacy.bat" !
     
  13. alper60

    alper60 MDL Novice

    Nov 18, 2009
    16
    0
    0
    Is there a way to merge X86 and x64 WIMs?
    I had thought "W7_x86_x64_4.0_Legacy_WIN7_Based_ISO_ESU_With_AiO" would integrate updates all x86 and x64 editions and then would merge all of thems but not.
     
  14. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,578
    1,581
    150
    Cant see anything in code that makes an 32/64 AIo but it woudnt be too difficult
     
  15. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
    #2436 Enthousiast, Nov 27, 2024
    Last edited: Nov 27, 2024
    (OP)
    It doesn't, i explained it before:
    I made a more recent post about it but these are good to go.
     
  16. fabricio simoes

    fabricio simoes MDL Member

    Dec 17, 2020
    139
    27
    10
    Windows 7 no longer has updates?
     
  17. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
  18. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
    reserved...
     
  19. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
    reserved...