Windows_Management_Instrumentation
WMI是管理系统中的核心
使用本工具的前提是:系统的服务列表中,Windows_Management_Instrumentation(winmgmts)这个服务处于运行状态。
如果处于关闭状态,请在运行窗口中输入Services.msc打开服务窗口,找到WMI服务并启用。
打开本工具,在文本框输入SQL查询语句,按下【Enter】查询。
* 常用的SQL语句有:
Select * from Win32_Service 查询服务列表
Select * from Win32_Process 查询进程列表
Select * from Win32_LogicalDisk 查询磁盘分区
Select * from CIM_DataFile where Drive='E:' 查询E分区下的所有文件
其余查询语句,参考WMI常用类.xlsx
* 在本工具的表格控件,点击右键菜单,选择“导出Excel”,可以导出数据。

Windows_Management_Instrumentation.rar
Windows_Management_Instrumentation的更多相关文章
随机推荐
- Maven:Failed to read artifact descriptor for xxx
Maven多模块项目jar包引用问题: Failed to execute goal on project xxx-service: Could not resolve dependencies fo ...
- const成员函数返回*this
#include <iostream> using namespace std; class A{ public: A &set(char); const A &displ ...
- nexus3安装 - CentOS7环境
nexus3安装 - CentOS7环境 使用nexus3管理docker镜像,配合rancher进行部署. 建资料卷 资料卷默认地址:/var/lib/docker/volumes/资料卷名/_da ...
- 吴裕雄--天生自然 PHP开发学习:超级全局变量
<!DOCTYPE html> <html> <body> <?php $x = 75; $y = 25; function addition() { $GL ...
- 20个GitHub最热门的Java开源项目:文档、框架、工具
专注于Java领域优质技术,欢迎关注 文章来源:JavaGuide 以下涉及到的数据统计,数据来源:https://github.com/trending/java?since=monthly[1] ...
- Maven--mirror 和 repository
参考:http://blog.csdn.net/isea533/article/details/22437511 http://www.cnblogs.com/xdouby/p/6502925.h ...
- CMake命令之export
CMake中与export()相关的命令 (注:红色字体是标题,粉色是需要特别需要注意的地方) 总的来说,export()命令想要做的事情可以用一句话概括:Export targets from th ...
- // 生成modbus CRC16数据
CRC- / MODBUS : )CRC寄存器初始值为 FFFF:即16个字节全为1: )CRC- / MODBUS的多项式A001H ( 0001B) ‘H’表示16进制数,‘B’表示二进制数 计算 ...
- 60年前美国军方的这个编程原则,造就了多少伟大的框架--KISS原则
摘自:https://kb.cnblogs.com/page/654057/ 作者: 贺卓凡 来源: ImportSource 发布时间: 2020-01-23 19:52 阅读: 2324 次 ...
- nginx中rewrite flag
rewrite 正则表达式 新URI [flag]; [flag] 选项用于调控重写的行为,它的取值可能是: last:重写完成后,会停止继续处理当前区块所有属于ngx_http_rewrite ...