Making a flash drive to a hard drive

3

2

I've found a tutorial here on how to trick the operating system to see a flash drive as a hard drive.

But I have a few questions:

  • This trick will only work on the os wherein you updated the flash drive driver. Is there a trick that will work like this one, but if you plug in the flash drive to another computer it will still be treated as hard drive?
  • How do I convert it back to a flash drive?

Wern Ancheta

Posted 2010-05-19T09:31:48.930

Reputation: 5 822

Why would you want to? surely at the end of the day your just putting data on a stick – admintech – 2010-05-19T09:46:01.597

yup but its easier to partition the flash drive its treated as hard drive. – Wern Ancheta – 2010-05-19T22:41:50.710

I have a program that refuses to be installed in a flash drive! – david – 2017-02-18T20:29:03.297

Last time I checked, a flash drive is a hard drive.. – Wuffers – 2011-03-23T02:57:40.277

Answers

4

You can partition a flash drive using diskpart. For more information read the TechNet Diskpart Documentation

Example:

Run command prompt "As Administrator"

Run these commands in this order at the command prompt and replace # with your flash drives Disk # listed when you run list disk

diskpart
list disk
select disk #
clean
create partition primary size=1000
select partition 1
active
format fs=NTFS
assign
exit

Riguez

Posted 2010-05-19T09:31:48.930

Reputation: 3 594

3

If/when you find Diskpart to be insufficient or useless, you will find joy using RMPrepUSB - it's a free utility from the geniuses at reboot.pro.

Check this screenshot for an example:

By adding a small, hidden second partition to the drive, some BIOSes will treat the drive as a hard disk and not a removable drive

Sam Dunlap

Posted 2010-05-19T09:31:48.930

Reputation: 31

1

The driver solution provided by OP is for 32 bit and won't work for the 64bit OS. One can also looks for USB with Lexar based firmware and used this tool. The tool will flip Removable Media Bit(RMB) setting of a USB drive. Corsair, a well known vendor, does not support this. See the thread.

Win Myo Htet

Posted 2010-05-19T09:31:48.930

Reputation: 377