Howto integrate Updates

Discussion in 'Windows 7' started by btf-tribal, Oct 17, 2009.

  1. btf-tribal

    btf-tribal MDL Junior Member

    Jul 9, 2009
    70
    12
    0
    is there any solution out howto integrate updates into a win7 dvd?
    vlite could integrate *msu and *.cab files but what could i do with *.exe hotfixe?
    *.exe hotfixe like silverlight and ie8 updates?
     
  2. SoLoR

    SoLoR MDL Expert

    Jul 30, 2008
    1,370
    1,256
    60
    you dont even need waik, dism is part of windows.

    dism /Mount-Wim /WimFile:<path to install.wim> /Index:<index nr> /MountDir:<mount dir>

    to mount image to certain dir


    dism /Image:<mount dir> /Add-Package /PackagePath:<path to dir with updates>

    to install all *.msu and *.cab updates from PackagePath folder


    dism /Unmount-Wim /MountDir:<mount dir> /commit

    to save&unmount image.
     
  3. btf-tribal

    btf-tribal MDL Junior Member

    Jul 9, 2009
    70
    12
    0
    but the problem is howto intgrate hotfixe for ie8.
    these updates come as exe files.
     
  4. HSChronic

    HSChronic MDL Expert

    Aug 25, 2007
    1,214
    64
    60
    extract the files out of the exe using something like WinRAR, most of the MS exe patches can be extracted using WinRAR.
     
  5. SoLoR

    SoLoR MDL Expert

    Jul 30, 2008
    1,370
    1,256
    60
    hm? no they dont... only offical .exe update im having is KB954430 (there are few more, like windowsupdateagent etc but not yet "totaly" offical). Sadly you cant install .exe with dism, easyest way is to install them from automaticaly from SetupCompleate.cmd after main instalation is finished with i think its /silent switch.
     
  6. Sabresite

    Sabresite MDL Member

    Nov 7, 2007
    210
    49
    10
    You can use SetupComplete.cmd, or you can do a reverse integration like Vista SP1. To do that, install Windows 7, all of the files/updates, EVERYTHING. Then reseal it (Using sysprep /generalize I think it is), and use imagex to create a brand new WIM from your whole partition.
     
  7. btf-tribal

    btf-tribal MDL Junior Member

    Jul 9, 2009
    70
    12
    0
    thanks for your fast answers.
    SetupComplete.cmd is the way i was thinking about.