[已解决]自动安装弹出的网页怎么关掉
本帖最后由 yinbinly 于 2010-12-8 22:00 编辑我写的自动安装脚本,最后一步完成,程序会自动弹出网页,能不能用AU3关掉呢 可以,但代码一下子找不到了. While 1
If WinExists("http://yyxfplayer.com/", "链接") Then
WinClose("http://yyxfplayer.com/", "链接")
ExitLoop
EndIf
WEnd
本帖最后由 蜘蛛抱蛋 于 2010-12-6 17:39 编辑
监视进程变化,如果有iexplore.exe出现,立即结束它#include <array.au3>
DIM $PID
$j=0
$old = False
$list1 = ProcessList()
for $i = 1 to $list1
If $list1[$i]=="IEXPLORE.EXE" Then
$PID[$j]=$list1[$i]
$j=+1
EndIf
next
_ArrayDisplay($PID)
Sleep(7000)
$list2 = ProcessList()
for $i = 1 to $list2
if $list2[$i]=="IEXPLORE.EXE" then
for $b in $PID
If $b==$list2[$i] Then $old=True
Next
MsgBox(0,"",$old)
If $old = False ThenProcessClose($list2[$i])
EndIf
Next
会弹出网页是不是因为在最后一步有选择框,没被去掉呢?如果这样,直接Uncheck,就好了;如果不是,楼上两位高手的意见都很好啊 回复 4# 蜘蛛抱蛋
这个 万一 我是说万一正在浏览网站, 顺便安装个程序,那不就全关了吗? 回复 6# min00yuan
晕,AU3自动安装最好是关闭所有正在运行的程序 回复 6# min00yuan
你仔细看程序已经是有选择的关闭否则两行代码就搞定了 回复 3# lxz
为什么无法关闭IE8呢??? 正在学习中
页:
[1]