How to close all windows
I would like to close all open windows. This will not minimize the windows but the script will close all windows even if it is minimized. Is there a way to do this in a batch program or powershell? use this in powershell: Get-Process | Where-Object {$_.MainWindowTitle -ne ""} | stop-process -note: this close powershell console or ise too and can't end his job! (get-process | ? { $_.mainwindowtitle -ne "" -and $_.processname -ne "powershell" } )| stop-process this way only powershell windows is still alive but the last command in your script can be stop-process powershell note: this no affect