Demos by atwork-it.com. Contributors: Martina Grom, Toni Pohl
Management of Office 365 and Microsoft Teams can be done in a lot of ways. The following scripts show essential PowerShell scripts you need to manage your Office 365 Groups and Microsoft Teams at scale. You must be a Global Administrator in the Microsoft 365 tenant to run all scripts. These are the updated scripts of November 2019. Use and adapt the scripts as required.
You get the latest PowerShell modules from the PowerShell Gallery or remotely:
- AzureADPreview
- MicrosoftTeams
- Remote Exchange PowerShell (Microsoft.Exchange) - see the connect script
- Office 365 Security & Compliance Center PowerShell
- Exchange PowerShell v2 modules (coming)
- Graph PowerShell (coming)
Use the following commands to install the PowerShell modules in an environment (as Administrator) or for your current user with the command as here:
Install-Module -Name MicrosoftTeams -Force -AllowClobber -scope CurrentUser
Install-Module -Name AzureADPreview -Force -AllowClobber -scope CurrentUser
# Update-Module -Name AzureADPreview -Force -AllowClobber
You can use the scripts on your computer with the required modules installed, or in Azure Automation Accounts or Azure Functions as well - in all environments, where Microsoft PowerShell is supported. To start with Azure Automation Accounts, check out Create an Azure Automation account.
The scripts show demos how to manage Office 365 Groups and Microsoft Teams in an Office 365 tenant. The scripts can be used as start for adapting your custom Office 365 tenant management. To make it easy to follow, the scripts are numbered by topic.
- To see the open-source Groups Governance Toolkit by atwork-it.com, see https://github.com/martinagrom/Ignite2018GroupsGovernanceToolkit)
- If you are interested in a ready-to-use Governance Overview solution visualized with Power-BI, check out governancetoolkit365.com. You can register for a free trial.
Alternatively, developers can use the Microsoft Graph for accomplishing similar tasks. Check the group properties with Graph Explorer aka.ms/ge, similar like here:
- https://graph.microsoft.com/v1.0/groups?$filter=startswith(displayname,'my')
- See the channels, etc. https://graph.microsoft.com/v1.0/teams/bdebef61-fc39-45fc-9e16-ca927ecb7601/channels/
- Graph API has more actions, e.g. see the channels, e.g. see the tabs... https://graph.microsoft.com/v1.0/teams/bdebef61-fc39-45fc-9e16-ca927ecb7601/channels/19:[email protected]/tabs
Have a good Office 365 Groups and Teams management with these PowerShell scripts!