I need a report that will display no media encryption found on all workstations. I have the report below that generates if McAfee media encryption is false but I need it to also generate if Check Point Endpoint Security - Media Encryption Client is false.
So.... If no McAfee media encryption or Checkpoint is found
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblFileVersions.Found,
tblFileVersions.FilePathfull,
tblFileVersions.FileVersion,
tblFileVersions.CompanyName,
tblFileVersions.Filesize,
tblFileVersions.Lastchanged
From tblAssets
Inner Join tblFileVersions On tblAssets.AssetID = tblFileVersions.AssetID
Where tblFileVersions.Found = 'FALSE' And tblFileVersions.FilePathfull Like
'%mfeffconsole.exe' And tblAssets.Assettype = -1
Order By tblAssets.AssetName