如何使用 WMI 获取卷 GUID?
有没有办法
以下类型的路径: \\?\Volume{GUID}\ ?
使用 WMI 检索 USB 驱动器的
Is there any way to retrieve the following type of path:
\\?\Volume{GUID}\
for USB drives Using WMI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Windows 2003 及更高版本(不是 XP!)中,您可以使用: Win32_Volume 类。
我不认为有办法在 xp 及以下版本中使用 wmi 检索 guid。 不能确定。
albert 指的是 GetVolumeNameForVolumeMountPoint 调用。 链接中有一个示例。
In windows 2003 and above ( not XP !) you can use: Win32_Volume Class.
I don't think there is a way to retrieve the guid with wmi in xp and below. Can't be sure.
albert refers to the GetVolumeNameForVolumeMountPoint call. There is a sample in the link.
您可以从系统注册表获取此信息。 可以使用 StdRegProv 提供程序通过 WMI 读取系统注册表(本地和远程)。
You can fetch this Information from Sytem Registry. Reading System Registry (both local and Remote) is Possible through WMI using the StdRegProv provider.