Skip to content

Instantly share code, notes, and snippets.

@nicholasxng
Forked from joeypiccola/diskpart.bat
Created September 2, 2023 03:09
Show Gist options
  • Save nicholasxng/a83622779b9ad7127c90100bd1696e61 to your computer and use it in GitHub Desktop.
Save nicholasxng/a83622779b9ad7127c90100bd1696e61 to your computer and use it in GitHub Desktop.
Use diskpart to online, initialize, and format disks
diskpart
select disk 1
attributes disk clear readonly
online disk
select disk 1
clean
convert gpt
create partition primary
format quick fs=ntfs label="data" unit=64k
assign letter=“E"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment