mui language pack in windows 7 aio image

Discussion in 'Windows 7' started by jezuswashere, Oct 20, 2010.

  1. jezuswashere

    jezuswashere MDL Novice

    Nov 3, 2009
    11
    0
    0
    hey guys,
    i've read the guide for slipstreaming a language pack in windows 7,
    but i've been thinking about slipstreaming mui in windows 7 aio image.
    i've downloaded a aio for all 33 editions(all x86 & x64 editions even for the n & editions) but is there a way of intergrating the dutch language into them?
     
  2. Alphawaves

    Alphawaves Super Moderator/Developer
    Staff Member

    Aug 11, 2008
    6,222
    22,280
    210
  3. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    There's several guides and other apps on msfn to integrate stuff to windows 7:)...
     
  4. jezuswashere

    jezuswashere MDL Novice

    Nov 3, 2009
    11
    0
    0
    i'm sorry to say the link is dead :S
     
  5. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    #5 tcntad, Oct 21, 2010
    Last edited by a moderator: Apr 20, 2017
    Then use searchfunction on this forum.
    There's atleast one excellet guide on how to integrate language packs..

    Edit: Some help maybe

    Code:
    "%WAIK%\Tools\%arch%\Servicing\DISM.exe" /Mount-Wim /WimFile:"%Work%\DVD\Sources\Install.wim" /Index:%index% /MountDir:"%Work%\Mount"
    "%WAIK%\Tools\%arch%\Servicing\DISM.exe" /Image:"%Work%\Mount" /Add-Package /Packagepath:"%Work%\LP\%lp%.cab"
    "%WAIK%\Tools\%arch%\Servicing\DISM.exe" /Image:"%Work%\Mount" /Gen-LangINI /Distribution:"%Work%\DVD"
    "%WAIK%\Tools\%arch%\Servicing\DISM.exe" /UnMount-Wim /MountDir:"%Work%\Mount" /Commit
    
    %WAIK%: Change to real path to Windows AIK (Default: C:\Program Files\Windows AIK)
    %arch%: Change to either x86 or amd64, depending on your OS architecture
    %WORK%: If you like me placed everything in one folder, change to d:\work or whatever
    %index%: 1-5 for 32Bit, 1-4 for 64Bit, 1-9 Windows AIO (without Enterprise)
    %lp%: Change to filename for your language pack you want to integrate

    Example
    Code:
    "C:\Program files\Windows AIK\Tools\amd64\Servicing\DISM.exe" /Mount-Wim /WimFile:"D:\Work\DVD\Sources\Install.wim" /Index:7 /MountDir:"D:\Work\Mount"
    "C:\Program files\Windows AIK\Tools\amd64\Servicing\DISM.exe" /Image:"D:\Work\Mount" /Add-Package /Packagepath:"D:\Work\LP\englishx64.cab"
    "C:\Program files\Windows AIK\Tools\amd64\Servicing\DISM.exe" /Image:"D:\Work\Mount" /Gen-LangINI /Distribution:"D:\Work\DVD"
    "C:\Program files\Windows AIK\Tools\amd64\Servicing\DISM.exe" /UnMount-Wim /MountDir:"D:\Work\Mount" /Commit
    
    The " " is beacuse i took this from my script i have to integrate "alot of stuff" to windows. Im pretty sure it should be used if any of your paths contains any spaces..

    Now you figure the rest out...
     
  6. jezuswashere

    jezuswashere MDL Novice

    Nov 3, 2009
    11
    0
    0
    yep, i should've used the search function but thanks anyway,
    i just wanted to know sure.
     
  7. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    NP..

    Creating a batchfile could probably ease it up and do it faster then a software..
     
  8. Alphawaves

    Alphawaves Super Moderator/Developer
    Staff Member

    Aug 11, 2008
    6,222
    22,280
    210
    Sorry about that link is back up.
    Alfa:);)
     
  9. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    Script looks cool:p Maybe ill take a look at it.