
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2012 06:15 PM
Hi, can anyone tell me how i can scan for the Teamviewer ID and put that into a report?
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2012 01:43 PM
Replace "YourValue1" and "YourValue2" in the report below with the names of the registry values you would like to report on. More info on registry scanning can be found on page 89 and beyond of our online documentation.
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Firstseen, tblComputers.Lastseen, tblComputers.LastknownIP,
tblRegistry.Regkey, tblRegistry.Valuename, tblRegistry.Value
From tblComputers Inner Join
tblRegistry On tblComputers.Computername = tblRegistry.Computername
Where (tblRegistry.Valuename = 'YourValue1') Or
(tblRegistry.Valuename = 'YourValue2')
Order By tblComputers.ComputerUnique, tblRegistry.Regkey
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2012 01:43 PM
Replace "YourValue1" and "YourValue2" in the report below with the names of the registry values you would like to report on. More info on registry scanning can be found on page 89 and beyond of our online documentation.
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Firstseen, tblComputers.Lastseen, tblComputers.LastknownIP,
tblRegistry.Regkey, tblRegistry.Valuename, tblRegistry.Value
From tblComputers Inner Join
tblRegistry On tblComputers.Computername = tblRegistry.Computername
Where (tblRegistry.Valuename = 'YourValue1') Or
(tblRegistry.Valuename = 'YourValue2')
Order By tblComputers.ComputerUnique, tblRegistry.Regkey

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2012 09:21 PM
For those of us SQL challenged where do i plug in the registry values?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2012 09:03 PM
Find the registry key. Scan it. Place it into a report.
Google tells me that these are the registry keys, I don't use TeamViewer, but I trust the internet.
Registry Keys - Replace 'Version7' with version number.
for 64 bit Windows 7 I found the key here…
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\TeamViewer\Version7\ClientID
for 32 bit Windows 7/XP the keys are here…
HKEY_LOCAL_MACHINE\SOFTWARE\TeamViewer\Version7\ClientID
Report would look something like this:
-Sal
Google tells me that these are the registry keys, I don't use TeamViewer, but I trust the internet.
Registry Keys - Replace 'Version7' with version number.
for 64 bit Windows 7 I found the key here…
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\TeamViewer\Version7\ClientID
for 32 bit Windows 7/XP the keys are here…
HKEY_LOCAL_MACHINE\SOFTWARE\TeamViewer\Version7\ClientID
Report would look something like this:
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
tblADusers.Displayname, tblRegistry.Valuename, tblRegistry.Value
From tblComputers Inner Join
tblADusers On tblComputers.Username = tblADusers.Username Inner Join
tblCompCustom On tblComputers.Computername = tblCompCustom.Computername
Inner Join
tblRegistry On tblComputers.Computername = tblRegistry.Computername
Order By tblComputers.ComputerUnique
-Sal
