Skip to content

Instantly share code, notes, and snippets.

@DartPower
Created January 29, 2019 19:20
Show Gist options
  • Save DartPower/fc96ba8d9a8c29ccda7f62cc8918162d to your computer and use it in GitHub Desktop.
Save DartPower/fc96ba8d9a8c29ccda7f62cc8918162d to your computer and use it in GitHub Desktop.
Install Windows 10 to UEFI
@echo off
diskpart
list disk
select disk 0
clean
rem convert mbr
create partition primary size=100
format fs=fat32 quick
assign letter=s
active
create partition primary
format fs=ntfs quick
assign letter=w
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment