HowTo : create a multi language Windows 7 DVD installer

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

  1. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,480
    1,500
    150
    #41 tcntad, Oct 12, 2010
    Last edited by a moderator: Apr 20, 2017
    except that you try to integrate 64bit AND! 32bit to the same index (index 1) which you cant do:)
    winre.wim part seems right and processing install.wim seems fine too.


    Make one batch file for processing winre.wim, one for boot.wim and one for server 2008, one for server 2008 r2 and run them. Something is wrong so we need to find out what it is.

    Where do you get that error? during processing install.wim etc?
     
  2. Slaktarn

    Slaktarn MDL Novice

    Jul 23, 2010
    34
    3
    0
    Sorry i dident pay attension, my fult i see where the error is but the other versions shuld work anyways. But i found a gui that fix it for me,

    Hoever i still don´t like the way ppl slove this cuz what i understand its add the MUI in to every index of the windows versions.

    But if you check on a MUI that is orginal or some other did that you download from random places the LPs are added in the CD/DVD and not added to the install image and on that way you shuld save alot of space?

    Or am i totaly wrong

    Hoever this is not a problem ether cuz im using a DVD9 and got a few MiB over when all is done but shuld still be a way to save alot of space

    / Slaktarn
     
  3. Elite2k

    Elite2k MDL Junior Member

    Jul 29, 2009
    67
    13
    0
    thanks for this need this badly.. made my own today
     
  4. Slaktarn

    Slaktarn MDL Novice

    Jul 23, 2010
    34
    3
    0
    #44 Slaktarn, Oct 14, 2010
    Last edited by a moderator: Apr 20, 2017
    I have copy x86 MUI and it worked fine, know i try whit x64 of some reason after all is done for eatch index i get

    Code:
    "The filename,directory name, or volume label syntax is incorrect"
    
    Im not sure if i can ignore this or if its something wrong, I also get another error on all builds

    Code:
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    This is the batchfile conf for my x64 build, need to fix the "The filename,directory name, or volume label syntax is incorrect" dosent sounds good

    Code:
    @echo Off
    
    Echo Witch language do you want to add?
    
    Rem Enter OPK/WAIK installation directory
    set WAIK=C:\Program Files\Windows AIK
    
    rem processor architecur
    set cpu=amd64
    
    rem Mount Point
    set mnt=D:\build\tmp
    
    rem Work Dir
    set WD=D:\build\dvd
    
    rem Language Pack Path
    set Muidir=D:\build\langpacks
    
    rem WindowsRe temporary path
    set winre=D:\build\winre
    
    rem WinPE_LangPacks Path
    set REmui=D:\build\winpe\x64
    
    rem ISO
    Set iso=D:\build\iso
    
    rem ISOName
    Set isoname=Windows_2008
    
    rem Echo Language to add
    set /p mui=
    
    echo unlock windows installer
    del "%wd%\sources\ei.cfg"
    
    echo processing Windows Recovery
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:1 /MountDir:"%mnt%"
    copy "%mnt%\windows\system32\recovery\winre.wim" "%winre%\"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /Discard
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%winre%\winre.wim" /index:1 /MountDir:"%mnt%"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%waik%\Tools\PETools\%cpu%\WinPE_FPs\winpe-fontsupport-ja-jp.cab"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%waik%\Tools\PETools\%cpu%\WinPE_FPs\winpe-fontsupport-ko-kr.cab"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%waik%\Tools\PETools\%cpu%\WinPE_FPs\winpe-fontsupport-zh-cn.cab"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%waik%\Tools\PETools\%cpu%\WinPE_FPs\winpe-fontsupport-zh-hk.cab"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%waik%\Tools\PETools\%cpu%\WinPE_FPs\winpe-fontsupport-zh-tw.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\lp.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-setup_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-setup-client_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-scripting_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-srt_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-wds-tools_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-wmi_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /Gen-LangINI /distribution:"%mnt%"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    REM not available on X64, uncomment for X32
    REM echo processing Windows Server 2008 Standard (Full Installation) / x64 / Index 9/39
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:9 /MountDir:"%mnt%"
    REM copy "%winre%" "%mnt%\Windows\System32\Recovery"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:%mnt% /gen-langini /distribution:%wd%
    REM Dism /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo Processing Windows Server 2008 Standard (Server Core Installation) / x64 / Index 10/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:10 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo processing Windows Server 2008 Enterprise (Full Installation) / x64 / Index 11/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:11 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo Processing Windows Server 2008 Enterprise (Server Core Installation) / x64 / Index 12/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:12 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo processing Windows Server 2008 Datacenter (Full Installation) / x64 / Index 13/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:13 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo Processing Windows Server 2008 Datacenter (Server Core Installation) / x64 / Index 14/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:14 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo processing Windows Server 2008 Web (Full Installation) / x64 / Index 15/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:15 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo Processing Windows Server 2008 Web (Server Core Installation) / x64 / Index 16/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:16 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo processing Windows Server 2008 Standard whitout Hyper-V (Full Installation) / x64 / Index 17/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:17 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo Processing Windows Server 2008 Standard whitout Hyper-V (Server Core Installation) / x64 / Index 18/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:18 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo processing Windows Server 2008 Enerprise whitout Hyper-V (Full Installation) / x64 / Index 19/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:19 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo Processing Windows Server 2008 Enterprise whitout Hyper-V (Server Core Installation) / x64 / Index 20/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:20 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo processing Windows Server 2008 Datacenter whitout Hyper-V (Full Installation) / x64 / Index 21/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:21 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo Processing Windows Server 2008 Datacenter whitout Hyper-V (Server Core Installation) / x64 / Index 22/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:22 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo Processing Windows HPC Server 2008 (Full Installation) / x64 / Index 38/39
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\install.wim" /index:38 /MountDir:"%mnt%"
    copy "%winre%" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\%mui%\lp-x64.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo Processing Windows Setup
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\boot.wim" /index:1 /MountDir:"%mnt%"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\lp.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-scripting_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-srt_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-wds-tools_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-wmi_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /Gen-LangINI /distribution:"%mnt%"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:"%WD%\Sources\boot.wim" /index:2 /MountDir:"%mnt%"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%waik%\Tools\PETools\%cpu%\WinPE_FPs\winpe-fontsupport-ja-jp.cab"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%waik%\Tools\PETools\%cpu%\WinPE_FPs\winpe-fontsupport-ko-kr.cab"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%waik%\Tools\PETools\%cpu%\WinPE_FPs\winpe-fontsupport-zh-cn.cab"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%waik%\Tools\PETools\%cpu%\WinPE_FPs\winpe-fontsupport-zh-hk.cab"
    REM "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%waik%\Tools\PETools\%cpu%\WinPE_FPs\winpe-fontsupport-zh-tw.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\lp.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-setup_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-setup-client_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-scripting_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-srt_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-wds-tools_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%remui%\%mui%\winpe-wmi_%mui%.cab"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /Gen-LangINI /distribution:"%mnt%"
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:"%mnt%" /commit
    
    echo Create ISO image
    echo Type in path to save DvD, leave blank to cancel
    
    echo Done
    pause
    
    When im done whit all builds i will post all my batch files and logs

    /Slaktarn
     
  5. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,480
    1,500
    150
    #45 tcntad, Oct 14, 2010
    Last edited by a moderator: Apr 20, 2017
    I get that problem as well sometimes.. check your dism.log and/or post some of it here.
     
  6. Slaktarn

    Slaktarn MDL Novice

    Jul 23, 2010
    34
    3
    0
    #46 Slaktarn, Oct 14, 2010
    Last edited by a moderator: Apr 20, 2017
    Here is the output that are saved

    Code:
    pastebin.com/4b0VS7dc
     
  7. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,480
    1,500
    150
    Where do you get that error?
    When processing boot.wim, install.wim or winre.wim?

    Also delete the dism log so as soon as you get an error again open it and read and/or post it here again.
     
  8. Slaktarn

    Slaktarn MDL Novice

    Jul 23, 2010
    34
    3
    0
    #48 Slaktarn, Oct 14, 2010
    Last edited by a moderator: Apr 20, 2017
    This is the build log from x64

    Code:
    Witch language do you want to add?
    sv-se
    unlock windows installer
    Det går inte att hitta D:\build\dvd\sources\ei.cfg.
    processing Windows Recovery
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
            1 fil(er) kopierad(e).
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 1
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image Version: 6.1.7600.16385
    
    Processing 1 of 1 - Adding package Microsoft-Windows-WinPE-LanguagePack-Package~
    31bf3856ad364e35~amd64~sv-SE~6.1.7600.16385
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image Version: 6.1.7600.16385
    
    Bearbetar 1 av 1 - Paketet WinPE-Setup-Package~31bf3856ad364e35~amd64~sv-SE~6.1.
    7600.16385 läggs till
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image Version: 6.1.7600.16385
    
    Bearbetar 1 av 1 - Paketet WinPE-Setup-Client-Package~31bf3856ad364e35~amd64~sv-
    SE~6.1.7600.16385 läggs till
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image Version: 6.1.7600.16385
    
    Bearbetar 1 av 1 - Paketet WinPE-Scripting-Package~31bf3856ad364e35~amd64~sv-SE~
    6.1.7600.16385 läggs till
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image Version: 6.1.7600.16385
    
    Bearbetar 1 av 1 - Paketet WinPE-SRT-Package~31bf3856ad364e35~amd64~sv-SE~6.1.76
    00.16385 läggs till
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image Version: 6.1.7600.16385
    
    Bearbetar 1 av 1 - Paketet WinPE-WDS-Tools-Package~31bf3856ad364e35~amd64~sv-SE~
    6.1.7600.16385 läggs till
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image Version: 6.1.7600.16385
    
    Bearbetar 1 av 1 - Paketet WinPE-WMI-Package~31bf3856ad364e35~amd64~sv-SE~6.1.76
    00.16385 läggs till
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image Version: 6.1.7600.16385
    
    
    En ny INI-språkfil har skapats
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\winre\winre.wim
    Image Index : 1
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Processing Windows Server 2008 Standard (Server Core Installation) / x64 / Index 10/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 10
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    processing Windows Server 2008 Enterprise (Full Installation) / x64 / Index 11/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 11
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Processing Windows Server 2008 Enterprise (Server Core Installation) / x64 / Index 12/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 12
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    processing Windows Server 2008 Datacenter (Full Installation) / x64 / Index 13/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 13
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Processing Windows Server 2008 Datacenter (Server Core Installation) / x64 / Index 14/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 14
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    processing Windows Server 2008 Web (Full Installation) / x64 / Index 15/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 15
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Processing Windows Server 2008 Web (Server Core Installation) / x64 / Index 16/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 16
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    processing Windows Server 2008 Standard whitout Hyper-V (Full Installation) / x64 / Index 17/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 17
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Processing Windows Server 2008 Standard whitout Hyper-V (Server Core Installation) / x64 / Index 18/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 18
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    processing Windows Server 2008 Enerprise whitout Hyper-V (Full Installation) / x64 / Index 19/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 19
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Processing Windows Server 2008 Enterprise whitout Hyper-V (Server Core Installation) / x64 / Index 20/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 20
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    processing Windows Server 2008 Datacenter whitout Hyper-V (Full Installation) / x64 / Index 21/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 21
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Processing Windows Server 2008 Datacenter whitout Hyper-V (Server Core Installation) / x64 / Index 22/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 22
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Processing Windows HPC Server 2008 (Full Installation) / x64 / Index 38/39
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    D:\build\winre\winRE.wim
            1 fil(er) kopierad(e).
    The filename, directory name or volume label syntax is incorrect
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\install.wim
    Image Index : 38
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Processing Windows Setup
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\boot.wim
    Image Index : 1
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    
    Error: 50
    
    DISM does not support servicing a Windows Vista RTM or earlier operating system.
    
    If the operating system is supported check that SSShim.DLL is present.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image File : D:\build\dvd\Sources\boot.wim
    Image Index : 2
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Create ISO image
    Type in path to save DvD, leave blank to cancel
    Done
    Press any key to continue...
    
     
  9. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,480
    1,500
    150
    well is all the language packs in one folder you could use set mui=..... (replace .. with actual folder name of course).
    Also check filename.
     
  10. Slaktarn

    Slaktarn MDL Novice

    Jul 23, 2010
    34
    3
    0
    #50 Slaktarn, Oct 14, 2010
    Last edited by a moderator: Apr 20, 2017
    I don´t understand how you mean? Can you give me an exampel how it wuld look for

    Code:
    mui=r2
    mui=x64
    mui=x86
    
    If you mean

    Code:
    rem Echo Language to add
    set /p mui=
    
    I do set it when i start the batch file i do "sv-se" and press enter and the folder is set


    I do also have another question for you, How do you do to get the setup in diffrent language cuz its still in english when i added the x86 version shuld that not be in SE or EN when i added both language to the WIM file?
     
  11. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,480
    1,500
    150
    #51 tcntad, Oct 14, 2010
    Last edited by a moderator: Apr 20, 2017
    Exactly, i was thinking if all the language packs would be in the same folder you can set mui instead of writing mui yourself..

    Code:
    rem Echo Language to add
    set /p mui=
    
    to 
    
    rem Echo Language to add
    set mui=lp (for example)
    
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:"%mnt%" /add-package /packagepath:"%muidir%\lp\lp-x64.cab"
    
    Are you only using server 2008?
    Place all language packs in one folder and do something like this..
    Im not quiet sure what the problem is beacuse i dont know enough, such as where it fails, if its during install.wim, where you have placed all folders etc etc

    echo Processing Windows Server 2008 blablabla

    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Mount-Wim /WimFile:D:\Build\DVD\Sources\install.wim" /index:1 /MountDir:D:\Build\mount
    copy "d:\build\winre\winre.wim" "%mnt%\Windows\System32\Recovery"
    R%WAIK%\Tools\%cpu%\Servicing\dism.exe" /image:D:\build\mount /add-package /packagepath:D:\build\LP\lp-x64.cab
    "%WAIK%\Tools\%cpu%\Servicing\dism.exe" /Unmount-Wim /MountDir:D:\build\mount /commit
     
  12. Slaktarn

    Slaktarn MDL Novice

    Jul 23, 2010
    34
    3
    0
    I try a third way and see if it works

    I let you know :)

    Haha ser nu varför pratar vi inte svenska för haha

    :D
     
  13. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,480
    1,500
    150
    För att det är ett engelskt forum och huvudspråket är engelska;)
    beacuse its an english forum and mainlanguage is english;).

    Pröva ett tredje sätt om du vill.. Det vore enklare om du skapade en batfil för varje *.wim du vill modifiera, en för winre, en för install och en för boot.wim så blir det lättre att utesluta vart felet ligger. Verkar som att det är install.wim och sökvägar till filer som inte stämmer helt.

    Try a third way if you want, It would be easier if you created a batchfile for each *.wim you want to modify, one for winre, one for install and one for boot.wim so it gets easier to rule out where the error is. Seems like its install.wim and paths to files that arent correct.
     
  14. Slaktarn

    Slaktarn MDL Novice

    Jul 23, 2010
    34
    3
    0
    I have dicide to f**k on this s**t for now im so tierd have try for 1 week know i just include the MUIs in the DVD and install them manualy when the system is installed it isent that hard

    / Slaktarn
     
  15. FreeStyler

    FreeStyler MDL Guru

    Jun 23, 2007
    3,557
    3,832
    120
    haha...you give up? pussy! ;)
     
  16. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,480
    1,500
    150
    Kolla alla sökvägar och se till så att filerna är för rätt arkitektur.

    Haha :p
     
  17. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,480
    1,500
    150
    Slaktarn: have you created an server 2008 / 2008 R2 AIO?

    And which index is which version?
    And you want to integrate language pack to all?
     
  18. Slaktarn

    Slaktarn MDL Novice

    Jul 23, 2010
    34
    3
    0
    #58 Slaktarn, Oct 15, 2010
    Last edited by a moderator: Apr 20, 2017
  19. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,480
    1,500
    150
    #59 tcntad, Oct 15, 2010
    Last edited by a moderator: Apr 20, 2017
  20. Slaktarn

    Slaktarn MDL Novice

    Jul 23, 2010
    34
    3
    0