Mount a Second Partition of a USB Drive on Windows

8

2

I have a Pen-drive of 8GB, I have 2 partitions on it, one of 15MB and another of the remaining (7GB+).

I know that Windows only recognizes the first partition, is there any way to mount the second partition on Windows.

Akshat Mittal

Posted 2012-04-30T10:16:31.620

Reputation: 2 195

Question was closed 2017-04-27T19:25:17.673

When the accepted answer IS the other question, yea, I think that qualifies as duplicate. – music2myear – 2017-04-27T16:43:06.460

Have you tried using the Disk Management utility, invokable by running diskmgmt.msc? – Rilgon Arcsinh – 2012-04-30T10:23:22.813

Yes, That Does not Help out. – Akshat Mittal – 2012-05-01T10:51:48.913

Answers

0

There seems to be a registry hack available for windows. Try the following post.

USB-Sticks and multiple Partitions

Supun

Posted 2012-04-30T10:16:31.620

Reputation: 146

This work only with 32-bits windows... – user2284570 – 2015-03-08T19:59:14.847

-2

You just need to activate the primary partition on both partition.

You can follow this command line:

diskpart
  list disk
  select <disk number>
  clean
   create partition primary size=2000  (mount of size you want on the usb)
  format quick fs=fat32 label="name it the way you want"
  assign letter=P
  active

kavan Mavati

Posted 2012-04-30T10:16:31.620

Reputation: 1

What about 4Tb hard disk partitioned with ɢᴘᴛ ? – user2284570 – 2017-04-27T12:29:17.230