Forum Discussion
Logo/Icon showing up in Teams, but not SharePoint
- Jul 22, 2020
Ok, now this may be real basic stuff for some but some I hope this helps! 🙂
Ok to make that command work, first you need to make sure that you have the PowerShell modules for Teams and Exchange Online installed.
Install-Module -Name MicrosoftTeams Install-Module -Name ExchangeOnlineManagement
Then from there you just need to run the command mentioned above ...
Set-UnifiedGroup -Identity <TeamName> -HiddenFromExchangeClientsEnabled:$false
Now you should be able to update the SharePoint Online icon to match what you used for your Microsoft Team or Microsoft 365 Group.
Couple of important things I learned in going through this
- If you hide your group again (because you don't want it showing in Outlook), you don't have to unhide it to update the SharePoint Online icon every time. Once you can update it, you can update it again any time you want.
- The icons have to be updated in 2 places if you want a consistent design across all of your Microsoft 365 Group applications. Those locations are Microsoft Teams or Microsoft Outlook AND SharePoint Online
I hope that this information can help someone with the same issue. I have no idea why this works the way it does, but at least I know how to fix it.
Stay safe!
Ok, now this may be real basic stuff for some but some I hope this helps! 🙂
Ok to make that command work, first you need to make sure that you have the PowerShell modules for Teams and Exchange Online installed.
Install-Module -Name MicrosoftTeams
Install-Module -Name ExchangeOnlineManagement
Then from there you just need to run the command mentioned above ...
Set-UnifiedGroup -Identity <TeamName> -HiddenFromExchangeClientsEnabled:$false
Now you should be able to update the SharePoint Online icon to match what you used for your Microsoft Team or Microsoft 365 Group.
Couple of important things I learned in going through this
- If you hide your group again (because you don't want it showing in Outlook), you don't have to unhide it to update the SharePoint Online icon every time. Once you can update it, you can update it again any time you want.
- The icons have to be updated in 2 places if you want a consistent design across all of your Microsoft 365 Group applications. Those locations are Microsoft Teams or Microsoft Outlook AND SharePoint Online
I hope that this information can help someone with the same issue. I have no idea why this works the way it does, but at least I know how to fix it.
Stay safe!