There is currently no built-in mass export function. If you have a software or a script which automatically can create PDFs from URLs inside your intranet, you only need to provide the URLs to it in the following format:
https://[YourLansweeperServer]/reportdet.aspx?AssetID=[AssetID]&print=1In order to list AssetIDs of assets belonging to a specific group, use the following kind of report. Be attentive to give an alias to
tblAssets.AssetID as otherwise it wouldn't be displayed in your report.
Select Top 1000000 tblAssets.AssetID As [Asset ID],
tblAssets.AssetName,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblAssetGroupLink On tblAssets.AssetID = tblAssetGroupLink.AssetID
Inner Join tblAssetGroups On tblAssetGroups.AssetGroupID =
tblAssetGroupLink.AssetGroupID
Where tblAssetCustom.State = 1 And tblAssetGroups.AssetGroup Like 'Your Asset group'