Skip to content

Commit 10262b5

Browse files
Merge pull request #268882 from brpiment/patch-1
Update manage-teams-identity.md
2 parents f6dc5ac + e347275 commit 10262b5

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

articles/communication-services/quickstarts/manage-teams-identity.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,18 +109,22 @@ You can see that the status of the Communication Services Teams.ManageCalls and
109109

110110
If you run into the issue "The app is trying to access a service '1fd5118e-2576-4263-8130-9503064c837a'(Azure Communication Services) that your organization '{GUID}' lacks a service principal for. Contact your IT Admin to review the configuration of your service subscriptions or consent to the application to create the required service principal." your Microsoft Entra tenant lacks a service principal for the Azure Communication Services application. To fix this issue, use PowerShell as a Microsoft Entra administrator to connect to your tenant. Replace `Tenant_ID` with an ID of your Microsoft Entra tenancy.
111111

112+
You will require **Application.ReadWrite.All** as shown bellow
113+
![image](https://github.com/brpiment/azure-docs-pr/assets/67699415/c53459fa-d64a-4ef2-8737-b75130fbc398)
114+
115+
112116
```script
113-
Connect-AzureAD -TenantId "Tenant_ID"
117+
Connect-MgGraph -TenantId "Tenant_ID" -Scopes Application.ReadWrite.All
114118
```
115-
If the command is not found, start PowerShell as an administrator and install the Microsoft Entra ID package.
119+
If the command is not found, start PowerShell as an administrator and install the Microsoft Graph package.
116120

117121
```script
118-
Install-Module AzureAD
122+
Install-Module Microsoft.Graph
119123
```
120124
Then execute the following command to add a service principal to your tenant. Do not modify the GUID of the App ID.
121125

122126
```script
123-
New-AzureADServicePrincipal -AppId "1fd5118e-2576-4263-8130-9503064c837a"
127+
New-MgServicePrincipal -AppId "1fd5118e-2576-4263-8130-9503064c837a"
124128
```
125129

126130

0 commit comments

Comments
 (0)