cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Tczadzeck
Engaged Sweeper II
Good Afternoon,

I am having some trouble getting a report to produce that will show the following information:

Software -Foxit Phantom PDF/Foxit PhantomPDF Standard
MAC Address
Last User Logged In


Currently we've attempted to solve this problem by editing the current Adobe report, entering Foxit PhantomPDF/Foxit PhantomPDF Standard but that did not work. Although we can get it to pull data with Foxit Software Inc., which is the companies name but this pulls all versions including Foxit Reader.

Thoughts?

Tim
1 REPLY 1
David_G
Lansweeper Employee
Lansweeper Employee
You can find a custom sample report below which will provide you with some general asset information, the last logged in user (username column), the MAC address and installed software information for software that starts with Foxit Phantom. A quick sidenote, the last logged on user in Lansweeper is the last logged on user during the last scan. Instructions for adding this report to your Lansweeper installation can be found here. If you are interested in building or modifying reports, we do recommend:
  • Reviewing some SQL tutorials, as the Lansweeper report builder is a standard SQL editor. If you know SQL, you know how to build Lansweeper reports as well. This seems like a good tutorial.
  • Making use of our database dictionary, which explains in great detail what each database table and field stores. More information on the dictionary can be found here.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssets.Mac As MAC,
tblAssets.Lasttried,
tblSoftwareUni.softwareName As Software,
tblSoftware.softwareVersion As Version,
tblSoftwareUni.SoftwarePublisher As Publisher
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Inner Join tblState On tblState.State = tblAssetCustom.State
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Left Outer Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblSoftwareUni.softwareName Like 'Foxit Phantom%' And tblState.Statename =
'Active'
Order By tblAssets.Domain,
tblAssets.AssetName,
Software