use the following command within powershell to terminate all but your one shell.
get-process | where {$_.name -like “powershell” -and $_.ID -notlike “$pid”} | stop-process
use the following command within powershell to terminate all but your one shell.
get-process | where {$_.name -like “powershell” -and $_.ID -notlike “$pid”} | stop-process