FYI for everyone, as we got a question about this: mapped drive scanning has been included in Lansweeper for years now. This forum topic is from 2009. Mapped drive information is listed in the Config\Windows\Mapped Drives section of individual computer webpages. You can also build a report based on the tblMappedDrives database table. A sample report can be seen below.
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblMappedDrives.Username,
tblMappedDrives.Driveletter,
tblMappedDrives.RemotePath,
tblMappedDrives.Lastchanged
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblMappedDrives On tblAssets.AssetID = tblMappedDrives.AssetID
Where tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName,
tblMappedDrives.Driveletter