Windows 7 Professional Integrate Updates

Discussion in 'Windows 7' started by ycodryn, Mar 31, 2010.

  1. ycodryn

    ycodryn MDL Novice

    Dec 1, 2009
    17
    4
    0
    #1 ycodryn, Mar 31, 2010
    Last edited: Mar 31, 2010
  2. hclarkjr

    hclarkjr MDL Member

    Nov 18, 2007
    148
    44
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    Yea and good apps:)

    I recommend 7Customizer if you dont want to do it manually.
     
  4. ycodryn

    ycodryn MDL Novice

    Dec 1, 2009
    17
    4
    0
    #5 ycodryn, Mar 31, 2010
    Last edited: Mar 31, 2010
    (OP)
    WinIntegrator 1.0.2.7 is only one that load even the .cab files. I have 7Customizer (add only .msu files) too and I`m testing them right now.
    tcntad said to "Dism /image: mountpoint /add-package /packagepath: update.cab /.msu .. " but I`m used use vlte and I don`t have knowledge with manual commands.
     
  5. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    Its easy. we have a perfect guide on how to do this manually.

    Dism /mount-wim /wimfile: path to .wim /index: 1-5 for x86 and 1-4 amd64 /mountdir: path to mountfolder

    then do the command i first posted and finally this:
    Dism /unmount-wim /mountdir: path to mountfolder /commit (this will save and unmount the install.wim)
     
  6. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    Ohyea, its one helluva app Blue made:)
     
  7. urie

    urie Moderator
    Staff Member

    May 21, 2007
    9,039
    3,388
    300
    Wrong Se7en_UA can integrate msu exe cabs e.c.t
     
  8. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    Does it really integrate and just not make a cmd file that runs the exe's after install?
     
  9. ycodryn

    ycodryn MDL Novice

    Dec 1, 2009
    17
    4
    0
    "rie: Wrong Se7en_UA can integrate msu exe cabs"

    Not really, only .cab/.msu have been injected. .Exe files got an error opening so se7en can`t integrate .exe into install.wim. If se7en adds .exe after install you can`t say the is an integrated features, I can do same s**t after OS install.
     
  10. ycodryn

    ycodryn MDL Novice

    Dec 1, 2009
    17
    4
    0
    After all I followed "tcntad" advice and I have integrated updates with dism because it was the safest way (i got no errors) but I need help with one more step: how can I remove others versions of windows from image using dism? (/Remove-StagedEdition is not working)
     
  11. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    Imagex /delete "index number"

    Or instead you can export to a new install.wim

    Imagex /export "path to old install.wim "index number 1-5" "path to new install.wim"
     
  12. DeadMan

    DeadMan MDL Junior Member

    Aug 11, 2009
    72
    2
    0
    So is there no way to integrate exe's?
     
  13. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    Not really no..

    Unless you first install your mainOS, update it and do small changes, then install win7 to another partitioning and installing waik, and after that capturing your first installation and making a new "Install.wim" of it to replace the old one on your dvd..

    But its not really the same is integrating exe's to an edition.
     
  14. urie

    urie Moderator
    Staff Member

    May 21, 2007
    9,039
    3,388
    300
    no it integrates but some exe's need to be run with cmd.
     
  15. NICK@NUMBER11

    NICK@NUMBER11 MDL Expert

    Mar 23, 2010
    1,503
    720
    60
    simple create folder say called updates copy in all yuour updates including the .exe ones
    create a bat file with the below commands

    IF EXIST "%~dp0*.msu" (FOR /F "tokens=*" %%A IN ('DIR /B "%~dp0*.msu"') DO (start /wait %~dp0%%A /quiet /norestart))
    IF EXIST "%~dp0*.exe" (FOR /F "tokens=*" %%A IN ('DIR /B "%~dp0*.exe"') DO (start /wait %~dp0%%A /quiet /norestart))

    save it as install_updates.cmd and run as administrator

    hope that helps