我尝试使用USBDLM单独连接USB记忆棒和USB驱动器,始终显示为驱动器T.
在每个USB stich /驱动器上,我将USBDLM.ini放在:
[DriveLetters]
Letters=%drive%\usbdlm.ini
并且每个驱动器都有自己的配置:
[DriveLetters10]
; Aldistick
DeviceID1=USB 2.0 Flash Disk USB Device
Letter1=T
; many other options are documented in the Help files
[DriveLetters20]
VolumeSerial=16ED-33C5
Letter=T
但我发现这不起作用,除非我将每个stick / drive的相同usbdlm.ini文件放入放置USBDLM.exe的文件夹中。
我有什么不对吗? 感谢。
答案 0 :(得分:0)
在驱动器上,您需要一个USBDLM.INI,其中包含一个带有所需字母的简单[DriveLetters]部分:
[DriveLetters]
Letters=T
在主USBDLM.INI中,您将读取驱动器上INI的字母:
[DriveLetters]
Letters=%drive%\usbdlm.ini
让USBDLM从卷标中提取所需的驱动器号可能更方便,例如将其标记为“Drive T”并写入主USBDLM.INI:
[DriveLetters]
Letters=%LetterFromLabel%
http://www.uwe-sieber.de/usbdlm_help_e.html#by_label
Uwe Sieber