What are the available cmdlets in the Microsoft Teams module?
The cmdlets explained in this section are based on Microsoft Teams module 1.0.3 and they are divided into six different groups:
- Connection cmdlets
- Get cmdlets
- Set cmdlets
- New cmdlets
- Add cmdlets
- Remove cmdlets
In the following sections, you will find the name of the cmdlet, a description of it, and all the parameters you can use. The parameters are not explained in detail as the name is self-explanatory. Each parameter is followed by the data type it receives.
Data types
To better understand the cmdlets described in this section, check the data types used by PowerShell:
String
: A string is used to represent text. In PowerShell, a string can be represented in the following format: This is a string
.
Boolean
: A Boolean is used to represent true or false. In PowerShell, Boolean values are represented in the following format: $true
or $false
.
While working with PowerShell...