diff options
author | breadcat | 2020-06-19 12:23:15 +0100 |
---|---|---|
committer | breadcat | 2020-06-19 12:23:15 +0100 |
commit | 70bb5d5a801428b0fb390abf79f19ffcf5e29c67 (patch) | |
tree | b9fd7990156bd58bc38d58f91829c05933215102 /content/posts/windows-diskpart-formatting.md | |
parent | 0f9a31348079c0a061bcc194912e75cc1c07bc1f (diff) | |
download | blog.minskio.co.uk-70bb5d5a801428b0fb390abf79f19ffcf5e29c67.tar.gz blog.minskio.co.uk-70bb5d5a801428b0fb390abf79f19ffcf5e29c67.tar.bz2 blog.minskio.co.uk-70bb5d5a801428b0fb390abf79f19ffcf5e29c67.zip |
Simple migration of existing posts to hugo format
Diffstat (limited to 'content/posts/windows-diskpart-formatting.md')
-rw-r--r-- | content/posts/windows-diskpart-formatting.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/content/posts/windows-diskpart-formatting.md b/content/posts/windows-diskpart-formatting.md new file mode 100644 index 0000000..3c310ba --- /dev/null +++ b/content/posts/windows-diskpart-formatting.md @@ -0,0 +1,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 +``` |