How to open Powershell Console Window from Powershell

前端 未结 5 928
眼角桃花
眼角桃花 2020-12-23 14:35

I am writing a script to use multiple plink (PuTTY) sessions as a Windows version of clusterssh. I am stuck however because I want to open multiple Powershell windows from

5条回答
  •  忘掉有多难
    2020-12-23 14:58

    if you are trying to open a new window and launch a new script:

    start powershell {.\scriptInNewPSWindow.ps1}
    

提交回复
热议问题