8

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.

2 Answers2

0

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

USB-Sticks and multiple Partitions

Supun
  • 146
-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
fixer1234
  • 28,064