Teams Powershell modules
Teams Module Install
Install-Module -Name MicrosoftTeams
Connect to Teams
Now when you have module you can connect to Teams or Skype Online as SkypeOnline module has been included with recent Teams module. To connet use below commands
### Teams Module
Import-Module -Name MicrosoftTeams
$TeamsSession = New-CsOnlineSession
Import-PSSession $TeamsSession -AllowClobber
EDIT:
Emable-CsOnlineSessionForReconnection by Andrés Gorzelany
Archived:
This is legacy way of connecting replaced by above.
### Skype Online Module
Import-Module SkypeOnlineConnector
$sfbSession = New-CsOnlineSession
Import-PSSession $sfbSession -AllowClobber
Enable-CsOnlineSessionForReconnection
https://docs.microsoft.com/en-us/microsoftteams/teams-powershell-install
### Teams cmdlt
https://docs.microsoft.com/en-us/powershell/teams/?view=teams-ps
### Teams Powershell Overview
https://docs.microsoft.com/en-us/MicrosoftTeams/teams-powershell-overview
## Skype for Business Online
https://www.microsoft.com/en-us/download/details.aspx?id=39366