How to open Powershell Console Window from Powershell
How to open Powershell Console Window from Powershell
This will open a new window.
Either:
start-process powershell
Or:
start powershell
if you are trying to open a new window and launch a new script:
start powershell {.scriptInNewPSWindow.ps1}
How to open Powershell Console Window from Powershell
This will do it:
Invoke-Item C:WindowsSystem32WindowsPowerShellv1.0powershell.exe