powershell 有关如何等待从PowerShell启动的可执行文件显示窗口的示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 有关如何等待从PowerShell启动的可执行文件显示窗口的示例相关的知识,希望对你有一定的参考价值。

$regeditInstance = [Diagnostics.Process]::Start("regedit","-m")
#wait the regedit window to appear
while ($regeditInstance.MainWindowHandle -eq 0){
    sleep -Milliseconds 100
}

以上是关于powershell 有关如何等待从PowerShell启动的可执行文件显示窗口的示例的主要内容,如果未能解决你的问题,请参考以下文章

你如何使用 PowerShell? [关闭]

是否可以/如何使用某些 cmdlet 停止 powershell?

从 Powershell ISE 中的另一个 PS1 脚本调用 PowerShell 脚本 PS1

为啥不能使用 VariablesToExport 导出 PowerShell 模块中的变量成员?

如何在 Chocolatey 安装后刷新 PowerShell 会话的环境而无需打开新会话

Winlogbeat之安装