How to enable ADAL for Office 2013 on Windows Devices?

for Microsoft 365

Question:

How to enable ADAL (Modern Authentication) for Office 2013 on Windows devices?

Answer:

While Office 2016 client apps automatically have ADAL turned on, for the devices that are installed with Office 2013 client apps, the following procedures are required to turn on ADAL:

1) Enable Modern Authentication for Office 2013 on Windows devices

2) Enable Exchange Online for modern authentication

3) Log in Office 2013 with ADAL

1) Enable Modern Authentication for Office 2013 on Windows devices

Step 1 - Download and Run the Batch File Uploaded on your Windows device: EnableModernAuth.bat

Screenshot__20_.png

Step 2 - Restart the Windows Machine for the change to take effect. 

2) Enable Exchange Online for modern authentication

Step 1 Run Windows PowerShell as Administrator.

Step 2 Run this command to Enable Windows PowerShell to run signed scripts:

Set-ExecutionPolicy RemoteSigned

Step 3 Run this command to log in with your Microsoft 365 Administrator account with dialog box:

$UserCredential = Get-Credential

Step 4 Run this command to configure the session:

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection

Step 5 Run this command to create the session:

Import-PSSession $Session

Step 6 Run this command to turn on modern authentication for Exchange Online:

Set-OrganizationConfig -OAuth2ClientProfileEnabled:$true

Step 7 Run the following command to verify that change was successful:

Get-OrganizationConfig | ft name, OAuth*

Step 8 Run this command to disconnect the remote PowerShell session:

Remove-PSSession $Session

For more detailed information please visit : 
Using Microsoft 365 modern authentication with Office clients

3) Log in Office 2013 with ADAL

Step 1 - First enter your Microsoft 365 account email address.

Screenshot__22_.png

Step 2 - Just like logging in with the browser, a dialog box with HENNGE Access Control Login Page will appear. Please proceed to logging in with your HENNGE Access Control ID and Password.

login3.png

          
Was this article helpful?