
Show o365 groups in the GAL
The default for a microsoft o365 group is to hide it from the global address list. Currently there is no way to change this in the GUI, you need to use a quick and easy powershell command.
First you need to connect to Exchange online
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
Once you connect to exchange online you just need to update the attribute hiddenfromaddresslistenabled
Set-UnifiedGroup -Identity "Group Name" -HiddenFromAddressListsEnabled $false
That’s it once the GAL is rebuilt overnight, you should start seeing it in Outlook.
More Stories
Azure AD and Windows hello for business, SSO for on-premises resources
We disabled WFB when we first rolled out autopilot because we are not ready to deploy and support passwordless at...
Recover Microsoft forms from old users
Microsoft forms are a great way to collect data from the user. However, what happens when the user leaves the...
Creating a document management system with SharePoint
Searching for documents can be a cumbersome and time-consuming task, especially if there is no proper system in place for...
Internal certificates for desktop phones
We are looking at a new cloud based phone system. Most use Poly or Yealink phones, we use 802.1x on...
Intune certificate connector
upgrading to certificate connector 6.2 that is required in Sept 2022, has broke our NDES for intune. I'm collecting all...
Microsoft ATP documentation
We've deployed ATP to our windows workstation, now I'm researching it for our MACs and IOS devices. I pushed it...