Hello,
Is it possible to export a list of all the devices contained within the "Computers & Contacts" section thorugh either the Web Managment console or The Teamviewer managment program on windows?
Cheers guys
Hello @Tigerpie_VS and @Kfix,
Currently, it is not possible to export the computers via a function of the Management Console.
However, it is possible to do it using the TeamViewer API. Please find more information regarding this here:
1) Click on your Username on the top right corner and click Edit Profile
2) Go to Apps and click Create script token
3) Give the token a name and select the parameter Computers & Contacts with the setting View entries and click Save.
4) This will generate the token. Please copy this token and save it for later.
1) Open PowerShell ISE as administrator and type the following code and press Enter
$jsonFile = "YOURPATH\Computers export.json" $csvFile = "YOURPATH\Computers export.csv" $tvAccessToken = read-host "Please type your token " $devicesResponse = Invoke-RestMethod -Uri "https://webapi.teamviewer.com/api/v1/devices?full_list=true" -Method Get -Headers @{authorization = "Bearer $tvAccessToken"} $devicesResponse.devices | ConvertTo-Json | Out-File $jsonFile $devicesResponse.devices | Export-Csv -Path $csvFile -Delimiter ',' -NoTypeInformation
📌Note: Don't forget to replace YOURPATH with the path you want the export to be generated to.
2) It will ask you to enter your token. Please paste your token you have saved earlier and press Enter
3) You are done. The script will automatically generate the export in the folder you have selected as [YOURPATH].
What can I export? At the moment I am limited to :
"remotecontrol_id":
"device_id": "
"alias":
"groupid":
"online_state":
"assigned_to":
"teamviewer_id":"
I would like to export more things about my devices. For example, Which version of teamviewer they are running, how long have they been online. etc.
Thanks
Indeed, the export is limited to the parameters you have mentioned.
There are currently no further parameters available such as the TeamViewer version, how long they have been online etc...