반응형

 

 

Windows PE 및 DiskPart 스크립트를 사용하여 디스크 파티션 구성

 

1. Windows PE를 사용하여 대상 PC를 부팅한다.

 

 

2. DiskPart /s F:\textname.txt  (해당 명령어로 텍스트 구문을 스크립트로 적용 할 수 있습니다.)

 

3. 파티션 구성 후 윈도우 설치

 

4. 윈도우 설치 완료후 Recovery 설정

 

5. 가상 환경에서 충분히 연습해보시고 활용 하시기 바랍니다.

 

 

 

 

아래 예문을 복사하여 임의의 텍스트 문서로 저장한다. ex) text.txt

 

rem == CreatePartitions-UEFI.txt ==

rem == These commands are used with DiskPart to

rem    create five partitions

rem    for a UEFI/GPT-based PC.

rem    Adjust the partition sizes to fill the drive

rem    as necessary. ==

select disk 0

clean

convert gpt

rem == 1. Windows RE tools partition ===============

create partition primary size=300

format quick fs=ntfs label="Windows RE tools"

assign letter="T"

set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac"

gpt attributes=0x8000000000000001

rem == 2. System partition =========================

create partition efi size=100

rem    ** NOTE: For Advanced Format 4Kn drives,

rem               change this value to size = 260 ** 

format quick fs=fat32 label="System"

assign letter="S"

rem == 3. Microsoft Reserved (MSR) partition =======

create partition msr size=128

rem == 4. Windows partition ========================

rem ==    a. Create the Windows partition ==========

create partition primary 

rem ==    b. Prepare the Windows partition ========= 

format quick fs=ntfs label="Windows"

 

assign letter="W"


참고 원문 : https://msdn.microsoft.com/ko-kr/library/hh825686.aspx

 

 

 

 

 

정보가 도움이 되었다면 아래 링크로 커피를 후원 해주세요. ^^

donaricano-btn

반응형

'유용한 정보&강좌' 카테고리의 다른 글

Windows7 WanDrv6 Launcher 2016.07.19  (0) 2016.07.31
Windows 10 WKS Launcher Test  (0) 2016.03.27
Make UEFI Partition & Windows 10 Install  (0) 2016.01.29
VHD Differencing  (0) 2015.12.15
WanDrv6 Launcher 6.6  (0) 2015.12.02

+ Recent posts