VB.NET如何调用WMI来实现系统管理和系统信息查询

发布时间:2021-12-02 11:38:57 作者:小新
来源:亿速云 阅读:272

这篇文章给大家分享的是有关VB.NET如何调用WMI来实现系统管理和系统信息查询的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

VB.Net调用WMI可以实现系统管理和系统信息查询等。WMI全称为Windows Management Instrumentation,利用WMI我们可以实现很多系统管理的功能,msdn在.Net Framework类库中对此描述比较简单(因为早期WMI相关专题有所较详尽描述,故类库中未再详细解说与演示)。

开发环境: VB2005  Windows2003

本实例需要在菜单栏中的“项目”-“ 添加引用” -“ System.Management”并在实例代码中导入引用的项目和程序集中定义的命名空间或编程元素 即: Imports System.Management  

VB.NET实例教程之VB.NET查询系统启动信息的实例

代码如下:

Private Sub Lobdotcn()  Dim Lob_Searcher As New ManagementObjectSearcher("root\CIMV2", "SELECT * FROM Win32_BootConfiguration")  For Each Obj_Query As ManagementObject In Lob_Searcher.Get()  ListBox1.Items.Add("乐博网LOB.Cn   VB.Net爱好者的组织")  ListBox1.Items.Add("BootDirectory: " & Obj_Query("BootDirectory"))  ListBox1.Items.Add("Caption: " & Obj_Query("Caption"))  ListBox1.Items.Add("ConfigurationPath: " & Obj_Query("ConfigurationPath"))  ListBox1.Items.Add("Description: " & Obj_Query("Description"))  ListBox1.Items.Add("LastDrive: " & Obj_Query("LastDrive"))  ListBox1.Items.Add("Name: " & Obj_Query("Name"))  ListBox1.Items.Add("ScratchDirectory: " & Obj_Query("ScratchDirectory"))  ListBox1.Items.Add("SettingID: " & Obj_Query("SettingID"))  ListBox1.Items.Add("TempDirectory: " & Obj_Query("TempDirectory"))  Next  End Sub


相关属性说明:

BootDirectory   Data type: string  Access type: Read-only   Path to the system files required for booting the system.  Example: "C:\Windows"  Caption   Data type: string  Access type: Read-only  Qualifiers: MaxLen(64)   Short description (one-line string) of the CIM_Setting object. This property is inherited from CIM_Setting.  ConfigurationPath   Data type: string  Access type: Read-only   Path to the configuration files. This value may be similar to the value in the BootDirectory property.  Description   Data type: string  Access type: Read-only   Description of the CIM_Setting object. This property is inherited from CIM_Setting.  LastDrive   Data type: string  Access type: Read-only   Last drive letter to which a physical drive is assigned.  Example: "E:"  Name   Data type: string  Access type: Read-only  Qualifiers: Key, MaxLen(256)   Name of the boot configuration. It is an identifier for the boot configuration.  ScratchDirectory   Data type: string  Access type: Read-only   Directory where temporary files can reside during boot time.  SettingID   Data type: string  Access type: Read-only  Qualifiers: MaxLen(256)   Identifier by which the CIM_Setting object is known. This property is inherited from CIM_Setting.  TempDirectory   Data type: string  Access type: Read-only   Directory where temporary files are stored.  Example: "C:\TEMP"

感谢各位的阅读!关于“VB.NET如何调用WMI来实现系统管理和系统信息查询”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

推荐阅读:
  1. wmi.WMI().Win32_ComputerSystem()
  2. 模糊查询怎么使用mybatis来实现

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

vb.net wmi

上一篇:C#操作Word的方法是什么

下一篇:tk.Mybatis插入数据获取Id怎么实现

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》