Blog Post

FSLogix Blog
1 MIN READ

FSLogix 2105 HF_01 (2.9.7979.62170) released

Gonzalo_Reyna's avatar
Gonzalo_Reyna
Icon for Microsoft rankMicrosoft
Nov 10, 2021

Hi FSLogix nation,

 

This short post is to let you know that we just released FSLogix version 2105 HF_01 (2.9.7979.62170) to address two issues:

 

  • This hotfix mitigates the vulnerability disclosed in CVE-2021-41373.
  • This hotfix addresses an issue where FSLogix event logs could be malformed on Windows 11.

 

All customers running Cloud Cache or Windows 11 are encouraged to update to this version as soon as possible. You can download this version from here.

Published Nov 10, 2021
Version 1.0

16 Comments

  • vara93's avatar
    vara93
    Iron Contributor

    Hi Mike_Zirbes , put the service to the stopped status and stop it.

     

    For some reason, microsoft developers ignore critical problems with their product.

  • Mike_Zirbes's avatar
    Mike_Zirbes
    Copper Contributor

    Anyone else seeing problems with black screen at login for 5min? All my digging has pointed to the AppReadiness service and possibly corrupted fslogix profile disk.  Event logs show an NTFS disk check running on the profile disk, which probably causes a timing issue with AppReadiness. Eventually, the desktop appears but the start menu does not work. Task manager shows a runaway Push notification that is consuming excessive RAM (20+GB and growing). Killing the runaway process allows the left click start menu to start working (eventually) but GPOs have not applied properly so users have other probelms.

     

    The only thing I have found that seems to fix this is to delete and have a new user profile created.

  • vara93's avatar
    vara93
    Iron Contributor

    It's been a year now, and Microsoft doesn't want to solve the problem. I don't know what's wrong with them.

     

    I temporarily fixed this problem with a script in the task scheduler.

     

    1. On each RDSH server I created a folder C:\PS and put this script there:

     

    $Event = Get-WinEvent -MaxEvents 1 -FilterHashtable @{logname='Microsoft-FSLogix-Apps/Operational';ID='31'}
    
    $TimeCreated = $Event.TimeCreated
    
    $Event = [xml]$Event.ToXml() 
    
    $User = $Event.Event.EventData.Data | Where-Object {$_.name -eq "Username"}
    $SID = $Event.Event.EventData.Data | Where-Object {$_.name -eq "SID"}
    
    $RefCount = (Get-ItemProperty -Path "Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileService\References\$($SID."#text")").RefCount[0] 
    
    if( $RefCount -ne 0 )
    {
        "$TimeCreated, $($User.""#text""), $($SID."#text"), $($env:COMPUTERNAME)" | out-file \\resoleasing.com\NETLOGON\RDS\FSLogix\FSlogix.txt -Append
        Set-ItemProperty -Path "Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileService\References\$($SID."#text")" -Name RefCount -Value ([byte[]](0x00,0x00,0x00,0x00))
    }

     

    2. In the task scheduler, I had to run the task under my account, for all users with the highest rights.

    Trigger:

     

     

    This event occurs when a profile is unloaded.

     

    Programm: powershell.exe

    Arguments: -NoProfile -NoLogo -NonInteractive -ExecutionPolicy Bypass -File C:\PS\FixLockoutProfile.ps1

  • JonathanPitre's avatar
    JonathanPitre
    Brass Contributor

    https://docs.microsoft.com/en-us/answers/questions/229309/fslogix-unclean-logoff-causing-locked-files-until.html?page=8&pageSize=10&sort=oldest
    Please take this seriously, it's been months and it's affecting all my customers productivity.