This is a PowerShell module API wrapper for the TeamViewer API.
This is a Powershell module to interact with the TeamViewer API.
This is still a work in progress and some functions have not been tested.
The 'old' module is available on PowershellGallery
Install-Module -Name PSTeamViewer
The documentation of the CmdLets can be viewed on the terminal with Get-Help and in the online documentation.
Import-Module PSTeamViewer
# This CmdLet stores your token in a variable.
# This way you don't have to supply the token parameter on every CmdLet
Initialize-TVAPI -Token 'YOUR-TEAMVIEWER-TOKEN'
# Get all users
Get-TVUser
# -or when you didn't call the Initialize-TVAPI CmdLet:
Get-TVUser -Token 'YOUR-TEAMVIEWER-TOKEN'
Example scripts can be found in the example directory.
This module is still under development but basic functionality is present and somewhat tested. You are more then welcome contribute to this module. Check out the ( online ) documentation.