
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-22-2014 06:15 AM
Hello,
I'm brand spanking new to this awesome LANsweeper app.
Can someone create me a simple network printer report?
I need it to display all network printers with the below 2 fields.
- Printer Name
- MAC Address
I can not use the stock printer reports as I need to add a few custom fields.
Thanks
I'm brand spanking new to this awesome LANsweeper app.
Can someone create me a simple network printer report?
I need it to display all network printers with the below 2 fields.
- Printer Name
- MAC Address
I can not use the stock printer reports as I need to add a few custom fields.
Thanks
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-22-2014 05:40 PM
I figured it out..
AssetName - IPAddress - Printedpages - Manufacturer - Model - Location - Mac
AssetName - IPAddress - Printedpages - Manufacturer - Model - Location - Mac
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssetCustom.Printedpages,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.Location,
tblAssets.Mac
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tsysAssetTypes.AssetTypename = 'printer' And tblAssetCustom.State = 1
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-22-2014 05:40 PM
I figured it out..
AssetName - IPAddress - Printedpages - Manufacturer - Model - Location - Mac
AssetName - IPAddress - Printedpages - Manufacturer - Model - Location - Mac
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssetCustom.Printedpages,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.Location,
tblAssets.Mac
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tsysAssetTypes.AssetTypename = 'printer' And tblAssetCustom.State = 1
