I need the entity of the user profile of each member of the organization to be completed, since I need to complete the fields of the department and position, is there any way to achieve this? I have a base in sql with that information but I don't know how to complete the office 365 user entity. Can you tell me the steps to follow and what I need to do this
Solved! Go to Solution.
Hi @Anonymous ,
Do you want to update other users' office365 profile?
I'm afraid it's not supported in PowerApps currently.
For now, using Office365 Users connector, you could only update your own profile.
This connector hasn't supported the function that you want for now.
Here's a doc about this connector for you reference:
https://docs.microsoft.com/en-us/connectors/office365users/
Here are two alternative ways to achieve this:
1)create custom connector
Here's a doc about how to make this for your reference:
https://docs.microsoft.com/en-us/connectors/custom-connectors/define-blank
2)use powershell
Actually, powershell has functions to update other users' profile directly.
Here's an example:
Get-AzureADUser | Where {$_.Department -eq "Accounting"} | Set-AzureADUser -UsageLocation "FR"
Here's a doc about how to use this for your reference:
Please notice that you need to be Office 365 global admins to use powershell to manage office365.
Best regards,
Hi @Anonymous ,
Do you want to update other users' office365 profile?
I'm afraid it's not supported in PowerApps currently.
For now, using Office365 Users connector, you could only update your own profile.
This connector hasn't supported the function that you want for now.
Here's a doc about this connector for you reference:
https://docs.microsoft.com/en-us/connectors/office365users/
Here are two alternative ways to achieve this:
1)create custom connector
Here's a doc about how to make this for your reference:
https://docs.microsoft.com/en-us/connectors/custom-connectors/define-blank
2)use powershell
Actually, powershell has functions to update other users' profile directly.
Here's an example:
Get-AzureADUser | Where {$_.Department -eq "Accounting"} | Set-AzureADUser -UsageLocation "FR"
Here's a doc about how to use this for your reference:
Please notice that you need to be Office 365 global admins to use powershell to manage office365.
Best regards,
User | Count |
---|---|
262 | |
110 | |
98 | |
54 | |
39 |