Created
August 19, 2020 23:27
-
-
Save numbnet/2e30cd54e52f3f00f04f3d4efb8243d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem == CreatePartitions-UEFI.txt == | |
rem == These commands are used with DiskPart | |
REM to 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. Create space for the recovery image === | |
shrink minimum=15000 | |
rem ** NOTE: Update this size to match the size | |
rem of the recovery image ** | |
rem == c. Prepare the Windows partition ========= | |
format quick fs=ntfs label="Windows" | |
assign letter="W" | |
rem === 5. Recovery image partition ================ | |
create partition primary | |
format quick fs=ntfs label="Recovery image" | |
assign letter="R" | |
set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac" | |
gpt attributes=0x8000000000000001 | |
list volume | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment