설치 / 사용기

윈 도 우 Win10PE_x64.wim_chul

2016.04.08 02:17

foros 조회:2488 추천:2

참고 : usb 메모리 drive (이하 ufd) : H:
        어떤파일들을 복사해야 하는지와 ufd 만으로 uefi 부팅이 이루어 지는지를 테스트하지 못했습니다.
        하드디스크에 있는 efi 시스템 파티션에 영향을 받는지를 테스트하지 못했습니다.
        주말까지 여러 PE 들을 테스트해보겠습니다.
        uefi 테스트는 다음에 종합해서 적겠습니다.


* 우선 철** PE 를 테스트했습니다. bcd 를 createstore 옵션으로 완전히 새로 만들수있습니다.
   하지만 지금은 Power-RecoveryUSB iso 파일을 사용해서 먼저 테스트했습니다.
 
* efi bcd 수정


bcdedit /store h:\efi\microsoft\boot\bcd /set {bootmgr} device partition=h:
bcdedit /store h:\efi\microsoft\boot\bcd /set {bootmgr} path \efi\microsoft\boot\bootmgfw.efi
bcdedit /store h:\efi\microsoft\boot\bcd /set {bootmgr} timeout 10
bcdedit /store h:\efi\microsoft\boot\bcd /set {default} bootmenupolicy legacy


* ramdiskoptions 생성


bcdedit /store h:\efi\microsoft\boot\bcd /enum {ramdiskoptions}
일치하는 개체가 없거나 저장소가 비어 있습니다는 메세지가 나오면 만듭니다.


bcdedit /store h:\efi\microsoft\boot\bcd /create {ramdiskoptions}
bcdedit /store h:\efi\microsoft\boot\bcd /set {ramdiskoptions} ramdisksdidevice partition=h:
bcdedit /store h:\efi\microsoft\boot\bcd /set {ramdiskoptions} ramdisksdipath \boot\boot.sdi


참고 : PE 부팅메뉴에 Ramdisk Options 라는 항목만 표시되면 bcdedit /deletevalue {ramdiskoptions} description


* efi bcd 에 PE wim 파일 Pw_Rcv_chul_x64.wim 을 추가해서 등록합니다.


bcdedit /store h:\efi\microsoft\boot\bcd /create /d Pw_Rcv_chul_x64_efi /application osloader > j:\Pw_Rcv_chul_x64_efi.txt


참고 : {guid} 는 j:\Pw_Rcv_chul_x64_efi.txt 파일에 저장된 {자신의 guid} 를 사용합니다.


bcdedit /store h:\efi\microsoft\boot\bcd /set {guid} device ramdisk=[h:]\boot_wim\Pw_Rcv_chul_x64.wim,{ramdiskoptions}
bcdedit /store h:\efi\microsoft\boot\bcd /set {guid} osdevice ramdisk=[h:]\boot_wim\Pw_Rcv_chul_x64.wim,{ramdiskoptions}
bcdedit /store h:\efi\microsoft\boot\bcd /set {guid} path \Windows\system32\Boot\winload.efi
bcdedit /store h:\efi\microsoft\boot\bcd /set {guid} systemroot \Windows
bcdedit /store h:\efi\microsoft\boot\bcd /set {guid} locale ko-KR
bcdedit /store h:\efi\microsoft\boot\bcd /set {guid} inherit {bootloadersettings}
bcdedit /store h:\efi\microsoft\boot\bcd /set {guid} detecthal yes
bcdedit /store h:\efi\microsoft\boot\bcd /set {guid} winpe yes
bcdedit /store h:\efi\microsoft\boot\bcd /set {guid} bootmenupolicy legacy
bcdedit /store h:\efi\microsoft\boot\bcd /set {guid} loadoptions disable_integrity_checks
bcdedit /store h:\efi\microsoft\boot\bcd /displayorder {guid} /addlast


* efi bcd 내용


bcdedit /store h:\efi\microsoft\boot\bcd > j:\efi_h_bcd.txt


efi_h_bcd.txt 내용


Windows 부팅 관리자
--------------------
identifier              {bootmgr}
device                  partition=H:
path                    \efi\microsoft\boot\bootmgfw.efi
description             Windows Boot Manager
locale                  ko-KR
inherit                 {globalsettings}
default                 {default}
displayorder            {default}
                        {01b8cd84-fcaf-11e5-9062-9c5c8e7b76b7}
toolsdisplayorder       {memdiag}
timeout                 10

Windows 부팅 로더
-------------------
identifier              {default}
device                  ramdisk=[boot]\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
path                    \Windows\System32\Boot\winload.efi
description             Windows Setup
locale                  ko-KR
inherit                 {bootloadersettings}
osdevice                ramdisk=[boot]\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
systemroot              \windows
bootmenupolicy          Legacy
detecthal               Yes
winpe                   Yes
ems                     No

Windows 부팅 로더
-------------------
identifier              {01b8cd84-fcaf-11e5-9062-9c5c8e7b76b7}
device                  ramdisk=[H:]\boot_wim\Pw_Rcv_chul_x64.wim,{ramdiskoptions}
path                    \Windows\System32\Boot\winload.efi
description             Pw_Rcv_chul_x64_efi
locale                  ko-KR
loadoptions             disable_integrity_checks
inherit                 {bootloadersettings}
osdevice                ramdisk=[H:]\boot_wim\Pw_Rcv_chul_x64.wim,{ramdiskoptions}
systemroot              \Windows
bootmenupolicy          Legacy
detecthal               Yes
winpe                   Yes


* 같은 방법으로 Win10PE_x64.wim 파일을 추가로 등록


bcdedit /store h:\efi\microsoft\boot\bcd /create /d Win10PE_x64_chul_efi /application osloader


참고 : {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} 항목을 만들었습니다. 화면에 출력됩니다.


bcdedit /store h:\efi\microsoft\boot\bcd /set {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} device ramdisk=[h:]\boot_wim\Win10PE_x64.wim,{ramdiskoptions}
bcdedit /store h:\efi\microsoft\boot\bcd /set {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} osdevice ramdisk=[h:]\boot_wim\Win10PE_x64.wim,{ramdiskoptions}
bcdedit /store h:\efi\microsoft\boot\bcd /set {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} path \Windows\system32\Boot\winload.efi
bcdedit /store h:\efi\microsoft\boot\bcd /set {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} systemroot \Windows
bcdedit /store h:\efi\microsoft\boot\bcd /set {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} locale ko-KR
bcdedit /store h:\efi\microsoft\boot\bcd /set {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} inherit {bootloadersettings}
bcdedit /store h:\efi\microsoft\boot\bcd /set {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} detecthal yes
bcdedit /store h:\efi\microsoft\boot\bcd /set {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} winpe yes
bcdedit /store h:\efi\microsoft\boot\bcd /set {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} bootmenupolicy legacy
bcdedit /store h:\efi\microsoft\boot\bcd /set {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} loadoptions disable_integrity_checks
bcdedit /store h:\efi\microsoft\boot\bcd /displayorder {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7} /addlast


* bcdedit /store h:\efi\microsoft\boot\bcd > j:\efi_bcd_chul.txt 내용


Windows 부팅 관리자
--------------------
identifier              {bootmgr}
device                  partition=H:
path                    \efi\microsoft\boot\bootmgfw.efi
description             Windows Boot Manager
locale                  ko-KR
inherit                 {globalsettings}
default                 {default}
displayorder            {default}
                        {01b8cd84-fcaf-11e5-9062-9c5c8e7b76b7}
                        {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7}
toolsdisplayorder       {memdiag}
timeout                 10

Windows 부팅 로더
-------------------
identifier              {default}
device                  ramdisk=[boot]\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
path                    \Windows\System32\Boot\winload.efi
description             Windows Setup
locale                  ko-KR
inherit                 {bootloadersettings}
osdevice                ramdisk=[boot]\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
systemroot              \windows
bootmenupolicy          Legacy
detecthal               Yes
winpe                   Yes
ems                     No

Windows 부팅 로더
-------------------
identifier              {01b8cd84-fcaf-11e5-9062-9c5c8e7b76b7}
device                  ramdisk=[H:]\boot_wim\Pw_Rcv_chul_x64.wim,{ramdiskoptions}
path                    \Windows\System32\Boot\winload.efi
description             Pw_Rcv_chul_x64_efi
locale                  ko-KR
loadoptions             disable_integrity_checks
inherit                 {bootloadersettings}
osdevice                ramdisk=[H:]\boot_wim\Pw_Rcv_chul_x64.wim,{ramdiskoptions}
systemroot              \Windows
bootmenupolicy          Legacy
detecthal               Yes
winpe                   Yes

Windows 부팅 로더
-------------------
identifier              {da41ca20-fcc7-11e5-9066-9c5c8e7b76b7}
device                  ramdisk=[H:]\boot_wim\Win10PEx64.wim,{ramdiskoptions}
path                    \Windows\system32\Boot\winload.efi
description             Win10PE_x64_chul_efi
locale                  ko-KR
loadoptions             disable_integrity_checks
inherit                 {bootloadersettings}
osdevice                ramdisk=[H:]\boot_wim\Win10PEx64.wim,{ramdiskoptions}
systemroot              \Windows
bootmenupolicy          Legacy
detecthal               Yes
winpe                   Yes

=======================================================================================================================


Win10PE_x64.wim - shot 1


efi00.jpg


Screen Shot 2


efi01.jpg


shot 3


efi02.jpg


shot 4


efi03.jpg


shot 5


efi04.jpg


...


잘못된부분과 추가해야할 내용이 있으면 적어주시기바랍니다..



번호 제목 글쓴이 조회 추천 등록일
[공지] 사용기/설치기 이용안내 gooddew - - -
3084 기 타| Eassos에서 저도..사용기간이 만료 되었다고 나오네요... [6] 왕초보 805 2 07-15
3083 기 타| (5시가 넘었네요) Eassos 리눅스에서 백업이 되네요(하루... [9] 왕초보 718 2 07-11
3082 소프트웨어| Win10XPE 수정된 파일 제공및 한글화 요청 DeathWing 588 2 04-03
3081 윈 도 우| 집앞에큰나무님 XPE 사용기. petool.ini로 icom-petool64.icom [7] 복태취업했 467 2 04-13
3080 하드웨어| 무선 마우스 ROYCHE RX-M1 사용기 번개 794 2 05-24
3079 소프트웨어| V3 - EmEditor 업데이트 파일 오진 [1] asklee 705 2 01-16
3078 윈 도 우| W&W님 WinPE 생성기 2.0 한글화 버전 -한글, 옥에티- [4] 항상감사 1133 2 01-14
3077 소프트웨어| 멜트다운관련 보안 업데이트 후 Sandboxie 간단 사용기 [11] 마이클박 981 2 01-06
3076 소프트웨어| 제가 경험한 것을 알려 드립니다. adguard에 대해서.... [3] 임달화 1569 2 01-02
3075 윈 도 우| Windows_10_PRO_x64_Admin_AppDEL_KO_KY 설치사용기 [17] forbe 1661 2 01-01
3074 윈 도 우| PE VMWare 사용시도기 (실패) [Win10x64 RS3 Admin PE v5 (... [2] TetraTheta 687 2 12-16
3073 윈 도 우| Windows 10 1803 설치 [1] 아침천사 2034 2 05-06
3072 윈 도 우| TEST01-태풍소녀 2017.12.03-Windows_10_Pro_Rs3_K_x64_171... [21] 김영자 1164 2 12-04
3071 윈 도 우| 윈도10 레드스톤4 인사이더 프리뷰 17046 빌드 나왔네요 - ... [2] 김영자 1136 2 11-23
3070 기 타| extd.exe를 이용한 간단 Cmd 백업,복구 프로그램을 구현하... [3] 왕초보 512 2 04-26
3069 기 타| Cmd 백업복구에 컬러 메세지를 활용하여 보았습니다.. [2] 왕초보 356 2 04-27
3068 기 타| (해결) 하이이잌님이 소개 - MessageBox_KOR 를 활용하는 ... [7] 왕초보 579 2 04-25
3067 소프트웨어| 크롬 텍스트 검색 확장프로그램 추천이요~ [5] 준이오빠 644 2 07-04
3066 소프트웨어| 아래 솔향님PE 간단 사용기의 HDTunePro [4] NaDa 1210 2 10-30
3065 소프트웨어| suk님 도움으로DreamPE를 VHD에 풀어놓고 부팅성공하였습니다, [6] 좋은데이 624 2 06-30
XE1.11.6 Layout1.4.8