Hello
Thank you for your question and reaching out. I can understand you are having query\issues related to
Event Logs located in Event Logs “Applications and Services Logs -> Microsoft -> Windows -> Terminal-Services-RemoteConnectionManager > Operational”
Also you can use below powershell to check the logs
Get-EventLog security -after (Get-date -hour 0 -minute 0 -second 0) | ?{$.eventid -eq 4624 -and $.Message -match 'logon type:\s+(10)\s'} | Out-GridView
Reference :
--If the reply is helpful, please Upvote and Accept as answer--