Created
November 8, 2016 11:39
-
-
Save il-katta/04953ea0edeac7400b96dab742f78eb2 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 run with: DiskPart /s diskpart_create_single.txt | |
rem == diskpart_create_single.txt == | |
select disk 1 | |
clean | |
rem convert mbr | |
convert gpt | |
create partition primary | |
rem active | |
format quick fs=ntfs label="W2G" | |
assign letter="W" | |
list volume | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment