
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2010 04:25 PM
Could someone help me create a report that outputs the String value of a of a registry key and the hostname of the PC? I have configured to scan HKLM\System\AssetTag\ in the LanSweeper configuration manager.
location of string: HKLM\System\AssetTag\
string name: AssetTag
string value: "numeric value"
location of string: HKLM\System\AssetTag\
string name: AssetTag
string value: "numeric value"
Labels:
- Labels:
-
Archive
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2010 08:43 PM
Select tblComputers.Computername, tblRegistry.Value,
tblComputerSystemProduct.IdentifyingNumber
From tblComputers Inner Join
tblRegistry On tblComputers.Computername = tblRegistry.Computername Inner Join
tblComputerSystemProduct On tblComputers.Computername =
tblComputerSystemProduct.Computername
Where tblRegistry.Valuename = 'Assettag'

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2010 04:56 PM
could you add the Dell serice tag to the report? Thanks.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2010 04:34 PM
Select tblComputers.Computername, tblRegistry.Value
From tblComputers Inner Join
tblRegistry On tblComputers.Computername = tblRegistry.Computername
Where tblRegistry.Valuename = 'Assettag'
