→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
‎02-04-2016 09:22 PM
Solved! Go to Solution.
‎02-05-2016 04:33 PM
When Lansweeper scans a Windows computer, it automatically retrieves information on the printers installed on the computer. You can find this information in the Config\Devices\Printer section of individual computer webpages. We included a sample report below as well that includes all of the installed printers, except for "virtual" ones like PDF printers. You can filter one or more of the columns within the report results, e.g. to list computers with a specific printer installed. Keep in mind that only printers installed for the computer as a whole are scanned. Printers installed for individual users are not. There is also a built-in report in the Reports tab "Printer: Shared printers" that you can use to list shared printers specifically.Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblPrinters.Caption As Printer,
tblPrinters.
Capabilitydescriptions,
tblPrinters.Comment,
tblPrinters.EnableBIDI,
tblPrinters.Horizontalresolution,
tblPrinters.Local,
tblPrinters.Location,
tblPrinters.Network,
tblPrinters.Portname,
tblPrinters.Printjobdatatype,
tblPrinters.Printprocessor,
tblPrinters.Sharename,
tblPrinters.Status,
tblPrinters.verticalresolution,
tblPrinters.Lastchanged
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblPrinters On tblAssets.AssetID = tblPrinters.AssetID
Where tblPrinters.Printprocessor Not Like '%winprint%' And
tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName,
Printer
‎02-05-2016 04:33 PM
When Lansweeper scans a Windows computer, it automatically retrieves information on the printers installed on the computer. You can find this information in the Config\Devices\Printer section of individual computer webpages. We included a sample report below as well that includes all of the installed printers, except for "virtual" ones like PDF printers. You can filter one or more of the columns within the report results, e.g. to list computers with a specific printer installed. Keep in mind that only printers installed for the computer as a whole are scanned. Printers installed for individual users are not. There is also a built-in report in the Reports tab "Printer: Shared printers" that you can use to list shared printers specifically.Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblPrinters.Caption As Printer,
tblPrinters.
Capabilitydescriptions,
tblPrinters.Comment,
tblPrinters.EnableBIDI,
tblPrinters.Horizontalresolution,
tblPrinters.Local,
tblPrinters.Location,
tblPrinters.Network,
tblPrinters.Portname,
tblPrinters.Printjobdatatype,
tblPrinters.Printprocessor,
tblPrinters.Sharename,
tblPrinters.Status,
tblPrinters.verticalresolution,
tblPrinters.Lastchanged
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblPrinters On tblAssets.AssetID = tblPrinters.AssetID
Where tblPrinters.Printprocessor Not Like '%winprint%' And
tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName,
Printer
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now