devcon

设备管理器的命令行版本

启用/禁用 光驱位hdd

1、确认设备id:设备管理器—-对应设备—属性—详细信息—硬件id
WDK工具 - 图1
2、也可通过devcon find SCSI* 进行确认
WDK工具 - 图2
3、禁用(需以管理员身份运行)

  1. devcon disable SCSI\Disk________ST500LT012-9WS140001

4、批处理

:menu
cls
echo.
echo  "press 1 for Enable the hdd"
echo.
echo  "press 0 for Disable the hdd"
echo.
eho =================
echo.
echo.
set  /p user_input="wait for input 1 or 0"
if %user_input% equ 1  "D:\Program Files\"devcon enable SCSI\Disk________ST500LT012-9WS140001
if %user_input% equ 0  "D:\Program Files\"devcon disable SCSI\Disk________ST500LT012-9WS140001
exit

下载地址:https://superuser.com/questions/1002950/quick-method-to-install-devcon-exe
微软官方WDK