WMI筛选器的使用

WMI筛选器的作用是什么?就是在你定制任何操作的时候,可以筛选条件。比如说我这个需要安装一个64位软件,但是需要筛选64位的系统

筛选器的使用

图片[1]-WMI筛选器的使用-木马屋
图片[2]-WMI筛选器的使用-木马屋
这里是筛选64位系统
图片[3]-WMI筛选器的使用-木马屋

语法讲解

WMI语法是WQL语言

//常用语法
//筛选64位系统
Select * from Win32_Processor where AddressWidth="64"
//筛选WIN10
Select * from Win32_OperatingSystem where Version like "10.0%" and ProductType="1"
//筛选计算机名
Select * from Win32_ComputerSystem where name = "PCNAME"
//筛选装有指定软件
Select * from Win32_Product where name = "仙剑奇侠传" OR name = "仙剑奇侠传II"
//筛选磁盘空间大于600
Select * from Win32_LogicalDisk where FreeSpace > 629145600

Windows版本

Version

Windows10与Windows Server 2016

10.0

Windows 8.1与Windows Server 2012 R2

6.3

Windows 8与Windows Server 2012

6.2

Windows 7与Windows Server 2008 R2

6.1

Windows Vista与Window Server 2008

6.0

Windows Server 2003

5.2

Windows XP

5.1

ProductType

所代表的意义

1

客户端等级的操作系统,例如:Windows 10、Windows 8.1

2

服务器等级的操作系统并且是域控制器

3

服务器等级的操作系统,但不是域控制器

温馨提示
本文最后更新于2023-04-25 15:25:59某些文章具有时效性,若有错误或已失效。
请在下方留言或联系QQ:790085358
© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容