暫停腳本的執(zhí)行直至給定進程不再存在為止。
ProcessWaitClose ( "進程名" [, 超時時間] )
參數(shù)
進程名 | 目標進程的名稱或 PID(進程標識符)。 |
超時時間 | [可選參數(shù)] 指定要等待的時間長度(默認為一直等待)。 |
返回值
成功: 返回值為1。
注意
進程名是指可執(zhí)行文件的名稱(無需給出完整路徑),例如:"notepad.exe" 或 "winword.exe"
相關
ProcessClose, ProcessExists, ProcessWaitClose, RunWait, WinWaitClose
示例
;waits until no instance of notepad.exe exists
ProcessWaitClose("notepad.exe")
; This will wait until this particular instance of notepad has exited
$PID = Run("notepad.exe")
ProcessWaitClose($PID)