
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-08-2011 11:51 AM
Hi,
I need to be able to run a report in Lansweeper to identify all of the machines in the domain and what graphics card is installed.
Please can you tell me how to do this.
Thanks.
I need to be able to run a report in Lansweeper to identify all of the machines in the domain and what graphics card is installed.
Please can you tell me how to do this.
Thanks.
Labels:
- Labels:
-
Archive
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-08-2011 01:22 PM
Thanks,
Managed to get it working with the above mentioned help!
Managed to get it working with the above mentioned help!

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-08-2011 12:42 PM
This information is stored in tblVideoController. Report example:
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblVideoController.Caption,
tblVideoController.AdapterCompatibility, tblVideoController.AdapterRAM,
tblVideoController.DriverVersion, tblVideoController.VideoProcessor
From tblComputers Left Join
tblVideoController On tblComputers.Computername =
tblVideoController.Computername
Order By tblComputers.ComputerUnique
