Skip to content

Commit 98ee5f4

Browse files
updates
1 parent 7436c97 commit 98ee5f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

concepts/security-ediscovery-appauthsetup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ App-only access streamlines the integration of eDiscovery services with other ap
2626

2727
## Implementing app-only access
2828

29-
Implementing app-only access involves registering the app in Azure, creating client secret/certificates, assigning API permissions, setting up a service principal, and then using app-only access to call Microsoft Graph APIs. The following steps explain how to implement app-only access.
29+
Implementing app-only access involves registering the app in Azure portal, creating client secret/certificates, assigning API permissions, setting up a service principal, and then using app-only access to call Microsoft Graph APIs. The following steps explain how to implement app-only access.
3030

3131
### Step 1: Register a new application in Azure
3232

3333
1. To begin, navigate to the Azure portal and sign in with your Microsoft account.
3434

3535
2. Access the **Microsoft Entra ID** section on the left side.
3636

37-
3. Go to **App registrations**, select **New registration**.
37+
3. Expand **App registrations** on the left side of the Azure portal and select **New registration**.
3838

3939
4. Provide a meaningful name for your application and select register to create your new app registration. This process will generate essential details such as the Application (client) ID and Directory (tenant) ID, which are crucial for future steps.
4040

@@ -81,7 +81,7 @@ New-ServicePrincipal -AppId "0969a7fc-3e17-424f-92a4-54e583b2142a" -ObjectId "a8
8181
Get-ServicePrincipal
8282
```
8383

84-
4. Add service principal object id to the eDiscoveryManager role using [Add-RoleGroupMember](/powershell/module/exchange/add-rolegroupmember) cmdlet and verify using [Get-RoleGroupMember](/powershell/module/exchange/get-rolegroupmember) cmdlet.
84+
4. Add the Service Principal Object ID to the eDiscoveryManager role using [Add-RoleGroupMember](/powershell/module/exchange/add-rolegroupmember) cmdlet and verify using [Get-RoleGroupMember](/powershell/module/exchange/get-rolegroupmember) cmdlet.
8585

8686
Run the following cmdlet, replacing **Member** argument.
8787

@@ -90,7 +90,7 @@ Add-RoleGroupMember -Identity "eDiscoveryManager" -Member "a8c1aaec-d18a-47fa-ae
9090
Get-RoleGroupMember -Identity "eDiscoveryManager"
9191
```
9292

93-
5. Add service principal object id to the eDiscoveryAdministrator role using [Add-eDiscoveryCaseAdmin](/powershell/module/exchange/add-ediscoverycaseadmin) cmdlet and verify using [Get-eDiscoveryCaseAdmin](/powershell/module/exchange/get-ediscoverycaseadmin) cmdlet.
93+
5. Add the Service Principal Object ID to the eDiscoveryAdministrator role using [Add-eDiscoveryCaseAdmin](/powershell/module/exchange/add-ediscoverycaseadmin) cmdlet and verify using [Get-eDiscoveryCaseAdmin](/powershell/module/exchange/get-ediscoverycaseadmin) cmdlet.
9494

9595
Run the following cmdlet, replacing the **User** argument.
9696

0 commit comments

Comments
 (0)