cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Chicken
Engaged Sweeper
Hi, can anyone tell me how i can scan for the Teamviewer ID and put that into a report?
1 ACCEPTED SOLUTION
Hemoco
Lansweeper Alumni
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

View solution in original post

3 REPLIES 3
Hemoco
Lansweeper Alumni
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
chads
Lansweeper Alumni
For those of us SQL challenged where do i plug in the registry values?
Salamine
Engaged Sweeper III
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:

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