请问下,这个条件判断应该怎么写?(已解决)
本帖最后由 xhf100 于 2010-3-25 11:08 编辑我想用这个语句达到以下效果:
如果没有检测到iexploer.exe,就继续检测下去。
如果检测到iexploer.exe,就运行ie.exe
If ProcessExists('IEXPLORE.exe') Then Run('ie.exe')
else(继续运行脚本,这里不知道这么写)
Do
$PID=ProcessExists ( "iexploer.exe" )
Until $PID<>0
Run('ie.exe')
页:
[1]