Forum Discussion
TheHailender
Jul 24, 2019Copper Contributor
Hide the 'works with' information on the Office 365 profile card
Hello, Is it possible to hide the works with Information in the organization-tab on the Office 365 user profile cards? And knows somebody how the works with Information will generated? FYI: I disa...
- Jul 24, 2019AFAIK, there is not currently a way to customize the people card in Office 365
RafaelVarela
Jan 12, 2022Copper Contributor
I tried to disable de People Insights for one group with no success, both in PowerShell and in Graph Explorer.
In Graph Explorer the response of the API allways return a NULL un the "disabledForGroup" field.
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#organization('8f0d452c-************')/settings/peopleInsights/$entity",
"isEnabledInOrganization": true,
"disabledForGroup": null
}
In Powershell i don't get any errrors, but it does nothing:
PS C:\> Connect-MgGraph -Scopes "User.ReadWrite","User.ReadWrite.All"
Welcome To Microsoft Graph!
PS C:\> Update-MgOrganizationSettingPersonInsight -OrganizationId 8f0d452c-******** -DisabledForGroup 0f670099-********
PS C:\> Get-MgOrganizationSettingPersonInsight -OrganizationId 8f0d452c-********
Id DisabledForGroup IsEnabledInOrganization
-- ---------------- -----------------------
True
In Graph Explorer the response of the API allways return a NULL un the "disabledForGroup" field.
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#organization('8f0d452c-************')/settings/peopleInsights/$entity",
"isEnabledInOrganization": true,
"disabledForGroup": null
}
In Powershell i don't get any errrors, but it does nothing:
PS C:\> Connect-MgGraph -Scopes "User.ReadWrite","User.ReadWrite.All"
Welcome To Microsoft Graph!
PS C:\> Update-MgOrganizationSettingPersonInsight -OrganizationId 8f0d452c-******** -DisabledForGroup 0f670099-********
PS C:\> Get-MgOrganizationSettingPersonInsight -OrganizationId 8f0d452c-********
Id DisabledForGroup IsEnabledInOrganization
-- ---------------- -----------------------
True
PeterNjorogeMS
Microsoft
Jan 13, 2022RafaelVarela currently the controls are available in graph explorer only.
When disabling for the group you will need to provide the group ID. See the sample here from the documentation:
Example two: Update insights - Microsoft Graph beta | Microsoft Docs
- RafaelVarelaJan 13, 2022Copper Contributor
PeterNjorogeMS Thank you for your message.
I'm aware of that part of the documentation and I did provided the group ID in my test.
What you see in my previous message is a copy of the response of the server, not my request. The Organization and Group Id are ofuscated for the sake of security.
Here you have an screenshot with the request and the response:
- PeterNjorogeMSJan 13, 2022
Microsoft
Got it, now this takes a while before the changes reflect. Let's give it 24 hours then we can circle back and review it.- RafaelVarelaJan 14, 2022Copper Contributor
PeterNjorogeMSYeah, right, I should have known that it can take up to 24 hours. I forgot that part of the documentation.
I have just checked the status and it stills shows no changes. Any thoughts?