I am new to this but I can't seem to find a way to do this.
Wondering if there is a way to add a column showing whether or not an asset has a TPM chip?
I also need to add the OS column but I think I can get that.
Thanks!
Select Top 1000000 tsysAssetTypes.AssetTypeIcon16 As icon,
tblAssets.AssetName,
tblAssetCustom.Model,
tblAssets.Domain,
tblAssets.Username,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssets.Lastseen,
tblEncryptableVolume.ProtectionStatus,
tblEncryptableVolume.DriveLetter
From tblEncryptableVolume
Inner Join tblAssets On tblEncryptableVolume.AssetId = tblAssets.AssetID
Inner Join tsysAssetTypes On tblAssets.Assettype = tsysAssetTypes.AssetType
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Where tblEncryptableVolume.ProtectionStatus = 0 And
tblEncryptableVolume.DriveLetter = 'C:'