Jump to content

Recommended Posts

Posted

If anyone is wanting to create a WMI Filter for Windows 10 LTSC2019 here is what you require:

 

Name Space

--------------

root\CIMv2

 

Query

-------

select * from Win32_OperatingSystem where Version like "10.0.17763" and ProductType="1"

Posted

@Mujja is correct. You need a query like the one below to correctly filter LTSC 2019 PCs...

 

SELECT Caption,Version FROM Win32_OperatingSystem WHERE Caption='Microsoft Windows 10 Enterprise LTSC' AND Version='10.0.17763'

 

To test the query with PowerShell...

 

Get-WmiObject -Query "SELECT Caption,Version FROM Win32_OperatingSystem WHERE Caption='Microsoft Windows 10 Enterprise LTSC' AND Version='10.0.17763'"

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...