Hello,
I am not sure if this is possible due to the way the data is in the DB, but i am looking for a report that will help with replacing computers. The plan is to filter on computer name and it show in 1 list: Map network drives + lettters, Printers and list of installed Software.
I have a start with the below but it shows duplicate data per network drive.
Select Top 2000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username As Username,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblmappeddrives.Driveletter,
tblmappeddrives.RemotePath,
tblmappeddrives.Username As [Map Drive Username],
tblAssets.Lastseen,
tsysIPLocations.IPLocation,
tblAssets.IPAddress,
tblPrinters.Caption,
tblPrinters.Portname,
tblPrinters.Location
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblmappeddrives On tblAssets.AssetID = tblmappeddrives.AssetID
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Inner Join tblPrinters On tblAssets.AssetID = tblPrinters.AssetID
Order By tblAssets.AssetName