summaryrefslogtreecommitdiffstats
path: root/content/posts/windows-diskpart-formatting.md
blob: 05568488a7c033fe7f7437d582e746f91c9729de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
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
```