Skip to content

Commit b9ea42a

Browse files
committed
update-process
1 parent 8586583 commit b9ea42a

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

articles/active-directory/reports-monitoring/recommendation-migrate-from-adal-to-msal.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: active-directory
88
ms.topic: reference
99
ms.workload: identity
1010
ms.subservice: report-monitor
11-
ms.date: 04/18/2023
11+
ms.date: 05/04/2023
1212
ms.author: sarahlipsey
1313
ms.reviewer: jamesmantu
1414

@@ -23,7 +23,7 @@ This article covers the recommendation to migrate from the Azure Active Director
2323

2424
## Description
2525

26-
The Azure Active Directory Authentication Library (ADAL) is [currently slated for end-of-support](../fundamentals/whats-new.md#adal-end-of-support-announcement) on June 30th, 2023. We recommend that customers migrate to Microsoft Authentication Libraries (MSAL), which replaces ADAL.
26+
The Azure Active Directory Authentication Library (ADAL) is [currently slated for end-of-support](../fundamentals/whats-new.md#adal-end-of-support-announcement) on June 30, 2023. We recommend that customers migrate to Microsoft Authentication Libraries (MSAL), which replaces ADAL.
2727

2828
This recommendation shows up if your tenant has applications that still use ADAL.
2929

@@ -35,9 +35,25 @@ Existing apps that use ADAL will continue to work after the end-of-support date.
3535

3636
## Action plan
3737

38-
The first step to migrating your apps from ADAL to MSAL is to identify all applications in your tenant that are currently using ADAL. You can run the following set of commands in Windows PowerShell or [view the Sign-ins Workbook in Azure AD](../develop/howto-get-list-of-all-active-directory-auth-library-apps.md).
38+
The first step to migrating your apps from ADAL to MSAL is to identify all applications in your tenant that are currently using ADAL. You can identify your apps in the Azure portal or programmatically.
3939

40-
1. Open Windows Powershell as an administrator.
40+
### Identify your apps in the Azure portal
41+
42+
There are four steps to identifying and updating your apps in the Azure portal. The following steps are covered in detail in the [List all apps using ADAL](../develop/howto-get-list-of-all-active-directory-auth-library-apps.md) article.
43+
44+
1. Send Azure AD sign-in event to Azure Monitor.
45+
1. [Access the sign-ins workbook in Azure AD.](../develop/howto-get-list-of-all-active-directory-auth-library-apps.md)
46+
1. Identify the apps that use ADAL.
47+
1. Update your code.
48+
- The steps to update your code vary depending on the type of application.
49+
- For example, the steps for .NET and Python applications have separate instructions.
50+
- For a full list of instructions for each scenario, see [How to migrate to MSAL](../develop/msal-migration.md#how-to-migrate-to-msal).
51+
52+
### Identify your apps programmatically
53+
54+
You can run the following set of commands in Windows PowerShell. These commands use the [Microsoft Graph PowerShell SDK](https://docs.microsoft.com/graph/powershell/installation) to get a list of all applications in your tenant that use ADAL.
55+
56+
1. Open Windows PowerShell as an administrator.
4157

4258
1. Connect to Microsoft Graph:
4359
- `Connect-MgGraph-Tenant <YOUR_TENANT_ID>`
@@ -48,7 +64,7 @@ The first step to migrating your apps from ADAL to MSAL is to identify all appli
4864
1. Get a list of your recommendations:
4965
- `Get-MgDirectoryRecommendation | Format-List`
5066

51-
The steps to migrate from ADAL to MSAL vary depending on the type of application. For example, the steps for .NET and Python applications have separate instructions. For a full list of instructions for each scenario, see [How to migrate to MSAL](../develop/msal-migration.md#how-to-migrate-to-msal)
67+
1. Update the code for your apps using the instructions in [How to migrate to MSAL](../develop/msal-migration.md#how-to-migrate-to-msal).
5268

5369
## Next steps
5470

0 commit comments

Comments
 (0)