Windows 7 Hotfix repository

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

  1. ricktendo64

    ricktendo64 MDL Expert

    Apr 20, 2008
    1,396
    2,025
    60
    Trinket, if you can write a batch file you can integrate the msp updates. Its not hard, SoLoR has the updates extracted and a cmd to integrate them into the pre-prepared/extracted installer

    Just integrate all the updates that SoLoR has and also integrate KB2468871 into all client/extended x86/x64 installers

    BTW if you are using x64 you only need to install the x64 MSI's, they already include x86 libraries...another thing dont install via setup.exe, dont think it will work
     
  2. Mawrick26

    Mawrick26 MDL Novice

    Nov 16, 2007
    13
    1
    0
    Hi Trinket,
    Could you please post your package of x64 silent .net4 framework installer so i can integrate it to my unattended seven dvd and i think other members of this forum would like it.
    Thanks in advance.
     
  3. amires

    amires MDL Member

    Sep 27, 2009
    219
    129
    10
    Can we delete msp files from hotfixes folder of SOLOR's .net 4 installer after they have been integrated to reduce total size of the package?
     
  4. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,626
    3,856
    90
    If that did happen, it would be better to move it them to a folder stating they are not needed if using the integrated installer :)
     
  5. tistou77

    tistou77 MDL Expert

    Mar 22, 2008
    1,990
    629
    60
    I see that these Update were not added to the repository of SoLoR
    they are not installed?

    thank ;)
     
  6. RickSteele

    RickSteele MDL Addicted

    Nov 12, 2009
    833
    483
    30
    Only KB2487292 applies to Windows 7 and it is in the Repo'.
     
  7. tistou77

    tistou77 MDL Expert

    Mar 22, 2008
    1,990
    629
    60
  8. akf

    akf MDL Senior Member

    Aug 17, 2010
    345
    152
    10
    Thanks, SoLoR for the repository update. :)

    Repository updated by SoLoR on 13.3.2011 introduces a new hotfix, KB2510206, which is currently without KB article.

    KB2510206:
    Windows-OS-Kernel, 6.1.7601.17568 / 6.1.7601.21671
    Windows-RtlQueryRegistry-TrustedTypes, 6.1.7600.16695 / 6.1.7600.20912

    It seems that KB2510206 provides newer updates, compared to KB2417038-v2.

    KB2417038-v2:
    Windows-OS-Kernel, 6.1.7601.21649
    Windows-RtlQueryRegistry-TrustedTypes, 6.1.7600.20888

    However, SoLoR did not remove KB2417038 from the repository, indicating that KB2510206 does not superseed KB2417038-v2. My questions:

    1. Is KB2510206 a kernel update, similar to KB2417038-v2? If so, I would certainly install it, since it is important.

    2. Do I have to uninstall KB2417038-v2 before installing KB2510206, to reflect the superseeding relationship?

    Thanks.
     
  9. SoLoR

    SoLoR MDL Expert

    Jul 30, 2008
    1,371
    1,256
    60
    Because they dont superseed eachother. One is LDR branch update other is GRD branch update, if GDR update is newer then LDR update you still need LDR update to bump GDR update in to LDR branch.
     
  10. ricktendo64

    ricktendo64 MDL Expert

    Apr 20, 2008
    1,396
    2,025
    60
    SoLoR you think you can introduce a new category in your legend for the superseded LDR hf's?

    Maybe a strike thru or a asterisk* next to the kb article for those of us that use the cmd installer by burfadel to force install LDR files (I also use a modded version of the installer to force integrate the LDR files)
     
  11. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,626
    3,856
    90
    Thats correct, the update kb2417038-v2 isn't needed with the Installer. It doesn't matter if you have both updates installed using the installer, it just means you have several unnecessary files and folders installed if you do .

    If the above suggestion is put into place, I'll edit my uninstall script so both scenario's can be covered.
     
  12. SoLoR

    SoLoR MDL Expert

    Jul 30, 2008
    1,371
    1,256
    60
    Hm... need to check that installer one day... because i was also thinking of forcing LDR only updates with update-bf.mum, however im not sure if this is possible if you integrate hotfixes with dism in to install dvd and if this part is not possible then its crap.
     
  13. tistou77

    tistou77 MDL Expert

    Mar 22, 2008
    1,990
    629
    60
    if we integrate the drivers of ISO is to integrate the 2 Updates (KB2417038-v2 and KB2510206)?

    or just KB2510206?

    thanks ;)
     
  14. ricktendo64

    ricktendo64 MDL Expert

    Apr 20, 2008
    1,396
    2,025
    60
    #1258 ricktendo64, Mar 14, 2011
    Last edited by a moderator: Apr 20, 2017
    To mod the installer to "integrate" ldr updates all you have to edit is the following (4 instances)

    Code:
    %z%pkgmgr.exe /norestart /ip /m:%temp%\cabtemp\qfeldr\update-bf.mum
    %z%pkgmgr.exe /norestart /ip /m:%temp%\cabtemp\qfeldr\update.mum
    
    to
    
    %z%dism /image:<your_path_to_offline_folder> /add-package /packagepath:%temp%\cabtemp\qfeldr\update-bf.mum /packagepath:%temp%\cabtemp\qfeldr\update.mum
    And

    Code:
    %z%pkgmgr.exe /norestart /ip /m:%temp%\cabtemp\qfeldr\update.mum
    
    to
    
    %z%dism /image:<your_path_to_offline_folder> /add-package /packagepath:%temp%\cabtemp\qfeldr\update.mum
    Then all you need to do is mount your image and run the cmd, it will extract and force integrate the LDR files into <your_path_to_offline_folder>

    @burfadel, would be nice if we could enter a custom path to our offline image...also if the cmd could detect if we have AIK or OPK installed and use those files instead of the system32 files (expand, pkgmgr, dism, etc.)

    Code:
    "%programfiles%\windows aik\tools\%PROCESSOR_ARCHITECTURE%\servicing\"
    "%programfiles%\windows opk\tools\%PROCESSOR_ARCHITECTURE%\servicing\"
    TIA
     
  15. JakeLD

    JakeLD MDL Novice

    Feb 22, 2011
    49
    79
    0
    **Internet Explorer 9 is out**

    Since I can't post links yet, well just google it :)
     
  16. ricktendo64

    ricktendo64 MDL Expert

    Apr 20, 2008
    1,396
    2,025
    60