Windows 7 Hotfix repository

Discussion in 'Windows 7' started by SoLoR, May 22, 2010.

  1. PointZero

    PointZero MDL Member

    Oct 5, 2011
    1,415
    3,777
    60
    Ok, sorry- I don't know of a .MSU for it.
     
  2. tistou77

    tistou77 MDL Guru

    Mar 22, 2008
    2,208
    738
    90
    You sure it's been 237Mo (Client)?
    For me, the Microsoft.Net folder is already over 310Mo after installing .Net4, and free disk space, increased from 19.1Go to 18.64Go :eek: :confused:

    Thanks :worthy:
     
  3. McRip

    McRip MDL Addicted

    Aug 15, 2011
    935
    3,418
    30
    18.07.2012

    Added:
    KB2688892-v2

    Removed:
    KB2624668
     
  4. digital john

    digital john MDL Senior Member

    Mar 30, 2008
    265
    69
    10
  5. McRip

    McRip MDL Addicted

    Aug 15, 2011
    935
    3,418
    30
    Added:
    KB2732471

    Removed:
    KB2654363
     
  6. GLYUKOZA

    GLYUKOZA MDL Junior Member

    Apr 4, 2011
    50
    12
    0
    Friends. If I integrate the distribution, I will need to consistently run the integration for all editions wim images? Only edit the install.wim? after the updates can only replace it in the ISO of the original disc?
     
  7. ricktendo64

    ricktendo64 MDL Expert

    Apr 20, 2008
    1,396
    2,026
    60
    Only update the edition(s) you use and yes, replace the old install.wim
     
  8. JohnM

    JohnM MDL Novice

    Jul 18, 2012
    5
    3
    0
    I have recently stumbled upon this thread and have found very useful. Thank you all!

    @Burfadel, I was checking out your Windows update installer and I reckon it's pretty cool. I'm yet to give it a try though. However, I think that I have may found a couple of problems with the tweaks:
    Firstly the entries for AdditionalCriticalWorkerThreads and AdditionalDelayedWorkerThreads are setting the values to 32. However MS article says that the max value is 0x10 (hex) or 16 decimal for both of these?
    Also shouldn't the entries for "MaximumTransferLengh" be "MaximumTransferLength" (ie missing a "t" in Length)?

    Regards
    John
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,623
    3,855
    90
    Thankyou for finding those! Yes, you are correct in both accounts. I have made the corrections locally and they will be in the next monthly update (for WU satisfaction). The worker thread setting were meant to be 12, for some reason I wrote 32. Set to 32, Windows should actually automatically use the limit of 16.
     
  10. esionnoise9

    esionnoise9 MDL Novice

    Feb 17, 2012
    1
    0
    0
    who do upload this update in the instal.wim ??
     
  11. NICK@NUMBER11

    NICK@NUMBER11 MDL Expert

    Mar 23, 2010
    1,519
    726
    60
    #5877 NICK@NUMBER11, Jul 20, 2012
    Last edited by a moderator: Apr 20, 2017
    I think that that will be an issue as its such a big file, its very simple to inject the updates into the install. wim file, just do this...

    First copy the below code into say notpad and save it as inject.cmd.

    Code:
    MD %~dp0MOUNT
    
    Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:1 /MountDir:%~dp0MOUNT
    Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86"
    Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit
    
    Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:2 /MountDir:%~dp0MOUNT
    Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86"
    Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit
    
    Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:3 /MountDir:%~dp0MOUNT
    Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86"
    Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit
    
    Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:4 /MountDir:%~dp0MOUNT
    Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86"
    Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit
    
    Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:5 /MountDir:%~dp0MOUNT
    Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86"
    Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit
    
    REM Check for errors before closing.
    PAUSE
    Create a folder on your c: drive call it "Update"
    now move the inject.cmd file into it
    Now put all the updates that you want to inject in a new folder called x86
    copy that folder into your update folder
    Now copy your orginal install.wim file into the update folder
    now run the cmd file and go had have a coffee as it will take a while.

    This will update all version of windows 7 within the install.wim.

    But remember that some updates will not allow you to inject, Like Windows6.1-KB2533552. but youcan install this manually or allow windows update to do it for you.

    now if you need 64bit code, here you go...
    Code:
    MD %~dp0MOUNT
    
    Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:1 /MountDir:%~dp0MOUNT
    Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x64"
    Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit
    
    Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:2 /MountDir:%~dp0MOUNT
    Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x64"
    Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit
    
    Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:3 /MountDir:%~dp0MOUNT
    Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x64"
    Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit
    
    Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:4 /MountDir:%~dp0MOUNT
    Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x64"
    Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit
    If you are using 64bit version, dont forget to change the folder name from x86 to x64! :)
     
  12. McRip

    McRip MDL Addicted

    Aug 15, 2011
    935
    3,418
    30