an easy way to kill explorer.exe with Narrator's help
Get into Administrator: Windows PowerShell and type and Enter this:
(Get-Process explorer).Id |% {cmd /c taskkill /PID $_ /F}
The taskkill /F switch works where PowerShell's Stop-Process -Force does not. Thanks for making me find this.
Then note the difference. All explorer generated stuff is removed from the display and stays removed. More significantly Alt-Tab now shows only icons. Surprisingly some modern app windows are still functional! Who knew? To get explorer restarted just do it conventionally (e.g. with Task Manager) or in PowerShell Start-Process explorer works.
Good luck
Robert