PSTeamViewer
PSTeamViewer copied to clipboard
Powershell module for the TeamViewer API
trafficstars
TeamViewer Powershell Module
This is a PowerShell module API wrapper for the TeamViewer API.
Description
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.
Installing
The 'old' module is available on PowershellGallery
Install-Module -Name PSTeamViewer
Documentation
The documentation of the CmdLets can be viewed on the terminal with Get-Help and in the online documentation.
Examples
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.
Contributing
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.