web-dev-qa-db-ja.com

Windowsで仮想USBドライブを作成する方法

Windowsで仮想USBドライブを作成する方法DAEMON Toolsまたはそれと同じようなものでそれをすることができますか?

その理由は、物理的なUSBの代わりにそれらを使用するにはUSBドライブが必要だからです。 USBから証明書をロードする必要がある場合がありますが、家に置いたままで仕事をしているときに仮想USBを作成して証明書を付けたいのですが、どうすればよいでしょうか。

22
john

リムーバブルUSBドライブを作成するには、 ImDisk を使用できます。

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      '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.

インストールする方法

  • CMD版をダウンロードするには、 ImDisk Toolkit を7-Zipで展開し、これら2つのファイルをコピーしてください。

    ..\cpl\i386\imdisk.cpl
    ..\cli\i386\imdisk.exe
    
  • GUI版の場合は ImDisk Toolkit をダウンロードしてインストールしてください。

その他のリンク

18
Nanobrains