我想测试 Windows 8 的“Windows to go”功能。
但我没有 16 GB 的驱动器。
如何使逻辑驱动器/文件夹显示为虚拟可移动驱动器?
答案1
有subst
命令。
Associates a path with a drive letter.
SUBST [drive1: [drive2:]path]
SUBST drive1: /D
drive1: Specifies a virtual drive to which you want to assign a path.
[drive2:]path Specifies a physical drive and path you want to assign to
a virtual drive.
/D Deletes a substituted (virtual) drive.
Type SUBST with no parameters to display a list of current virtual drives.
不过,我不认为这会使它看起来像一个可移动的驱动器diskmgmt.msc
。