Skip to content

Instantly share code, notes, and snippets.

@calpamos
Last active November 22, 2025 19:29
Show Gist options
  • Select an option

  • Save calpamos/9e197b7492c5c92c0e25f953720c5591 to your computer and use it in GitHub Desktop.

Select an option

Save calpamos/9e197b7492c5c92c0e25f953720c5591 to your computer and use it in GitHub Desktop.
remove hidden partitions from bootable OS USBs and reset the device
diskpart
list disk
select disk *x*
clean | list partition // clean is shorthand for these commands
| select partition *x*
| delete partition *x*
create partition primary
format fs=ntfs quick
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment