Windows 7 Hotfix repository

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

  1. ljprg

    ljprg MDL Member

    Dec 27, 2008
    204
    35
    10
    Fantastic job McRip! :worthy:

    When you will update the 7z files?
     
  2. RickSteele

    RickSteele MDL Addicted

    Nov 12, 2009
    833
    483
    30
    Which SuCkS BIG TIME :sofa:
     
  3. Trinket

    Trinket MDL Senior Member

    Feb 20, 2010
    485
    169
    10
    Hehe, you don't need to hide, you can just sit openly on that couch with a megaphone and shout it, I don't think there are many people who would disagree :cheers:
     
  4. McRip

    McRip MDL Addicted

    Aug 15, 2011
    935
    3,418
    30
    The repo will get a new folder structure in the next few days.
    The x86 and x64 folders will then have the main updates for Windows 7. The rest of the folders will be outside the x86 and x64 folders in a special folder "Additonal".
    I decided this to have a better compatibility for WindowsToolkit. McRip Repo is just being integrated.

    So do not worry about not finding anything on the spot.

    You will be informed when everything has been finished.

    Cheers
     
  5. pegasus80

    pegasus80 MDL Senior Member

    Nov 23, 2009
    259
    538
    10
    That will be awesome! Thanks
     
  6. compstuff

    compstuff MDL Senior Member

    Jan 16, 2011
    437
    312
    10
    KB2666914 Integration Error?

    I tried 2x to use the WinToolKit to integrate KB2666914 and it seems to fail... does it need to be added to an online image?
     
  7. komm

    komm MDL Addicted

    Jun 16, 2011
    894
    3,069
    30
    I had no problem adding DirectAccess Connectivity Assistant 2.0 RC to a DVD image using KUC.
    English LP installed?
     
  8. compstuff

    compstuff MDL Senior Member

    Jan 16, 2011
    437
    312
    10
    I'ts strange because I thought I added this before with no problems but I have done so may tests over the last few weeks that I may have been mistaken... I am running some tests now

     
  9. joflomo

    joflomo MDL Novice

    Dec 2, 2011
    33
    25
    0
    Just do the update process for each image inside the wim.
    KUC will download all needed updates for you for each image, so no manual searching/download is needed.
    You use KUC on the computer where you maintain your wims.
     
  10. compstuff

    compstuff MDL Senior Member

    Jan 16, 2011
    437
    312
    10
    The ToolKit had an update/fix and it's now fine

     
  11. Shoonay

    Shoonay MDL Member

    Jan 28, 2010
    126
    136
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. its

    its MDL Junior Member

    Sep 13, 2007
    86
    0
    0
    How do I do this for my AIO 32/64bit DVD??

    How do I run KUC for the image and download all updates?? (and not for my computer)
     
  13. its

    its MDL Junior Member

    Sep 13, 2007
    86
    0
    0
    #5398 its, Jun 8, 2012
    Last edited by a moderator: Apr 20, 2017
  14. komm

    komm MDL Addicted

    Jun 16, 2011
    894
    3,069
    30
    1. open cmd prompt
    2. run
    set %sourcefile%=d:\Win7DVD\sources\install.wim
    where d:\Win7DVD\sources\install.wim points to your install.wim
    if you place the dvd in c:\w7\
    type
    set %sourcefile%=c:\W7\sources\install.wim

    3.make an empty folder type
    md c:\offline

    4. type
    set tmpdir=c:\offline

    5. for the first image run
    dism /mount-wim /wimfile:%sourcefile% /index:1 /mountdir:%tmpdir%


    Note: you must set the sourcefile and tmpdir before you run the dism command.

    else run
    dism /mount-wim /wimfile:c:\W7\sources\install.wim /index:1 /mountdir:c:\offline

    then use KUC
     
  15. its

    its MDL Junior Member

    Sep 13, 2007
    86
    0
    0
    #5400 its, Jun 8, 2012
    Last edited by a moderator: Apr 20, 2017
    Ok.. I saw error.. it didnot like my %% variables.. hardcoded it and it worked fine..

    Now it is running updates for index:1

    So is this what I do in essence

    Code:
    
    dism /mount-wim /wimfile:%sourcefile% /index:%1 /mountdir:%tmpdir%
    KUC /DVD-image-dir:c:\offline /up-dir:c:\wu /repo-dir:c:\wu\repo
    run KUC with defaults (i selected IE9)
    Remove_old.cmd
    Copy_Files_2_add.cmd
    Update.cmd
    dism /unmount-wim /mountdir:%tmpdir% /commit
    
    
    and rerun this again and again for index : 1 - 11 (x86 and x64 all versions)... it will overwrite the %sourcefile% directory.. I guess that is allright???

    I will run to identify index

    Code:
    
    dism /get-wiminfo /wimfile:%sourcefile%
    
    
    Will this recreate the DVD image each time and finally after 11.. I will have all versions up to date??

    OR will then run

    Code:
    imagex /export /check /compress fast d:\Win7DVD\sources\install.wim * d:\Win7DVD\sources\newinstall.wim
    
    delete d:\Win7DVD\sources\install.wim
    
    rename d:\Win7DVD\sources\newinstall.wim d:\Win7DVD\sources\install.wim
    
    Do I run the above command each time .. or after 11th run ??

    Thanks