How to make a virtual USB drive in Windows?

How can I make a virtual USB drive in Windows? Can it be done with DAEMON Tools or something like that?

The reason is that I need the USB drive to use them instead of a physical USB. Sometimes I need to load certificate from USB but I left it at home and when I'm on the job I want to make a virtual USB and put on them certificate, so how can I do that?

5

1 Answer

You can use ImDisk to create a removable USB drive

imdisk -a -s 536870912 -m R: -o rem -p "/fs:ntfs /q /y"
-a Attach a virtual disk. This will configure and attach a virtual disk with the parameters specified and attach it to the system.
-s Size of the virtual disk. Size is number of bytes ...
-m Specifies a drive letter or mount point for the new virtual disk ...
-o rem Specifies that the device should be created with removable media characteristics.  ...
-p ... The 'format' command to create a filesystem when the new virtual disk has been created. "/fs:ntfs /q /y" is: Create an NTFS filesystem with quick formatting and without user interaction.

How to install

  • For a CMD version download ImDisk Toolkit, extract it with 7-Zip and copy these 2 files:

     ..\cpl\i386\imdisk.cpl ..\cli\i386\imdisk.exe
  • For a GUI version download ImDisk Toolkit and just install it.

Further links

1

You Might Also Like