윈 도 우 Win10PE_x64.wim_chul
2016.04.08 02:17
참고 : 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
Screen Shot 2
shot 3
shot 4
shot 5
...
잘못된부분과 추가해야할 내용이 있으면 적어주시기바랍니다..
댓글 [8]
-
집앞의큰나무 2016.04.08 02:59
-
선우 2016.04.08 08:53
올려주신 포스팅을 보면서 배움을 길은 참으로 끝이 없다는걸 느끼게 되네요 정말 감사 드리구요 틈틈이 시간 나는대로
뭘 적으셨는지 이해하기 위해 공부좀 하겠습니다 감사합니다 ^^*
-
cungice 2016.04.08 09:01
foros님 수고 많으셨습니다. 좋은 정보 감사합니다.
-
ehdwk 2016.04.08 09:20
수고하셨니다.
좋은글 감사합니다. -
왕초보 2016.04.08 10:35
아직 uefi에 대해서 잘 모르다보니..cmd 명령어만 보아도 어질어질 하네요
좋은 강좌를 해주셔서 감사합니다..
먼훗날을 위해서..보관을 잘 해놓았습니다
즐거운 하루 되세요
-
얼음심장 2016.04.08 16:29
즐겁게 보고 갑니다.
-
단편지식 2016.04.08 17:25
흰바탕에 검은글씨
앞이 깜깜해 집니다.
그래도 감사 합니다.
뭔지 이해 하는 그날까지
화이팅 합니다.
-
rhflffk88 2016.04.09 18:50
foros님!
수고 많으셨습니다~~~
행복하신 주말 되십시요! ^^
번호 | 제목 | 글쓴이 | 조회 | 추천 | 등록일 |
---|---|---|---|---|---|
[공지] | 사용기/설치기 이용안내 | gooddew | - | - | - |
4109 | 소프트웨어| 업데이트 제거하고 숨기기 테스트 [19] | suk | 2890 | 12 | 05-20 |
4108 | 윈 도 우| Windows 10 Pro K th2 x64 Special12 설치 체험기 [235] | 선우 | 4497 | 19 | 05-19 |
4107 | 윈 도 우| Windows7 2016년 4월 롤업 업데이트 통합 연습합니다 [42] | suk | 5248 | 12 | 05-18 |
4106 | 윈 도 우| sfc /scannow 한번 끝까지 복구해봤습니다. 결과는? [11] | suk | 6541 | 7 | 05-18 |
4105 | 윈 도 우| 윈도10 레드스톤1 14342 빌드 잠시 설치해봤습니다 [27] | suk | 3202 | 14 | 05-17 |
4104 | 윈 도 우| 총알pe 구형노트북에서 원클릭으로 드라이버 설치 [16] | 조아조아 | 2228 | 7 | 05-16 |
4103 | 윈 도 우| Grub+Snapshot 백업 복구 [12] | 연고 | 3376 | 13 | 05-15 |
4102 | 하드웨어| USB 3.1 to SATA [6] | 해피밥 | 2986 | 5 | 05-15 |
4101 | 윈 도 우| 윈두우 7 + 오피스 자동 업데이트 스크립트 [17] | gooddew | 3216 | 11 | 05-15 |
4100 | 윈 도 우| Windows10_X64_PE_CoLite_v5.3 UEFI 설치 체험기 [96] | 선우 | 3158 | 12 | 05-15 |
4099 | 윈 도 우| Win10_X64_PE_COLite_v5.3 UEFI를 돌려보고 [11] |
|
2676 | 2 | 05-14 |
4098 | 소프트웨어| 트위터 실시간 알림프로그램 - 제작 테스트중 [2] | 굿듀님스토 | 1594 | 2 | 05-14 |
4097 | 소프트웨어| 그래픽카드를 uefi 부팅 지원되도록 해봤습니다 [24] | suk | 3784 | 11 | 05-13 |
4096 | 소프트웨어| 맨살링런처프로그램??? [2] | 굿듀님스토 | 1675 | 3 | 05-13 |
4095 | 소프트웨어| 유튜브관리기 ???? 테스트 후 [4] | 굿듀님스토 | 1385 | 5 | 05-13 |
4094 | 기 타| Win10_X64_PE_COLite_v5.3 UEFI (완결판) 부팅기... [25] | 지ol니 | 2300 | 7 | 05-13 |
4093 | 윈 도 우| Win10_X64_PE_COLite_v5.3 UEFI (완결판)사용기및 드라이브... [49] | 태풍소녀 | 2592 | 10 | 05-13 |
4092 | 소프트웨어| 파일명 바꾸기 - 전문가용(?) [4] | 굿듀님스토 | 1937 | 4 | 05-13 |
4091 | 윈 도 우| WIN10 Set - "8.1 PE 사랑과평화님&무등산편집 (2... [59] | 선우 | 2734 | 9 | 05-13 |
4090 | 소프트웨어| 파일명바꾸기 - 전문가용(?) 작업및 테스트 [5] | 굿듀님스토 | 1913 | 2 | 05-13 |
foros님 새벽 시간까지 고생 하셨습니다.
내용을 잘몰라서 ...
전체적으로 H 로 Load 되게하여
UEFI , legacy , Ramdisk 멀티부팅을 할수있도록 하는 작업 인지요?