WMIC扩展WMI(Windows Management Instrumentation,Windows管理工具) ,提供了从命令行接口和批处理脚本执行系统管理的支持。以下是wmic常用命令介绍:
- 获取cpu名称
wmic cpu get Name - 获取cpu核心数
wmic cpu get NumberOfCores - 获取cpu线程数
wmic cpu get NumberOfLogicalProcessors - 查询cpu序列号
wmic cpu get processorid - 查询主板序列号
wmic baseboard get serialnumber - 查询BIOS序列号
wmic bios get serialnumber - 查看硬盘序列号
wmic diskdrive where index=0 get serialnumber - 查看cpu详细信息
wmic cpu list brief - 查看物理内存
wmic memphysical list brief - 查看逻辑内存
wmic memlogical list brief - 查看缓存内存
wmic memcache list brief - 查看虚拟内存
wmic pagefile list brief - 查看网卡
wmic nic list brief - 关闭本地计算机
wmic process call create shutdown.exe - 获取进程名称以及可执行路径
wmic process get name, executablepath - 删除指定进程(根据进程名称)
wmic process where name=“qq.exe” call terminate
//或者wmic process where name = “qq.exe” delete - 删除指定进程(根据进程ID)
wmic process where pic=“123456” delete - 创建新进程
wmic process call create “D:\Program Files (x86)\Tencent\QQ\Bin\QQ.exe”
在命令行可以直接输入命令: