Simplix Pack to update Live Win7 System/ Integrate hotfixes into Win7 distribution

Discussion in 'Windows 7' started by Enthousiast, May 13, 2013.

  1. one thing didnt go well, :p
    as i told you simplix integrate driver installer in install.wim already. you didnt have to put drivers in install.wim folder, only in boot.wim
     
  2. shhnedo

    shhnedo MDL Expert

    Mar 20, 2011
    1,676
    2,225
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. nokia8250

    nokia8250 MDL Novice

    Aug 19, 2009
    19
    16
    0
    this file would lead us download the full pack.
    it is a very smart design.
     
  4. liliactr

    liliactr MDL Member

    Sep 3, 2009
    205
    83
    10
    It creates a folder indiside install.wim "\windows\updatepack7live\" probably this folder contains nonintegrateable updates. can i safely delete this folder. Will there remain some autorun registry entries or cmd exe files to run this folder?
     
  5. shhnedo

    shhnedo MDL Expert

    Mar 20, 2011
    1,676
    2,225
    60
    That folder will be gone after the first reboot.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. gylgamesh

    gylgamesh MDL Novice

    Feb 16, 2016
    13
    2
    0
  7. liliactr

    liliactr MDL Member

    Sep 3, 2009
    205
    83
    10
    Anybody can successfully updated Server 2008 R2 with simplix or manually adding updates and get it work. My all images gives setup.exe winutil.dll error. I check log files there is nothing strange. I have changed the c:\windows\system32\oobe folder with original files (files that not updated with updates) it bypasses the error but this time at the end of the installations it says cmiv2.dll error. Now will change that dll (new one and older one have huge file size difference)
     
  8. handycoolman

    handycoolman MDL Novice

    Jun 8, 2018
    19
    11
    0
    why did you disable the spectre fix and enable only meldown fix ? By disabling spectre fix, you logically won't be protected against spectre vulnerability.
    And could you please be more explicit about the /fixoff option ? what is the exact command line that you have to run including /fixoff option ?
     
  9. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,763
    450
    There is no spectre bios fix for my hardware anyway.

    But i create aio iso's and they have to be as neutral as possible, so the people can decide for themselves what fix they enable or disable, that's why i asked.
     
  10. handycoolman

    handycoolman MDL Novice

    Jun 8, 2018
    19
    11
    0
    okay, thanks for the reply.
    what about the second question that i asked in the same post ?
     
  11. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,763
    450
    I use the batch files and only add the /FixON or /FixOFF switch:
    example:
    Code:
    @Echo Off
    TITLE Simplix UpdatePack7R2 - with IE11 - NoUSB - Optimize - No Temp - Disabled Spectre/Meltdown Fix
    COLOR 0A
    Dism /Get-WimInfo /WimFile:%~dp0wim\install.wim
    pause
    cls
    
    COLOR 0C
    set /p VER=Enter the UpdatePack7R2 version number and press Enter:
    set /p IND=Enter the Index number and press Enter:
    cls
    COLOR 0E
    ECHO UpdatePack: %~dp0exe\UpdatePack7R2-%VER%.exe + ie11
    ECHO WIM:        %~dp0wim\install.wim [Index=%IND%]
    ECHO.
    pause
    cls
    COLOR 09
    "%~dp0exe\UpdatePack7R2-%VER%.exe" /WimFile="%~dp0wim\install.wim" /ie11 /FixOff /NoUSB /Optimize /Index=%IND%
    
    pause
    
     
  12. handycoolman

    handycoolman MDL Novice

    Jun 8, 2018
    19
    11
    0
    thank you, that is clear and precise answer.