Mar 29 2021 09:31 PM
I'm facing this problem while trying to login to my WVD for the first time. After clicking on ok I'm getting logged out of the system. Please help.
Apr 02 2021 02:05 AM
SolutionApr 05 2021 08:23 AM
Apr 05 2021 10:00 AM
Nov 24 2021 01:19 AM
1. Get user SID, can run AD PowerShell (replace firstname.lastname@domain.com with affected user userprincipalname): get-aduser -filter {UserPrincipalName -eq "firstname.lastname@domain.com"} -Properties * | select objectSid
2. Check every Session host in the farm and go to: "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileService\References<sid affected user>"
3. Search for value RefCount and change all values to 00
So for example below is the current value:
Then you change it to:
The user will now be able to log in again.
Apr 02 2021 02:05 AM
Solution