I have a custom report called "Windows Version" that finds and lists all system's version information. The SQL query is below.
Select Top 1000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.IPAddress,
tsysOS.OSname,
tblOperatingsystem.Caption As FullOSname,
tblOperatingsystem.Version,
tblAssets.Description
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Order By tblAssets.Domain,
tblAssets.AssetName
This has been working great for all systems, until Windows 10 Version 1709 came along.
The report shows all domain systems including servers and workstations. For Windows 10, it would show me 10.0.14393 for version 1511, and 10.0.10586 for 1607. But for some reason, it will not show me 10.0.15063 for 1709. The system(s) is simply not included in the report.
Lansweeper does see the 10.0.15063 version information if I go do the asset, and then to Config/Windows/OS.
Any ideas?