关闭程序后运行powershell文件

时间:2014-08-26 12:05:25

标签: powershell

我不知道这是否与此处有关,但有一种方法可以在关闭特定程序后运行powershell文件,例如,如果我自动关闭microsoft word将打开一个powershell文件。 感谢。

1 个答案:

答案 0 :(得分:0)

选项?

while (Get-Process -Name "powershell" -ErrorAction SilentlyContinue)  {
    Write-Host -Object "Running..."
    Start-Sleep -Seconds 5
}
Start-Process -FilePath "MSG.Exe" -ArgumentList "* Stopped..."