WMI Filters for Group Policy to manage Windows Server versions
Using the Windows Management Infrastructure, or WMI, Windows admins can create filters to apply GPOs more granular on specific versions of Windows Server. In this post I provide some basic examples. If you use PowerShell 5.1, you can verify WMI filters with Get-WmiObject in the Win32_OperatingSystem class: PS C:\> Get-WmiObject -Class Win32_OperatingSystem | Select Version, ProductType PS C:\> Get-WmiObject -Class […]