For the complete documentation index, see llms.txt. This page is also available as Markdown.

Extract TeamViewer ID

You can use Powershell to extract the TeamViewer ID from a session. Here is a script to extract the TeamViewer ID from a session:

$sessions = Get-RDM-Session | where {$_.Session.Kind -eq "TeamViewer"} 
$sessions[0].Session.GetProperty("TeamViewer", "ID") 

Last updated

Was this helpful?