PowerShell launch script in new instance

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}

Leave a Comment