‎05-07-2015 02:42 PM
Solved! Go to Solution.
‎05-08-2015 01:59 PM
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAntivirus.DisplayName As Software,
Case tblAntivirus.onAccessScanningEnabled When 1 Then 'enabled'
When 0 Then 'disabled' End As Status,
Case tblAntivirus.productUpToDate When 1 Then 'up-to-date'
When 0 Then 'out-of-date' End As VirusSignature
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblAntivirus On tblAssets.AssetID = tblAntivirus.AssetID
Where tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName,
Software
‎05-08-2015 02:08 PM
‎05-08-2015 01:59 PM
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAntivirus.DisplayName As Software,
Case tblAntivirus.onAccessScanningEnabled When 1 Then 'enabled'
When 0 Then 'disabled' End As Status,
Case tblAntivirus.productUpToDate When 1 Then 'up-to-date'
When 0 Then 'out-of-date' End As VirusSignature
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblAntivirus On tblAssets.AssetID = tblAntivirus.AssetID
Where tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName,
Software
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now