获得系统版本信息wmic datafile where Name='c:\\windows\\explorer.exe' get Manufacturer,Version,Filename 获得系统进程wmic process list full 注意:这里的full也可以换成brief(简洁) 获得硬件信息(这里以cpu为例)wmic cpu get name,caption,maxclockspeed,description 将结果输出到d盘的1.txt里面wmic /output:D:\1
获取BIOS序列号 wmic bios list full | find "SerialNumber" SerialNumber=P50168VB 获取CPUID(WIN32_PROCESSOR) wmic cpu list full | find "ProcessorId" rem 提取CPU名称和描述的批处理语句 @echo offfor /f "delims=" %%a in ('wmic cpu get name^,description
整理wmic使用,不重启变环境变量 . 利用wmic修改是直接生效的:(e:\tools 是新添加的目录) wmic ENVIRONMENT where "name='path' and username="" set VariableValue="%path%e:\tools" DESKTOPMONITOR – 监视器管理 ::获取屏幕分辨率 wmic DESKTOPMONITOR where Status='ok' get ScreenHeight
1.wmic=Microsoft Windows Management Instrumentation 2. C:\WINDOWS\system32\wbem 下的东西,特别是.xsl格式化文件,实现wmic的格式化输出如wmic /output:c:\process.html process list /format:htable.xsl /format:textvaluelist.xsl /format:hform.xsl /format:htable.xsl /format:csv.xsl
实例应用 1.磁盘管理 查看磁盘的属性 wmic logicaldisk list brief ::caption=标题.driveID=驱动器ID号.model=产品型号.Partitions=分区.size=大小 根据磁盘的类型查看相关属性 wmic logicaldisk where drivetype=3 list brief 使用get参数来获得自己想要参看的属性 wmic logicaldisk where drivetype=3 get deviceid,size,freespac
WMIC扩展WMI(Windows Management Instrumentation,Windows管理工具) ,提供了从命令行接口和批命令脚本执行系统管理的支持. 一.如何使用帮助文档: 1.wmic /? ################################################################# The following global switches are available:/NAMESPACE Path for the namespace