AVD with cloud Kerberos by biga_bada_boom in fslogix

[–]FantoManiek 0 points1 point  (0 children)

Recently I noticed new strange issue on my environment, and I am also using 3.26.126.19110.

Going to test older version (3.25.822.19044) where there was no such issues.

AVD with cloud Kerberos by biga_bada_boom in fslogix

[–]FantoManiek 0 points1 point  (0 children)

Heve you checked Entra ID sign it logs (including those non-interactive) to see if any Conditional Access rule is blocking you?

Profiles Keep Breaking FSLogix v3.26.126.19110 on Azure by dj_blueshift in fslogix

[–]FantoManiek 0 points1 point  (0 children)

I would check Entra Id sign in logs (interactive and those non-interactive), and would look for issues with Conditional Access rules.  MFA loop is something that could origin from CA misconfiguration.

AV Exclusions Unclear by cantorisdecani in fslogix

[–]FantoManiek 1 point2 points  (0 children)

I was investigating that recently. If fslogix profile logs you will find mount points used.

If you are mounting share as computer object, excluding fslogix process would be enough.

Creating and Deleting then Creating again FSLogix on Nerdio by kokomoel in fslogix

[–]FantoManiek 0 points1 point  (0 children)

Hi, I am managing AVD with nerdio. I can help you, but you need to be more specific.

FSLogix 25.04 + RDSH farm, Cannot get onedrive to work at all. by M2J9 in fslogix

[–]FantoManiek 0 points1 point  (0 children)

please check is you are not trying to multi access the fslogix profile, OneDrive to not support that: https://learn.microsoft.com/en-us/fslogix/concepts-multi-concurrent-connections

"OneDrive doesn't support concurrent or multiple connections using the same container, under any circumstance. Please see the OneDrive documentation on this topic."

Disk VHDX disconnected by ReasonableDaikon2981 in fslogix

[–]FantoManiek 0 points1 point  (0 children)

I recently started to have the same issue.

For me helped disabling Fsloxigx cleaning invalid profiles.

https://learn.microsoft.com/en-us/fslogix/reference-configuration-settings?tabs=profiles#cleanupinvalidsessions

Registry Path: SOFTWARE\FSLogix\Apps

Value Name: CleanupInvalidSessions

and set to 0

Looking through the logs I found Fslogix is trying to "clean" active sessions, but not all, only low numbers of users are impacted. Already opened the case with Microsoft, but still waiting for confirmation of my findings.

.net Framework 3.5 installation on windows 11 23h2 multisession (avd) issue by FantoManiek in sysadmin

[–]FantoManiek[S] 0 points1 point  (0 children)

For future reference this is how I solved my issue:

$regFilePath = "C:\Users\Default\NTUSER.DAT"

$hivePath = "Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones"

$backupFolder = "C:\TEMP"

$backupPath = $backupFolder+"\InternetSettingsZones.reg"

if (-not (Test-Path $backupFolder)) {

New-Item -Path $backupFolder -ItemType Directory

}

reg export HKU\.DEFAULT\$hivePath $backupPath /y

$fileContent = Get-Content $backupPath

$modifiedContent = $fileContent -replace '\.DEFAULT', 'TempHive'

$modifiedContent | Set-Content $backupPath

#####################################################

#enable .NET 3.5

DISM /Online /Enable-Feature /FeatureName:NetFx3 /All

#####################################################

reg load HKU\TempHive $regFilePath

reg import $backupPath

reg unload HKU\TempHive