HI
Is there anything to help you?
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Having a strange issue with a Microsoft Server 2016 RDS server. I have two RDS servers, one Broker Farm. One of the RDS servers is working perfectly fine. The other I can't even access the Printers section of the control panel otherwise the whole explorer window will freeze and I will get an application hang error.
If I restart the print spooler the Printers option becomes available. I need to be able to access the Printers section of Windows...
Troubleshooting -
I've run sfc, dism, print spool repairer. No such luck with any of them. Any ideas on how to fix the printing issue?
I actually found the fix after scouring for a little while. Was three simple PowerShell commands:
net stop spooler
Remove-Item -Path "HKLM:\Software\Microsoft\Windows NT\CurrentVersion\Print\Providers\Client Side Rendering Print Provider*" –Recurse
net start spooler
Thank you for your help though. Much appreciated.
Hi,
My Explorer Window freezes when I try to access Devices and Printers. I will try the command mentioned by Scott after I backup Regedit, of course.
More context:
* This is a Windows server 2016
* Server received PrintNightmare patch last month
* Issue observed while someone was doing maintenance on a backup solution installed on that server. Not confirmed if related/cause of break.
net stop spooler
Remove-Item -Path "HKLM:\Software\Microsoft\Windows NT\CurrentVersion\Print\Providers\Client Side Rendering Print Provider*" –Recurse
net start spooler
This worked for me on a Server 2019 box too. Thank you very much for posting!!!