Forum Discussion
Jonny5
Mar 11, 2020Copper Contributor
EDGE issues within WVD
Pilot users are having an issue with the EDGE browser within WVD, when accessing sites that leverage ADFS. Users can connect to one host, one day and Edge will work as expected when accessing sites. ...
TabaniZ
Oct 12, 2020Copper Contributor
I have the same issue and following steps solved my issue.
Excluding "AppData\LocalLow\Microsoft" didn't help with all the users
Root cause: Local profile wasn't deleted properly and especially this folder (locallow\microsoft\crypto\TokenBindingKeys) was causing the issue.
Lots of users were already used WVD and FSLogix so it was unable to exclude the folder from some of the session hosts. To tackle the issue I enabled the following Group Policy and it worked like a charm.
Example of my redirection.xml file
<?xml version="1.0"?> <FrxProfileFolderRedirection ExcludeCommonFolders="0"> <Excludes> <Exclude Copy="0">AppData\LocalLow\Microsoft</Exclude> <Exclude Copy="0">AppData\Local\Google\Chrome\User Data\Default\Cache</Exclude> <Exclude Copy="0">AppData\Local\Microsoft\Edge\User Data\Default\Cache</Exclude> <Exclude Copy="0">AppData\Local\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\Cache</Exclude> <Exclude Copy="0">AppData\Local\BraveSoftware\Brave-Browser\User Data\Default\Cache</Exclude> </Excludes> <Includes> <Include Copy="3">AppData\LocalLow\Sun\Java\Deployment\security</Include> </Includes> </FrxProfileFolderRedirection>
Hope that will help.
Please don't forget to restart your Session Hosts.
Thank you