One could probably setup a key binding for this PowerShell script to kill all explorer windows:
Get-Process | Where {$_.ProcessName -Like 'explorer'} | Stop-Process -Force
😅
Seems a bit overkill, but let me know how you get on?!
it is an overkill solution... I like it. Going to try it out then, but it will also kill your desktop i am pretty sure.
Yes, it kills the desktop, but the OS reinitiates that, so it seems fairly safe.