Skip to content

Commit 7886c89

Browse files
authored
Update manage-teams-identity.md
updated references from Azure AD to Microsoft Graph
1 parent 03996bb commit 7886c89

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,17 +110,17 @@ You can see that the status of the Communication Services Teams.ManageCalls and
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

112112
```script
113-
Connect-AzureAD -TenantId "Tenant_ID"
113+
Connect-MgGraph -ClientId "1fd5118e-2576-4263-8130-9503064c837a" -TenantId "Tenant_ID"
114114
```
115-
If the command is not found, start PowerShell as an administrator and install the Microsoft Entra ID package.
115+
If the command is not found, start PowerShell as an administrator and install the Microsoft Graph package.
116116

117117
```script
118-
Install-Module AzureAD
118+
Install-Module Microsoft.Graph
119119
```
120120
Then execute the following command to add a service principal to your tenant. Do not modify the GUID of the App ID.
121121

122122
```script
123-
New-AzureADServicePrincipal -AppId "1fd5118e-2576-4263-8130-9503064c837a"
123+
New-MgServicePrincipal -AppId "1fd5118e-2576-4263-8130-9503064c837a"
124124
```
125125

126126

0 commit comments

Comments
 (0)