summaryrefslogblamecommitdiffstats
path: root/content/posts/windows-diskpart-formatting.md
blob: 657a62ce4955fdfbbde774c85bce76280fbcedcf (plain) (tree)
1
2
3
4


                                    
                                                   















                                                                                                                                                                                                    
---
title: "Windows Diskpart Formatting"
date: 2018-11-13T15:02:00
tags: ["Guides", "Snippets", "Software", "Windows"]
---
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.

A rough guide for resolve this how to do so is below:

```
win + r
diskpart
list disk
select disk 1
clean
create partition primary
format fs=ntfs quick label=Keyring
assign letter=Z
exit
```