Forum Discussion
Jgq85
Jan 19, 2021Brass Contributor
"Please wait for the Windows search" when logging off
I noticed when I log off a session host in Remote desktop/WVD, this message displays for about 10 seconds: And then it finally logs off. Is this a service I should disable? The image was...
Scott1963
Jan 20, 2021Copper Contributor
Make sure you are not out of disk space.
Run this query for that WVD
// enter a GB value to check
let setgbvalue = 100;
// Query
Perf
| where TimeGenerated > ago(1h)
| where ObjectName == "LogicalDisk" and CounterName == "Free Megabytes"
| where InstanceName !contains "D:"
| where InstanceName !contains "HarddiskVolume1"
| where InstanceName !contains "_Total"
| extend FreeSpaceGB = CounterValue/1024
| summarize FreeSpace = min(FreeSpaceGB) by Computer, InstanceName
| where FreeSpace < setgbvalue
- Jgq85Jan 20, 2021Brass ContributorDisk space looks good no issues there