Forum Discussion
Dale Hayter
Nov 11, 2020Copper Contributor
WVD logon issues. The Group Policy Client Service failed the sign-in. Access is denied.
Hi. We have a mutli-session Win10 WVD farm up and running. We are running 1909 with the latest quality updates applied. FSLogix profile container is being used. We are seeing intermittent issues...
Lee_E
Mar 13, 2022Brass Contributor
I've set up a 5 minute scheduled task that runs a script (below). It's not pretty and if someone logs off and back on in less than 5 minutes it may still error until the 5 minute point but it works for us. We can run this with minimal complications until a production ready version is released. Hope this helps a few of you.
$profilesKey = "HKLM:SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileService\References\"
$userProfiles = Get-ChildItem -Path $profilesKey
ForEach ($userProfile in $userProfiles) {
$RefCountProperty = Get-ItemPropertyValue -Path "Registry::$userProfile" -Name "RefCount"
If ($RefCountProperty[0] -eq 1) {
$RefCountProperty[0] = 0
Set-ItemProperty -Path "Registry::$userProfile" -Name "RefCount" -Value $RefCountProperty
}
}
StevenR
Oct 26, 2022Brass Contributor
Life saver, I had this issue when not even using fslogix but was on an Azure AD joined AVD, deleting the user from the "Reference" folder fixed it, Thanks