Depending upon your settings and circumstances, there's a chance that groups created in Microsoft Teams might play so well together.    Specifically, your team might not be available for email.  As it turns out, the teams ARE available... they're just hidden.     and a little PowerShell is enough to coax them out.     Our Example  In our example, the site is called Application Redevelopment and you can see from the screenshot that it appears in teams but not in outlook.       The PowerShell Commands   Session Setup  The setup is as per usual;  Start PowerShell in Administrator Mode.   Set-ExecutionPolicy RemoteSigned   Press Y and Enter.   $UserCredential = Get-Credential   Enter your user name and password.   Create the session.   $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection   and activate it.   Import-PSSessio...