Start Remote Desktop Services Manager Identify the user ID in the Users tab In the Processes tab sort by ID Go down to the user ID and end the winlogon.exe process the user session will be logged off
Solution 2- Issue during user log on.
sc \\servername queryex SENS
Then I kill that process with this command
taskkill /S servername /PID xxxx /F
where xxxx is the PID from the first command.
Now I can connect to the server with RDP and I didn’t have to restart the server.
Identify the user ID in the Users tab
In the Processes tab sort by ID
Go down to the user ID and end the winlogon.exe process
the user session will be logged off
Solution 2- Issue during user log on.
Then I kill that process with this command
taskkill /S servername /PID xxxx /F
where xxxx is the PID from the first command.
Now I can connect to the server with RDP and I didn’t have to restart the server.