Instead of starting a cmd to start a new powershell instance you can:
start powershell {echo hello}
To prevent immediate exit of new started powershell:
start powershell {echo hello; Read-Host}
Instead of starting a cmd to start a new powershell instance you can:
start powershell {echo hello}
To prevent immediate exit of new started powershell:
start powershell {echo hello; Read-Host}