Hi Tyler P.
If the WYSE clients are detected as a different asset type then Windows, you can add an exclusion based on asset type to the SQL code. I'd recommend to first save a copy of the report before making any changes.
You can exclude assets based on asset type by adding the following SQL statement to the where clause.
tblAssets.AssetID NOT IN
(
SELECT tblAssets.assetid
FROM tblAssets
WHERE tblassets.Assettype = '1' --> ID number of the assettype to be excluded
)