_DISCLAIMER: 你要对自己的行为负责。
在做了一些研究之后,我发现了 This Instructable,详细介绍了如何使用Windows命令 Mountvol 来挂载和卸载驱动器。
教程
1.首先,以管理员身份打开命令提示符。
2. 运行命令mountvol
,并注意你要挂载/卸载的驱动器字母上方的卷名(例如`\?\Volume{########-####-####-####-############}_DISCLAIMER: 你要对自己的行为负责。
在做了一些研究之后,我发现了[ This ]0x3& Instructable,详细介绍了如何使用Windows命令[ Mountvol ]0x3&来挂载和卸载驱动器。
教程
1.首先,以管理员身份打开命令提示符。
2. 运行命令mountvol
,并注意你要挂载/卸载的驱动器字母上方的卷名(例如 )
要卸载驱动器,请键入 mountvol [DriveLetter] /p
。请确保将"[DriveLetter]“替换为指定给您要卸载的驱动器的字母,例如,G:
)
要掛載磁碟機,請輸入 mountvol [DriveLetter] [VolumeName]
。确保将”[DriveLetter]“替换为您希望挂载驱动器的字母,例如,G:
,并将”[VolumeName]“替换为您在步骤 2 中记录的卷名。
批处理脚本
这是两个简单的批处理脚本的例子,你可以用它来挂载和卸载你选择的驱动器:
为了使批处理文件工作,你需要用管理权限来运行它们,否则批处理文件将返回一个Access Denied
错误。
Unmounting:
@echo off
REM Be sure to change this to the drive you want to unmount!
set drive=G:
echo Unmounting Drive...
mountvol %drive% /p
echo Drive Unmounted!
pause
exit
Mounting:
@echo off
REM Be sure to change this to the drive letter you want to mount the drive to!
set drive=G
REM Be sure to change this to the Volume Name of the drive you want to mount!
set volume=\?\Volume{ae101d9f-7653-11e3-be83-8056f23387a6}\
:start
echo Mounting Drive...
mountvol %drive%: %volume%
echo Drive Mounted!
pause
exit
在运行批处理文件之前,请确保修改顶部的批处理文件,以确保你正在安装/卸载正确的驱动器。
不要使用/D,因为它只会删除驱动器编号分配,请使用/p。从挂载卷/?:
/p Removes the volume mount point from the specified directory,
dismounts the volume, and makes the volume not mountable.
You can make the volume mountable again by creating a volume
mount point.
。