gpt4 book ai didi

windows - 使用 vbscript 从 WMI 类获取描述

转载 作者:可可西里 更新时间:2023-11-01 11:39:25 25 4
gpt4 key购买 nike

如何使用 vbscript 从 WMI 类中获取描述?

我找到了这个示例,但它是用 C# 编写的:

// Gets the class description.
try
{
// Gets the property qualifiers.
ObjectGetOptions op = new ObjectGetOptions(null, System.TimeSpan.MaxValue, true);

ManagementClass mc = new ManagementClass(namespace,
classname, op);
mc.Options.UseAmendedQualifiers = true;

foreach (QualifierData dataObject in
mc.Qualifiers)
{
if(dataObject.Name.Equals("Description"))
{
classdesc =
dataObject.Value.ToString();
}
}
}
catch (ManagementException mErr)
{
if(mErr.Message.Equals("Not found "))
MessageBox.Show("WMI class or not found.");
else
MessageBox.Show(mErr.Message.ToString());
}

这张图片显示了我需要的东西。

alt text

最佳答案

这是与您的 C# 代码等效的 VBScript(仅没有错误处理):

Const wbemFlagUseAmendedQualifiers = &H20000

strComputer = "."
Set oWMI = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set oClass = oWMI.Get("Win32_LogicalDisk", wbemFlagUseAmendedQualifiers)

strDesc = oClass.Qualifiers_("Description").Value
WScript.Echo strDesc

关于windows - 使用 vbscript 从 WMI 类获取描述,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3978919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com