Do 7264 language packs work in 7600?

Discussion in 'Windows 7' started by LLiran, Jul 16, 2009.

  1. tomorrow

    tomorrow MDL Addicted

    Jul 3, 2008
    722
    263
    30
    #61 tomorrow, Apr 18, 2010
    Last edited by a moderator: Apr 20, 2017
    I have both x64 and x86 RTM 7600 langpacks in .cab format and windows 7 installs them just fine.
    Also easy to integrate with DISM:
    Code:
    dism /Image:"mounted wim path here but without quotemarks" /Add-Package /PackagePath:"languagepack .cab path here but without quotemarks"
     
  2. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,634
    1,654
    150
    #62 tcntad, Apr 18, 2010
    Last edited by a moderator: Apr 20, 2017
    Code:
    dism /mount-wim /wimfile:path to install.wim /index:1-5 /mountdir:path to mountfolder
    dism /image:path to mountfolder /add-package /packagepath:pah to lp.cab
    dism /unmount-wim /mountdir:path to mountfolder /commit
    
    That would be complete commandlist to execute :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. tomorrow

    tomorrow MDL Addicted

    Jul 3, 2008
    722
    263
    30
    #63 tomorrow, Apr 18, 2010
    Last edited by a moderator: Apr 20, 2017
    Indeed it is :)