Making a flash drive to a hard drive

47,067

Solution 1

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

Solution 2

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

Solution 3

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.

Share:
47,067

Related videos on Youtube

rancor1223
Author by

rancor1223

Updated on September 17, 2022

Comments

  • rancor1223
    rancor1223 over 1 year

    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?
    • rancor1223
      rancor1223 about 14 years
      yup but its easier to partition the flash drive its treated as hard drive.
    • Wuffers
      Wuffers about 13 years
      Last time I checked, a flash drive is a hard drive..
    • david
      david over 7 years
      I have a program that refuses to be installed in a flash drive!
  • Alex K
    Alex K almost 4 years
    I couldn't get this working.