강좌 / 팁

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

2013.09.01 07:06

필로 조회:11261 추천: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 - - -
1040 소프트웨어| usb에 hirens 넣기 [1] kailcarson 11215 0 02-12
1039 모 바 일| 카카오톡 친구 추가없이 전화번호 등록하기 [8] 고양이2 11215 3 09-13
1038 윈 도 우| 4. 시스템 복구 디스크 만들기 공피 11222 1 02-14
1037 VISTA 무게를 조금이라도 줄일 수 있는 팁 [5] ASUS 11224 1 09-24
1036 하드웨어| 센스 Q310-AS25 바이오스 업데이트 하세요. 사이버099 11239 0 02-12
1035 VMware player 3.0 부터 가상머신 생성이 가능해 졌습니다 [3] 그루터기 11244 0 10-31
1034 윈 도 우| 윈도우7도 자체 음장을 지원하는군요.... [3] Native 64 11245 0 03-12
1033 윈 도 우| PC에서 MS로 주기적으로 정보를 전송하는 것을 막는 방법입... [21] 서비스 11257 5 08-09
1032 윈 도 우| 포터블 프로그램 우클릭 메뉴 [4] eunnano 11259 0 06-26
» 윈 도 우| 윈도 8.1 원본에 언어팩을 적용시키는 방법 [10] 필로 11261 1 09-01
1030 윈 도 우| 서비스팩 설치시 구성 요소 오류에 대한 팁 [5] hbkid 11275 0 01-17
1029 소프트웨어| Adobe CS2 시리즈 무료로 사용하기. [5] 달려야하니 11275 2 04-24
1028 하드웨어| 프린터 드라이버 PCL-6와 Post Script 차이 [3] asklee 11277 1 09-14
1027 윈 도 우| Microsoft Dreamspark 정품 다운 [4] vooooov 11298 2 08-22
1026 소프트웨어| Reverse Engeneering- Assembly [6] publicstat 11304 0 08-17
1025 윈 도 우| Bluray원본에 한글자막 넣기(2부) [2] 동방전패 11306 3 08-19
1024 윈 도 우| 5/11 일자 SP3 누적 업데이트 + DotnetFX 3.5 SP1 [22] 오펜하이머 11317 5 04-26
1023 윈 도 우| 윈도우 8 서버 프리뷰 액티베이션 키 [2] 우금티 11323 0 09-23
1022 소프트웨어| 유튜브 동영상도 손쉽게 다운로드 할수 있는 기능이 추가되... [39] Star★Bros 11323 9 11-02
1021 윈 도 우| 윈7의 미디어 플레이어로 tp파일을 보자... [9] 나야야 11324 0 05-08
XE1.11.6 Layout1.4.8