설치 / 사용기

윈 도 우 Win10PE_x64.wim_chul

2016.04.08 02:17

foros 조회:2481 추천: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 - - -
4147 소프트웨어| 통합도구에 넣을 FASTCOPY [12] 굿듀님스토 1744 4 06-07
4146 윈 도 우| 윈도우 통합 작업 테스트 [29] 굿듀님스토 2378 15 06-07
4145 소프트웨어| PE 한번 만들어 봤습니다. [17] 알리아스 2602 5 06-06
4144 윈 도 우| 윈도우 통합백업복구에 추가할 dism 메뉴 작업 [7] 굿듀님스토 1473 4 06-05
4143 윈 도 우| 윈도우 통합 백업 복구 관리프로그램을 1차 배포 시작합니다. [51] 굿듀님스토 3769 19 06-04
4142 하드웨어| 위도우 10 에서 SSD 바꾸고 인증이 풀린경우... [8] 시향 2704 0 06-04
4141 윈 도 우| 윈도우 통합 백업복구 AOMEI Backupper 메뉴 추가 [6] 굿듀님스토 2231 8 06-03
4140 윈 도 우| Win10PESE Y드라이브 고정하기 체험기 [12] 선우 1753 4 06-03
4139 윈 도 우| 왕초X님의 PartitionSaving + 콜레X님의 Win10_x64.PE_COLi... [10] 코리아선비 1898 7 06-03
4138 윈 도 우| 윈도우 통합 백업 복구 [31] 굿듀님스토 2218 15 06-02
4137 윈 도 우| 단순한 윈도우7 -> 윈도우10 설치후기입니다. [3] 구리구랑 2132 1 06-02
4136 윈 도 우| 윈도우 통합 백업복구프로그램 Snapshot 추가 [22] 굿듀님스토 3167 11 06-01
4135 윈 도 우| Windows 10 Pro K th2 x64 Special13 간단 사용기 [49] 태풍소녀 2523 9 05-31
4134 윈 도 우| 윈도10으로 업그레이드 하지 않으시려면 권장업데이트만 해... [11] suk 3434 6 05-30
4133 윈 도 우| Windows 10 Pro K th2 x64 Special13 설치기 [123] 선우 3160 16 05-30
4132 윈 도 우| Gandalf’s Windows 10PE x64 - 05-13-2016 사용기 [7] 달리기 2367 3 05-30
4131 윈 도 우| wim vhd ghost snapshot 통합 백업복구프로그램제작 [22] 굿듀님스토 2354 18 05-30
4130 윈 도 우| Win10_14352_PE_x86중국pe 부팅 체험만 해보았습니다 [32] 선우 1972 7 05-28
4129 윈 도 우| jucom님의 Win10SE_x64PE 설치 부팅 [21] 선우 1764 5 05-26
4128 윈 도 우| 가상화관련 [11] 굿듀님스토 1516 3 05-26
XE1.11.6 Layout1.4.8