我想在我的脚本中添加一行,打开一个新的电源shell控制台并在新窗口中运行ping命令。
答案 0 :(得分:2)
start-process powershell.exe -argument '-nologo -noprofile -executionpolicy bypass -command Test-Connection ipAddressToPing; read-host "press enter"'
您可以将ip地址添加到脚本中或将其保留,并在运行时向您询问。您可以删除读取主机"按enter键"'如果你想让窗户马上关闭。