Forum Discussion
Outlook login issues with WVD - FSLogix
- Nov 22, 2019
DAsnow this scenario isn't ringing a bell in terms of a common scenario, probably best to contact support on this.
We dont use seamless sso/adsync or adfs becausse there are users from many different 365 tenants. Open case with Ms Support, but for now they just messing around with the wrong things.
carliv if you are getting AADBroker plug in errors in the event viewer can you try a couple things to help identify the issue?
1. From PowerShell check if AADBroker plug in is registered by running this command, note this is a per user install so you will need to have user experiencing this issue try this:
Get-AppxPackage Microsoft.AAD.BrokerPlugin
2. If it returns no output, issue is the AADBroker plug in isn't registered. Now see if you can force registration, again from user session:
Add-AppxPackage -Register "C:\Windows\SystemApps\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\Appxmanifest.xml" -DisableDevelopmentMode -ForceApplicationShutdown
3. I suspect when you run the second command it may hang and never progress past "Initializing"
4. If #3 is true, then the AppXSvc is having an issue. To resolve you'll need to do the following as admin on the VM experiencing the issue:
- Go to TaskManager>Services, find AppxSvc, note processID
- Rt. Click AppxSvc> Go to Details>End Task
- Once AppxSvc is in stopped state, again from TaskManager>Services>AppxSvc Rt.Click>Start
5. Now have user run the registration command again:
Add-AppxPackage -Register "C:\Windows\SystemApps\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\Appxmanifest.xml" -DisableDevelopmentMode -ForceApplicationShutdown
If it succeeds we know the AppxSvc was blocking. This should at least workaround the issue. Let me know if this works and the OS version of the VM you are experiencing the issue on.