This message was deleted.
# microsoft-365
s
This message was deleted.
k
That's a known issue with RDS Remote Apps and Citrix Published Apps. Citrix made their own fix for it though. Before the fix, I used this workaround: 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
Put this bit of code in as a login script, to run in user context, that should fix the activation issue
a
Thanks for the reply. I tried that but it didn't seem to work for me. I verified that the package was installed and available, but its still the same. Maybe its a bit different with VMware compared to Citrix?
k
No, this fix is for Windows, the issue is also with "pure" RDS Remote Apps.
Citrix has their own fix called ShellBridge
a
I figured it out. Thought the script was running with user context but it wasn't. Fixed that and it started working perfectly. Thanks again!
👍 1
k
Great, nice to know that it still work. Unfortunate that it's still necessary.