Forum Discussion
shockashark
Jun 10, 2020Copper Contributor
FSLOGIX Profile Issue when opening Internet Explorer
Users are logging into a web site via IE and they get a: "Can't Connect Securely to site users outdated or unsafe TLS security settings." This IE security issue is failing on most users accou...
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 helps.
Please don't forget to restart your Session Hosts.
Thank you