WMI Filter for Windows Operating Systems

WMI Filter for Windows Operating Systems

Windows Server 2012 DC
select * from Win32_OperatingSystem where Version like "6.2%" and ProductType = "2"

Windows Server 2012
select * from Win32_OperatingSystem where Version like "6.2%" and ProductType = "3"

Windows 8
select * from Win32_OperatingSystem where Version like "6.2%" and ProductType = "1"

Windows Server 2008 R2
select * from Win32_OperatingSystem where Version like "6.1%" and ProductType = "3"

Windows Server 2008 R2 DC
select * from Win32_OperatingSystem where Version like "6.1%" and ProductType = "2"

Windows 7
select * from Win32_OperatingSystem where Version like "6.1%" and ProductType = "1"

Windows Server 2008
select * from Win32_OperatingSystem where Version like "6.0%" and ProductType = "3"

Windows Server 2008 DC
select * from Win32_OperatingSystem where Version like "6.0%" and ProductType = "2"

Windows Vista
select * from Win32_OperatingSystem where Version like "6.0%" and ProductType = "1"

Windows Server 2003
select * from Win32_OperatingSystem where Version like "5.2%" and ProductType = "3"

Windows XP
select * from Win32_OperatingSystem where (Version like "5.1%" or Version like "5.2%") and ProductType = "1"

Leave a Comment
  • Please add 3 and 1 and type the answer here:
  • Post
Wiki - Revision Comment List(Revision Comment)
Wikis - Comment List
Sort by: Published Date | Most Recent | Most Useful
Posting comments is temporarily disabled until 10:00am PST on Saturday, December 14th. Thank you for your patience.
Comments
  • Very useful for GPO

  • Something like this is even better

    select * from Win32_OperatingSystem WHERE ((Version like "6.1%" and ProductType = "1") OR (Version like "6.2%" and ProductType = "1"))

Page 1 of 1 (2 items)