Say I needed a WQL query to find clients running Windows 8 or greater:
WQL query Windows 8 or Greater
SELECT Version FROM Win32_OperatingSystem WHERE Version >= '6.2'
Wouldn't you run the risk of this also including Versions 6.10 (assuming that in the future there will be a 6.10 before a 7.0 version of Windows)? Isn't this just a simple string compare operation?
What is the cleanest way to write this query to get the 'expected' results.