Skip to content

Instantly share code, notes, and snippets.

View nicholasxng's full-sized avatar

NNGit nicholasxng

View GitHub Profile
@nicholasxng
nicholasxng / diskpart.bat
Created September 2, 2023 03:09 — forked from joeypiccola/diskpart.bat
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"