→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
ā05-08-2023 03:55 PM - last edited on ā04-01-2024 03:32 PM by Mercedes_O
hi all,
i have have a query to list the pc and that specify a certain sowftware is not installed
can you plaese help//
NEWBIE HERE------
is used the custom field to state that its not installed..
Select Distinct Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Username,
tblAssetCustom.Custom1 As [MetaTrader 5]
case
when tblSoftwareUni.softwareName not like 'MetaTrader 5'
then tblAssetCustom.Custom1 = 'not installed'
else
end
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Where tblAssets.IPAddress Like '192.168.70.%' And tblAssetCustom.State = 1
Order By tblAssets.AssetName
ā07-03-2023 10:27 PM
You can try this report. The only thing that you will need to edit is the name of the software. In the report below replace 'Google Chrome' with the name of the software you are wanting to Query. For example if you want all the computers that don't have Microsoft Teams installed, you enter in 'Microsoft Teams'.
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblAssets.AssetID Not In (Select Top 1000000 tblSoftware.AssetID
From tblSoftware Inner Join tblSoftwareUni On tblSoftwareUni.SoftID =
tblSoftware.softID
Where tblSoftwareUni.softwareName Like '%Google Chrome%') And
tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName
ā05-11-2023 09:47 PM - edited ā05-11-2023 09:48 PM
@MC next to the built-in reports, Lansweeper has an online report library you can use.
This report might be the one you are looking for.
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now