我不知道这是否与此处有关,但有一种方法可以在关闭特定程序后运行powershell文件,例如,如果我自动关闭microsoft word将打开一个powershell文件。 感谢。
答案 0 :(得分:0)
选项?
while (Get-Process -Name "powershell" -ErrorAction SilentlyContinue) {
Write-Host -Object "Running..."
Start-Sleep -Seconds 5
}
Start-Process -FilePath "MSG.Exe" -ArgumentList "* Stopped..."