标签: powershell
我想在新的Powershell窗口中将字符串变量传递给运行命令。
$word = "bird" start PowerShell { echo $word; pause }
我该怎么做?