Windows 7 설치에 사용되는 WinPE image인 Boot.wim(또는 WinPE.wim, WinRE.wim 등)을 Windows 7 부팅 메뉴에 추가하는 방법입니다.
다음 예는 Windows 7이 C: 드라이브에 설치되어 있고, D: 드라이브에 Boot.wim 파일과 Boot.sdi 파일을 위치 시켰을 경우의 예입니다.
1. 먼저 준비한 Boot.wim과 Boot.sdi 파일을 D: 드라이브의 Root 디렉토리로 복사한다.
2. 다음 내용의 script를 CMD 파일로 만든다.
@echo off
pushd %~dp0
bcdedit /create {ramdiskoptions}
bcdedit /deletevalue {ramdiskoptions} description
bcdedit /set {ramdiskoptions} ramdisksdidevice partition=D:
bcdedit /set {ramdiskoptions} ramdisksdipath \boot.sdi
bcdedit /create /d "WinPE Boot" /application OSLOADER > GUIDTEMP.TXT
for /F "tokens=1" %%B in ('findstr { GUIDTEMP.TXT') do (
bcdedit /set %%B device ramdisk=[D:]\boot.wim,{ramdiskoptions}
bcdedit /set %%B osdevice ramdisk=[D:]\boot.wim,{ramdiskoptions}
bcdedit /set %%B path \windows\system32\winload.exe
bcdedit /set %%B systemroot \windows
bcdedit /set %%B winpe yes
bcdedit /set %%B detecthal yes
bcdedit /set %%B ems yes
bcdedit /displayorder %%B /addlast
bcdedit /timeout 2
del GUIDTEMP.TXT
)
3. 명령 프롬프트(Command Prompt) 창을 관리자 권한으로 실행한 후, 위 2단계에서 만든 CMD 스크립트를 실행한다.
-
관련글: BCD(부팅 구성 데이터) 설정 방법
댓글 없음:
댓글 쓰기