Yeah, I want to setup a report within Lansweeper.
Under each asset, under Config>Network, next to the adapter in the "IP Address" column, it shows the IPV4 Address and the IPV6 Address (on machines where IPV6 is enabled). I can create a generic list of all assets (computers) that will show the IPV4 address (easy) but I want to add their IPV6 Address to that list, so that we can easily run it at any time. One of the tables in the report viewer may have exactly what I need, I just can't find it (I've checked all of the tblNetwork and tblAsset. Perhaps there is some command I need to manually add to my script?
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.State = 1