강좌 / 팁

윈 도 우 윈도 8.1 원본에 언어팩을 적용시키는 방법

2013.09.01 07:06

필로 조회:11281 추천:1

이미 설치된 윈도에 언어팩을 적용하는 게 아니고 iso 파일 자체에 언어팩을 통합하는 방법입니다.


1. Prerequisites

a) Download Windows 8.1 RTM ISO (RETAIL - x86 or x64 - ENGLISH).
b) Download Windows 8.1 RTM Language Pack ISO (x86 or x64).
c) Open an elevated (run as Admin) command-prompt.

2. Create directory structure

Create the following directories. I use "C:" as the default throughout this tutorial, you can change that as you wish, of course.

C:\Win81\Dist
C:\Win81\Iso
C:\Win81\Lp
C:\Win81\Mount\Boot
C:\Win81\Mount\Install

You can use the following command-lines to create the directories:

mkdir C:\Win81\Dist
mkdir C:\Win81\Iso
mkdir C:\Win81\Lp
mkdir C:\Win81\Mount\Boot
mkdir C:\Win81\Mount\Install


3. Extract ISO and Language Packs

Right-click on the Windows 8.1 ISO and select "Mount" to mount it in File Explorer and copy all its contents to the C:\Win81\Dist directory. You can use the following command-line:

xcopy X:\ C:\Win81\Dist /s /e

Where "X:" represents the drive letter of the mounted ISO. After copying is finished, you can unmount the ISO by right-clicking the drive and select "Eject".

After that, right-click on the Language Pack ISO and select "Mount" to mount it and copy all the language packs you want to the C:\Win81\Lp directory. You can use the following command-line:

xcopy X:\langpacks\de-de\lp.cab C:\Win81\Lp\de-de

Where "X:" represents the drive letter of the mounted ISO and "de-de" the language pack you want. If you, for example, wish to integrate the French one, replace "de-de" with "fr-fr" and so forth for all other language packs you need (have a look at the X:\langpacks directory in File Explorer to see which language packs are available).

4. Update the Windows Installation Image (install.wim)

Change the working directory as follows:

cd C:\Win81\Dist\sources

Run the following command to mount the installation image file:

dism /mount-image /imagefile:C:\Win81\Dist\sources\install.wim /Index:1 /mountdir:C:\Win81\Mount\Install

This will mount the Windows 8.1 Pro image. To integrate language packs into the Core version, change the index from 1 to 2. If you want to integrate language packs in both images, you have to work through this section twice.

After that, run the following command to integrate a language pack into the image:

dism /add-package /image:C:\Win81\Mount\Install /packagepath:C:\Win81\Lp\de-de\lp.cab

Where "de-de" represents the directory of the German language package. Change that to the language string of your choice. If you like to integrate multiple language packs, run the command above for each language pack you want.

After that, run the following command to configure the default language settings for the image. If you want to keep en-US, you can skip this step.

dism /image:C:\Win81\Mount\Install /set-allintl:de-de

Where "de-de" represent the language string. Change that to the one of your choice.

After that, run the following command to recreate the lang.ini file.

dism /image:C:\Win81\Mount\Install /gen-langini /distribution:C:\Win81\Dist

After that, run the following command to unmount the image and commit the changes you made:

dism /unmount-image /mountdir:C:\Win81\Mount\Install /commit

4. Update the Boot Image File (boot.wim)

In order to be able to choose between the languages when Windows setup welcomes you, you have to update the lang.ini file in the boot image file as well.

Run the following command to mount the boot image file:

dism /mount-image /imagefile:C:\Win81\Dist\sources\boot.wim /Index:2 /mountdir:C:\Win81\Mount\Boot

After that, run the following command to copy the lang.ini from the distribution sources to the mounted boot image:

xcopy C:\Win81\Dist\sources\lang.ini C:\Win81\Mount\Boot\sources\lang.ini

After that, run the following command to unmount the image and commit the changes you made:

dism /unmount-image /mountdir:C:\Win81\Mount\Boot /commit


5. That's it - for USB

Voilà - you just created a multi-language Windows 8.1 distribution!

If you're going to install Windows 8.1 from an USB drive, just make it bootable (there are many tutorials out there on how to do this) and copy the contents of the C:\Win81\Dist directory to it.

6. ISO recreation

If you're going to install Windows 8.1 from an ISO, you have to download and install the Windows 8.1 ADK (only available in Preview until Windows 8.1 is generally available) - you don't need the full package, select only the deployment tools during setup - and run the deployment tools command-prompt.

Run the following command to create a bootable ISO from the C:\Win81\Dist directory:

oscdimg -bC:\Win81\Dist\boot\etfsboot.com -lWIN81 -u2 C:\Win81\Dist C:\Win81\Iso\WIN81.ISO

7. Clean-up

After you finished and everything went well, you can clean up all the mess except for the ISO and maybe the C:\Win81\Dist directory, you might need it later to recreate USB etc.

번호 제목 글쓴이 조회 추천 등록일
[공지] 강좌 작성간 참고해주세요 gooddew - - -
2083 윈 도 우| 앱 Internet Explorer를 데스크탑 IE로 실행하기! [3] 이프로 4994 3 09-04
2082 윈 도 우| 영문 w81 rtm dnf35는 한글적용이나 hotfix적용 보다 먼저... [1] suh 4379 0 09-03
» 윈 도 우| 윈도 8.1 원본에 언어팩을 적용시키는 방법 [10] 필로 11281 1 09-01
2080 윈 도 우| 윈도 8.1 최고의 기능 [11] 필로 15153 1 08-31
2079 윈 도 우| 윈도우 8 업그레이드 키로 클린 설치한 윈도우 8 인증하기 DOS 10274 0 08-30
2078 윈 도 우| 윈도우 8.1 토큰 위치 [6] DOS 10860 3 08-29
2077 윈 도 우| Windows 8.1, 기존의 Windows 8 라이선스를 사용할 수 있나요? [1] 통나무 9898 0 08-29
2076 윈 도 우| PE, 윈도우를 USB에 굽기 (울트라ISO사용) [8] Min. 13340 6 08-29
2075 윈 도 우| [프린터 Spool 제거] 지워지지 않는 프린터작업 삭제 방법 [7] DOS 9786 4 08-27
2074 윈 도 우| [초보용] 윈도 wim파일 교체하기 (ISO 편집) [11] suk 14835 8 08-25
2073 윈 도 우| PE 수정하기 - VHD 이용 [11] suk 11938 8 08-23
2072 윈 도 우| 윈도우XP 비밀번호를 잊어버렸을때 [8] DOS 10449 0 08-20
2071 윈 도 우| Internet Explorer 응답없음, hungapp 에러 [1] DOS 6111 0 08-20
2070 하드웨어| 바이오스 새도우 기능 관한 팁 [1] DOS 6248 2 08-20
2069 윈 도 우| 자동 강제 부팅 사용 안하기 DOS 4778 0 08-20
2068 소프트웨어| Acronis TrueImage Home 2014 PE용 분석해봤습니다 (성공) [3] DarknessAn 10057 3 08-20
2067 윈 도 우| 불필요한 파일 정리하기 [4] DOS 8314 0 08-19
2066 윈 도 우| "out of memory at line 56" 해결 방법 [1] DOS 5912 0 08-19
2065 소프트웨어| 진짜 쉬운 부팅USB 만들기(2) - PowerISO 사용 [3] 그루터기 11479 10 08-19
2064 소프트웨어| 진짜 쉬운 부팅USB 만들기(1) - Rufus 사용 [11] 그루터기 16546 8 08-18
XE1.11.6 Layout1.4.8