windows-diskpart-formatting.md (512B)
1 --- 2 title: "Windows Diskpart formatting" 3 date: 2018-11-13T15:02:00 4 tags: ["Guides", "Snippets", "Software", "Windows"] 5 --- 6 If you've flashed any live-bootable Linux ISO files or similar to a USB drive you may notice that when trying to format again to the full size it seems capped to the original size of the ISO file. 7 8 A rough guide for resolve this how to do so is below: 9 10 ``` 11 win + r 12 diskpart 13 list disk 14 select disk 1 15 clean 16 create partition primary 17 format fs=ntfs quick label=Keyring 18 assign letter=Z 19 exit 20 ```