Giter Site home page Giter Site logo

powershell-teamviewer's Introduction

PowerShell TeamViewer

Interact with the TeamViewer API using PowerShell.

Getting Started

cd ~\Downloads
git clone https://github.com/devynspencer/powershell-teamviewer

$UserModulesPath = ($env:PSModulePath -split ";")[0]
Copy-Item -Recurse "~\Downloads\powershell-teamviewer\TeamViewer" "$UserModulesPath\TeamViewer"
Import-Module -Force -Verbose TeamViewer

Dependencies

This project uses the Microsoft.PowerShell.SecretStore module to simplify management of API tokens and other secrets. This requires the installation of a few dependencies:

Install-Module -Name "Microsoft.PowerShell.SecretManagement", "Microsoft.PowerShell.SecretStore"

Secret Store

Setup a new secret store to hold TeamViewer passwords, API tokens, and other secrets:

Register-SecretVault -ModuleName Microsoft.PowerShell.SecretStore -Name TeamViewer -Verbose
Set-SecretStoreConfiguration -Authentication Password -Scope CurrentUser -Interaction None -Confirm:$false

API Token

Generate a new API script token from your TeamViewer profile, then add it to the secret store:

Unlock-SecretStore # Will prompt for password set in previous step

$ApiToken = "ABCDEFG1234567890HIJKLMNOPQ" # Replace with a real token, obviously
Set-Secret -Vault TeamViewer -Name TEAMVIEWER_API_TOKEN -Secret $ApiToken

Examples

Get TeamViewer devices, and filter based on specific criteria:

Get-TeamViewerDevice -GroupName "Developer Workstations"

# Alternatively
Get-TeamViewerGroupMember -Identity "Developer Workstations"

Rename a device:

Set-TeamViewerDevice -Id 1095514322 -Name "PRDWRK01"

Update group memberships:

Add-TeamViewerGroupMember -Identity "Developer Workstations" -Members "PRDWRK01"

# Alternatively
Set-TeamViewerDevice -Id 1095514322 -Group 1234567

See the built-in help for information on each function:

help Get-TeamViewerDevice -Detailed

powershell-teamviewer's People

Contributors

devynspencer avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.