UTS Outlook Issues
{{@9#bkmrk-callout-danger-NoResponsibilityDisclaimer-5wod5ufe}}
Introduction
UTS response plan for general Microsoft AAD Broker Plugin issues. All Windows file and registry changes are at the user profile level, which will require the user to be logged into the session host environment.
Requirements
- Configuration changes should be made under the logged-in user.
Instructions
- Connect to the user's computer to identify the remote desktop session and server they're connected to. You can make changes either from the user's remote computer or directly on UTS-AZ-RDSH1 or UTS-AZ-RDSH2 via Screen Connect. After determining which server hosts the active session, record the server, time/date, and username. Tracking these occurrences is essential.
- Sign out of all Office apps (Outlook, etc.).
- Close all Office apps (Outlook, etc.).
- Sign out of the remote desktop environment.
- Sign in to the remote desktop environment (as the user).
- In the Windows Registry, navigate to:
Computer\HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\IdentityCreate DWORD values:
DisableAADWAM = 1DisableADALatopWAMOverride = 1
Alternatively, you can run the following PowerShell snippet to do the same thing:
# Adds/sets Office identity values in the CURRENT USER registry hive (HKCU) # Run in the user context. $regPath = 'HKCU:\Software\Microsoft\Office\16.0\Common\Identity'$values = @{ DisableAADWAM = 1 DisableADALatopWAMOverride = 1 }# Ensure the key exists if (-not (Test-Path $regPath)) { New-Item -Path $regPath -Force | Out-Null } #SetValues to set $values = @{ DisableAADWAM = 1 DisableADALatopWAMOverride = 1 EnableADAL = 1 } # Create or update each value foreach ($name in $values.Keys) { New-ItemProperty -Path $regPath -Name $name -PropertyType DWord -Value $values[$name] -Force | Out-Null } #Optional:Showdisplayfinalwhat was setvalues Get-ItemProperty -Path $regPath -NameErrorAction$values.KeysSilentlyContinue | Select-Object DisableAADWAM,DisableADALatopWAMOverrideDisableADALatopWAMOverride, EnableADALWhat
DisableAADWAM=1changes:
It tells Office apps (Outlook/Word/Excel/etc.) not to use Windows Web Account Manager (WAM), which relies on the Microsoft.AAD.BrokerPlugin cache and Windows account token broker. Office will fall back to its built-in authentication path. Run the following PowerShell snippet:New-Item -Path 'HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Identity' -Force | Out-Null New-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Identity' -Name 'EnableADAL' -PropertyType DWord -Value 1 -Force | Out-NullWhat
EnableADA=1changes:
Enables Office ADAL/modern authentication behavior per user (commonly associated with Azure AD sign-in for Office).- In the Windows File Explorer, delete the contents of:
%LOCALAPPDATA%\Packages\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewyAfterwards, verify the contents have been removed.
- Sign out of the remote desktop environment.
- Sign in to the remote desktop environment (as the user).
- Sign in to Outlook.
- Report or document any errors to the Integrations Team and Adam.
Troubleshooting
N/A
Sources
KB Change/Issue Log
yyyy/mm/dd - Title
Issue
N/A
Solution
N/A
Sources
- N/A
KB Meta
|
Page Includes |
@9#bkmrk-callout-danger-NoResponsibilityDisclaimer-5wod5ufe |