整理wmic使用,不重启变环境变量 . 利用wmic修改是直接生效的:(e:\tools 是新添加的目录) wmic ENVIRONMENT where "name='path' and username="" set VariableValue="%path%e:\tools" DESKTOPMONITOR – 监视器管理 ::获取屏幕分辨率 wmic DESKTOPMONITOR where Status='ok' get ScreenHeight
获得系统版本信息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