Forum Discussion
The task you are trying to do can’t be completed because Remote Desktop Services is currently busy
- Oct 25, 2019
Daghoberto:Thank you for reaching out for those issues. I recommend to file a support request as those issues might have different root causes. Additional logs will help to pin down those issues.
What was the fix in your case? I have a different setup but I'm also receiving the same message periodically.
- DaghobertoJan 07, 2020Copper Contributor
Chris Parker Yes, I was able to fix it by having a different svchost.exe process for each process.
The problem is bisrv (BrokerInfrastructure) is receiving a large number of events using threadpool threads and then it is sending a ALPC request (which again uses thread pool threads) to SystemEventBroker Service which is running in same SVCHost. This caused thread pool exhaustion. Since thread pool threads are exhausted, we can no longer process requests resulting in hang.
We do have a workaround for the issue, run SystemEventsBroker or BrokerInfrastructure service into its own host process.
Action Plan: Perform following on all WVD computers
- RDP into the computer with admin account -> Start Regedit
- Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SystemEventsBroker\ and change the value of the key “Type” to 16 (decimal) (or 0x10 hex)
- Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BrokerInfrastructure\ and change the value of the key “Type” to 16 (decimal) (or 0x10 hex)
- Reboot the machine
- Log into the VM again -> open command prompt as administrator and enter command tasklist /svc > c:\tasklist.txt
- Open tasklist.txt and verify SystemEventsBroker or BrokerInfrastructure are in own svchost
7. Monitor and let me know if the issue resurfaces
- Chris ParkerJan 13, 2020Iron Contributor
Daghoberto Much appreciated!
- R_AkersApr 10, 2020Brass Contributor