cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
ivonin
Engaged Sweeper II
Are there any plans to allocate automatically into independent and linked (such as monitors) units of hard drives, video cards etc?
Thanks.
1 ACCEPTED SOLUTION
Daniel_B
Lansweeper Alumni
Creating individual asset pages for PC-internal components is not planned. Most data is scanned from WMI on the computers. With custom reports you are able to list it according to your needs. Warranty data of PC components won't currently be retrieved automatically.

You could use a report like the following example for HDD's. When running it, enter filter criteria in one ore more columns in order to look for specific information.

Select Top 1000 tblFloppy.floppyID,
tblAssets.AssetID,
tblAssets.AssetName,
tblFloppy.Name As [HDD name],
tblFloppy.Manufacturer,
tblFloppy.Model,
tblFloppy.SerialNumber,
tblFloppy.FirmwareRevision,
tblFloppy.InterfaceType,
tblFloppy.bytespersector,
tblFloppy.Partitions,
tblFloppy.Sectorspertrack,
tblFloppy.Size,
tblFloppy.Totalcylinders,
tblFloppy.Totalheads,
tblFloppy.Totalsectors,
tblFloppy.Totaltracks,
tblFloppy.TracksperCylinder,
tblFloppy.Lastchanged,
tblFloppy.Status
From tblAssets
Inner Join tblFloppy On tblAssets.AssetID = tblFloppy.AssetID
Order By tblAssets.AssetName,
[HDD name]

View solution in original post

4 REPLIES 4
ivonin
Engaged Sweeper II
Thanks.
Daniel_B
Lansweeper Alumni
Creating individual asset pages for PC-internal components is not planned. Most data is scanned from WMI on the computers. With custom reports you are able to list it according to your needs. Warranty data of PC components won't currently be retrieved automatically.

You could use a report like the following example for HDD's. When running it, enter filter criteria in one ore more columns in order to look for specific information.

Select Top 1000 tblFloppy.floppyID,
tblAssets.AssetID,
tblAssets.AssetName,
tblFloppy.Name As [HDD name],
tblFloppy.Manufacturer,
tblFloppy.Model,
tblFloppy.SerialNumber,
tblFloppy.FirmwareRevision,
tblFloppy.InterfaceType,
tblFloppy.bytespersector,
tblFloppy.Partitions,
tblFloppy.Sectorspertrack,
tblFloppy.Size,
tblFloppy.Totalcylinders,
tblFloppy.Totalheads,
tblFloppy.Totalsectors,
tblFloppy.Totaltracks,
tblFloppy.TracksperCylinder,
tblFloppy.Lastchanged,
tblFloppy.Status
From tblAssets
Inner Join tblFloppy On tblAssets.AssetID = tblFloppy.AssetID
Order By tblAssets.AssetName,
[HDD name]
ivonin
Engaged Sweeper II
I want to see any parts of computer (such as HDD) as a separate asset items. With its warranties, with ability to search by manufacturer or other attributes.

Sorry, my English not so good so I want.
Daniel_B
Lansweeper Alumni
Could you explain your request? Lansweeper scans devices connected to computers (like monitors) and automatically creates asset relationships between them. Internal hardware isn't treated as individual assets, it is always connected to the asset on which it was scanned.