Hello,
In our company we encrypt all laptops with trend micro encryption software.
We want know how many device don't have trend micro encryption running, I tried to make query that show list with computers that don't have encryption software running. I can make list that software well have running but not without software running (it give many same computers)
That report is for show list computers with encryption software installed (work fine)
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblComputerSystemProduct.Version As Model,
tblAutorunUni.Caption
From tblAssets
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblComputerSystemProduct On tblAssets.AssetID =
tblComputerSystemProduct.AssetID
Inner Join tblAutorun On tblAssets.AssetID = tblAutorun.AssetID
Inner Join tblAutorunUni On tblAutorunUni.AutorunUNI = tblAutorun.AutorunUNI
Where (tblAutorunUni.Caption Like 'TMFDE' Or tblAutorunUni.Caption Like
'dataarmor') And tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName
I tried to make same report but without encrpyption running but I receive all auto run software (not working)
Select Top 1000000 tblAssets.AssetID,
tsysOS.Image As icon,
tblAssets.AssetName,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblComputerSystemProduct.Version As Model,
tblAutorunUni.Caption
From tblAssets
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblComputerSystemProduct On tblAssets.AssetID =
tblComputerSystemProduct.AssetID
Inner Join tblAutorun On tblAssets.AssetID = tblAutorun.AssetID
Inner Join tblAutorunUni On tblAutorunUni.AutorunUNI = tblAutorun.AutorunUNI
Where tblAssets.AssetID Not In (Select tblAutorun.AssetID
From tblAutorun Inner Join tblAutorunUni On tblAutorunUni.AutorunUNI =
tblAutorun.AutorunUNI
Where tblAutorunUni.Caption Like 'TMFDE') And tblAssetCustom.State = 1
Order By tblAssets.AssetName
ps: I don't know also why that in some report computername are not clickable?