FSLogix Profile Configuration:
Check if Certificate container is enabled
Get-FSLogixProfile -Path "HKLM:\SOFTWARE\FSLogix\Profiles"
Registry Inclusion: Make sure these paths are included in FSLogix:
HKEY_CURRENT_USER\Software\Microsoft\SystemCertificates
HKEY_CURRENT_USER\Software\Policies\Microsoft\SystemCertificates
Add Certificate Paths to FSLogix:
Add certificate paths to FSLogix configuration
Set-FslogixRule -Name "Certificates" -Path "%CSIDL_APPDATA%\Microsoft\SystemCertificates" -Include $true
Set-FslogixRule -Name "CertificatesPolicies" -Path "%CSIDL_APPDATA%\Microsoft\Policies\SystemCertificates" -Include $true
Implement Certificate Roaming:
Enable certificate roaming via Group Policy
Set-GPO -Name "Certificate Roaming" -Key "HKCU\Software\Policies\Microsoft\Windows\CurrentVersion\Internet Settings" -ValueName "EnableCertificateRoaming" -Value 1
Check FSLogix Health:
Check FSLogix logs
Get-WinEvent -LogName "Microsoft-FSLogix-Apps/Operational"