Lost certifiticates on RDSSH - FSLOGIX

drClays 146 Reputation points
2025-01-06T18:00:47.9133333+00:00

Hey,

I have a problem with FSLogix on RDSSH.

One of the users is losing his certificates. The certificates are added to the current user/person all the time.

Someone something?

I think switching FSLogix to UPD, because the same user has a problem with Outlook because the OST file gets corrupted from time to time.

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
13,520 questions
Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
6,788 questions
Remote Desktop
Remote Desktop
A Microsoft app that connects remotely to computers and to virtual apps and desktops.
4,667 questions
FSLogix
FSLogix
A set of solutions that enhance, enable, and simplify non-persistent Windows computing environments and may also be used to create more portable computing sessions when using physical devices.
505 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Zafer KAYA 90 Reputation points MVP
    2025-01-07T11:29:56.2266667+00:00

    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"


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.