How to open Powershell Console Window from Powershell
Solution 1:
This will open a new window.
Either:
start-process powershell
Or:
start powershell
Solution 2:
if you are trying to open a new window and launch a new script:
start powershell {.\scriptInNewPSWindow.ps1}