Create a bootable USB flash drive using large capacity drives

10

Last updated on March 30th, 2023 at 05:15 pm

Read Time:1 Minute, 5 Second

You can use large capacity USB flash drives for almost any data usage these days, these include creating bootable USB sticks for Windows operating systems. But if you try and use a much larger capacity drive (64GB+) then you may have an issue with it working. This is because to boot from a USB stick it should not be any larger than a 32GB partition. So, you can use a larger capacity USB stick but you will have to re-partition it in DiskPart to make it work.

So, to do this, just plug in your USB stick and then go into an elevated command prompt. At the command prompt type in diskpart and press Enter, this will take you into the DiskPart console.

You should then type in the following commands to re-partition the USB stick:

  • list disk (identify the correct disk to re-partition)
  • sel dis # (where # is the disk number from the previous step)
  • clean
  • create part prim
  • sel part 1
  • active
  • shrink desired=32768 minimum=32768 (this creates the correct size partition)
  • format fs=ntfs quick
  • assign

Once you have carried out this steps then you should now notice that you have a 32GB USB stick – copy the installer files to it and it should now boot your device where required.

Click to rate this post!
[Total: 0 Average: 0]

Free Subscription

If you want to be notified when we post more quality guides like this one, sign up to our free subscription service and you will receive an email when a new post is live.

Join 441 other subscribers.

No need to worry, we will not be filling your inbox with spam and you can unsubscribe anytime you like.


Leave us a message...

This site uses Akismet to reduce spam. Learn how your comment data is processed.