
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2017 10:53 AM
Hello,
i scan a custom registry key to see the TeamViewer ID.
That works great.
But can i add the regkey to a custom field, to see it in the asset page?
And can i use the regkey or the custom field for a custom Action?
Thanks for your help.
André
i scan a custom registry key to see the TeamViewer ID.
That works great.
But can i add the regkey to a custom field, to see it in the asset page?
And can i use the regkey or the custom field for a custom Action?
Thanks for your help.
André
Solved! Go to Solution.
Labels:
- Labels:
-
General Discussion
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-01-2017 02:49 PM
Scanned registry values are listed in the Config\Scanned Info\Registry Keys section of Windows computer webpages. There is no built-in functionality to copy scanned registry values over to a custom field. You could write your own database script for this, based on the tblAssetCustom and tblRegistry database tables. However, we cannot provide support for writing custom scripts and would always recommend backing up your database prior to running any scripts. Backup instructions can be found in this article.
Custom fields or scanned registry values cannot currently be used as parameters in asset actions. This feature is on our customer wish list, but we do not have an estimated release date for it at this time. Currently available parameters are listed when you hit the Add Asset Action button under Configuration\Asset Pages.
Custom fields or scanned registry values cannot currently be used as parameters in asset actions. This feature is on our customer wish list, but we do not have an estimated release date for it at this time. Currently available parameters are listed when you hit the Add Asset Action button under Configuration\Asset Pages.
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-05-2017 10:08 AM
...i have a custom Action to open Teamviewer on local Clients:
"C:\Program Files (x86)\TeamViewer\TeamViewer.exe" -i {computer} -P <your password>
This works if you have allowed local lan connection on teamviewer
"C:\Program Files (x86)\TeamViewer\TeamViewer.exe" -i {computer} -P <your password>
This works if you have allowed local lan connection on teamviewer

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-05-2017 10:06 AM
Hello,
add a reg key in the Scanning Options\Registry Scanning
HKLM\SOFTWARE\WOW6432Node\TeamViewer\ClientID
and add this report to see the ID in a report
André
add a reg key in the Scanning Options\Registry Scanning
HKLM\SOFTWARE\WOW6432Node\TeamViewer\ClientID
and add this report to see the ID in a report
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Firstseen,
SubQuery1.Value As [TeamViewer ID],
tblAssets.Domain,
tblAssets.Description,
tblAssets.Username
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join TsysLastscan On tblAssets.AssetID = TsysLastscan.AssetID
Inner Join TsysWaittime On TsysWaittime.CFGCode = TsysLastscan.CFGcode
Left Join (Select Top 1000000 tblRegistry.AssetID,
tblRegistry.Regkey,
tblRegistry.Valuename,
tblRegistry.Value,
tblRegistry.Lastchanged
From tblRegistry
Where tblRegistry.Regkey Like '%SOFTWARE\Wow6432Node\Teamviewer' And
tblRegistry.Valuename = 'ClientID') SubQuery1 On SubQuery1.AssetID =
tblAssets.AssetID
Where tblAssetCustom.State = 1 And TsysWaittime.CFGname = 'registry'
Order By tblAssets.Domain,
tblAssets.AssetName
André

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-03-2017 09:40 AM
Schnepel wrote:
Hello,
i scan a custom registry key to see the TeamViewer ID.
That works great.
Mind to share? Thanks.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-01-2017 02:49 PM
Scanned registry values are listed in the Config\Scanned Info\Registry Keys section of Windows computer webpages. There is no built-in functionality to copy scanned registry values over to a custom field. You could write your own database script for this, based on the tblAssetCustom and tblRegistry database tables. However, we cannot provide support for writing custom scripts and would always recommend backing up your database prior to running any scripts. Backup instructions can be found in this article.
Custom fields or scanned registry values cannot currently be used as parameters in asset actions. This feature is on our customer wish list, but we do not have an estimated release date for it at this time. Currently available parameters are listed when you hit the Add Asset Action button under Configuration\Asset Pages.
Custom fields or scanned registry values cannot currently be used as parameters in asset actions. This feature is on our customer wish list, but we do not have an estimated release date for it at this time. Currently available parameters are listed when you hit the Add Asset Action button under Configuration\Asset Pages.
