HowTo : create a multi language Windows 7 DVD installer

Discussion in 'Windows 7' started by ttmax, Nov 4, 2009.

  1. Kouryu

    Kouryu MDL Senior Member

    Jan 19, 2011
    423
    132
    10
    because all you get from the supplement is the PETools directory, NOTHING else.... no SDKs, no docs, no imagex, oscdimg, NOTHING
    no installer either
     
  2. Rab

    Rab MDL Member

    May 18, 2009
    155
    19
    10
     
  3. luky

    luky MDL Addicted

    Dec 21, 2008
    729
    33
    30
     
  4. ttmax

    ttmax MDL Member

    Oct 27, 2009
    168
    44
    10
    @Rab
    @Luky


    :confused: Link is working from Kouryu post and from mine in first post . What are you talking about ?
     
  5. Kouryu

    Kouryu MDL Senior Member

    Jan 19, 2011
    423
    132
    10
    I checked an hour ago and it was broken... checked again just now and it works, wtf?

    I think it'll be safer to link to the softpedia download too, just in case!
     
  6. bdjfreestyle

    bdjfreestyle MDL Member

    Nov 24, 2009
    127
    10
    10
    thank you very much
     
  7. gas30

    gas30 MDL Novice

    Apr 18, 2010
    6
    1
    0
    Thanks, exactly what i was looking for.:)
     
  8. Guilouz

    Guilouz MDL Novice

    Aug 15, 2009
    1
    0
    0
    #128 Guilouz, Mar 1, 2011
    Last edited: Mar 1, 2011
    Hi guys!

    I don't found this offset with WinHex to allow the choice during install of creating or not the 100Mb boot partition:

    Update 01/2011 (SP1) :
    ----------------------
    SP1 Rtm :
    x86 version : offset 0x77AF3h: replace 74 with EB
    x64 version : offset 0x84A58h: replace 74 with EB


    When I'm searching following text string "74" (Unicode), I found 7 results at offset:

    - 10F32
    - 59C2E
    - 59EF2
    - 59F62
    - 59FD6
    - 5A942
    - 5A964


    EDIT: It's OK with HxD.

    But this modification don't allow the choice during install of creating or not the 100Mb boot partition, it just not create the 100Mb boot partition, no choice...
     
  9. ttmax

    ttmax MDL Member

    Oct 27, 2009
    168
    44
    10
    Please don't be so affirmative when you don't really know.

    It does allow .. Just highlight the desired install disk/partition and click "Next" without going through "Drive options (advanced)".
     
  10. kemal01

    kemal01 MDL Novice

    Nov 4, 2010
    1
    0
    0
    Thank you

    Howto create Multilang 3in1 ( English,French,Turkish )
    For 'C:\' Code .bat MS-DOS.

    Please.
     
  11. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    Add add p/package path another two times with the path to the language packs.
     
  12. rubertu_22

    rubertu_22 MDL Novice

    Jan 31, 2012
    1
    0
    0
    Hello, I've unable to do the 2nd half of part 2.

    "2/ localize BOOT windows installer on DVD: (The goal is to give multiple choices of dialog language during Windows 7/2008r2 BOOT installation)"

    The index 1 of boot.wim goes fine, all languages added without any problem, but when I ran to mount index 2 everytime i get:

    "D:\temp86>Dism /Mount-Wim /WimFile:boot.wim /index:2 /MountDir:D:\install

    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385

    Error: 0xc1420127

    The specified image in the specified wim is already mounted for read/write access.

    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log"

    Already ran "dism /cleanup-wim" just in case, started over on the boot.wim with fresh file from dvd, but can't do index2, windows 7 sp1.

    Thanks
    Roberto



     
  13. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,488
    1,506
    150
    Correct paths?
    Reboot your computer and delete the mountfolder, try again creating a new.
     
  14. Emrulez

    Emrulez MDL Novice

    Nov 6, 2012
    20
    0
    0
    I want to create an Windows 7 ISO with all versions plus 3 Languages(English, Dutch and Turkish) What is the best methode/tool batch etc?

    Thanks in advance
     
  15. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,681
    18,589
    340
  16. tjxd96

    tjxd96 MDL Novice

    Aug 2, 2013
    4
    0
    0
    #136 tjxd96, Aug 5, 2013
    Last edited: Aug 6, 2013
    Guys
    I dont now if i am the only one but i cant find the iso with local packs(SP1,x86 and x64) and language packs(SP1,x86).
    Anyone can help me?

    (sorry for my bad english and thanks)

    #Edit
    I founded the language pack(x86) but is in a really slow download speed and i dont really know if is the right pack : (
     
  17. john1230

    john1230 MDL Novice

    Jun 5, 2010
    31
    1
    0
    On the pirate bay there's SP1 language packs for x64 and x86, it's named "MICROSOFT WINDOWS 7 LANGUAGE PACK 1 SP1 X86" "MICROSOFT WINDOWS 7 LANGUAGE PACK 1 SP1 X64" pack 2 contains Chinese MUI so you may or may not need it.

    Search using "windows 7 language pack sp1" and it'll show up, these are very fast torrents.

    I found a script from hass.de that automates the "install.wim" part of this "how to" but had to modifiy it because I couldn't get it to run. the script:

    @ECHO OFF
    REM Build a single WMI file with all available languages for multilanguage Deployment

    SET LANGPACKS=c:\MUI\langpacks
    SET MOUNTDIR=C:\mnt
    SET SCRATCHDIR=C:\Scratch
    SET WIM=C:\temp\install.wim

    dism /Mount-WIM /WimFile:"%WIM%" /index:1 /MountDir:"%MOUNTDIR%"

    FOR /F " usebackq" %%i IN (`dir /b "%LANGPACKS%"`) DO (
    dism /Image:"%MOUNTDIR%" /ScratchDir:"%SCRATCHDIR%" /Add-Package /PackagePath:"%LANGPACKS%\%%i\lp.cab"
    dism /Image:"%MOUNTDIR%" /get-Intl
    )

    dism /Unmount-WIM /MountDir:"%MOUNTDIR%" /Commit

    ------------------------------------------------------------------

    Just set your own path in the:

    SET LANGPACKS=c:\MUI\langpacks
    SET MOUNTDIR=C:\mnt
    SET SCRATCHDIR=C:\Scratch
    SET WIM=C:\temp\install.wim

    part of the script and make the folder (mnt folder, Scratch folder) in the root of c:

    Name this 1.bat

    Then make another script but change from index:1 to index:2.

    E.G.
    dism /Mount-WIM /WimFile:"%WIM%" /index:1 /MountDir:"%MOUNTDIR%"

    Change to:

    dism /Mount-WIM /WimFile:"%WIM%" /index:2 /MountDir:"%MOUNTDIR%"

    Save the new index:2 script as 2.bat, repeat untill you get to 5.bat. You need 5.bat script for x86 and 4.bat for x64.
    Put the all 5 scripts in to where "install.wim" is and run it by typing it's name (1.bat, 2.bat, 3.bat) etc....

    Hope this helps
     
  18. tjxd96

    tjxd96 MDL Novice

    Aug 2, 2013
    4
    0
    0
    Thank you for repling.

    I download the language packs and the local packs in a slow download speed because i couldnt found any good link working.
    I have downloaded local packs from thepiratebay(in the name of the iso has something of wzor, if anyone is trying to search) and language packs i dont remember in what site i get it...

    I know something of programing so i am already making a batch file that execute all(couldnt use the one from the topic because it uses dtlite with command line and i download dtlite e the commands was not working, so a decide to do my own batch file) i intend to post the batch here when a think it is really done(it is tooking some hours by day because i have to search a little bit and test everything and i think i have a slow HD so testing is really slow)...

    (Again sorry for my really bad english ;) )
     
  19. john1230

    john1230 MDL Novice

    Jun 5, 2010
    31
    1
    0
    I hope you get it working for you. And you could give the program Tito pointed to a in post #137 (2 post above mine) a try, It's a GUI program, so it may be easier on your typing fingers:biggrin:
     
  20. tjxd96

    tjxd96 MDL Novice

    Aug 2, 2013
    4
    0
    0
    I tried to use that software but i think was my mistake, i cant my that work, so a decided to make mine, lol.

    Anyway i already made a guide and finally post it in windows 7 sessions so anyone that pass in some situation like mine can try to use that...

    Thank you for your helping.