Jump to content
  • 0

o365 Outlook in Citrix opening up but with a white box


Stuart Jewell

Question

Any assistance would be greatly appreciated, only recently when opening microsoft outlook in citrix, the authentication box is blank so the user cannot enter their password. symptoms for this happening is that the user changes their password and then they get the blank authentication box when opening outlook. I would assume that the old AD credentials get cached in the user app data folder in the UPM folder causing this to happen.

 

It has only started happning for the last couple of weeks and any user changing their password becomes affected by this.

 

does anyone have a workaround or a permanent solution to this issue?

 

image.png.fd501f73c8bd80005f1ec547ab4da35e.png

Link to comment

8 answers to this question

Recommended Posts

  • 0

Hi Stuart,

I assume this is happening on Windows Server 2019? If so, it's a known issue with the AAD Broker Plugin, which MS has not yet fixed.

The only workaround that I know if is this Powershell script, which fixes/resets  the AAD Broker Plugin during login:
 

if (-not (Get-AppxPackage Microsoft.AAD.BrokerPlugin))

{ Add-AppxPackage -Register "$env:windir\SystemApps\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\Appxmanifest.xml" -DisableDevelopmentMode -ForceApplicationShutdown }

Get-AppxPackage Microsoft.AAD.BrokerPlugin

You should configure it as a login script or an external task in WEM.

Link to comment
  • 0

You don't mention what OS you are working on here, but the most common solution seen is to add this to a PowerShell login script:

if (-not (Get-AppxPackage Microsoft.AAD.BrokerPlugin)) { Add-AppxPackage -Register "$env:windir\SystemApps\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\Appxmanifest.xml" -DisableDevelopmentMode -ForceApplicationShutdown } Get-AppxPackage Microsoft.AAD.BrokerPlugin
 

Link to comment
  • 0
1 minute ago, Dennis Parker said:

You don't mention what OS you are working on here, but the most common solution seen is to add this to a PowerShell login script:

if (-not (Get-AppxPackage Microsoft.AAD.BrokerPlugin)) { Add-AppxPackage -Register "$env:windir\SystemApps\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\Appxmanifest.xml" -DisableDevelopmentMode -ForceApplicationShutdown } Get-AppxPackage Microsoft.AAD.BrokerPlugin
 

Beat you with a few seconds ?

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...