I'm also having problems with creating a report to filter out the Creators Update. The following query works fine for Windows 10 to filter out 1507, 1511, and 1607, but will not produce any results for 1703. I have an asset with 1703 installed and scanned into Lansweeper, and the build reports correctly on the asset's page, but the query never sees it.
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tsysOS.OSname As OS,
tblOperatingsystem.Caption,
tblOperatingsystem.Version,
tblAssets.SP As SP,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.IPAddress,
tblAssets.Description,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.Location,
tsysIPLocations.IPLocation,
tblAssets.Firstseen,
tblAssets.Lastseen
From tblAssets
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Left Join tsysIPLocations On tblAssets.LocationID = tsysIPLocations.LocationID
Where tblOperatingsystem.Version Like '10.0.15063'
Order By OS,
tblAssets.AssetName,
tblOperatingsystem.Caption