zzfbz 发表于 2009-4-20 19:44:09

软件安装后弹出浏览器窗口的脚本编写

某台电脑有IE、傲游、世界之窗,现在不知道哪个是默认浏览器。怎么编写自动安装脚本阻止或关闭安装软件后弹出的浏览器窗口。if...then...不会用,请教大家了。大家知道哪儿有if..then...的教程或文章请告诉在下(AutoIt自带的帮助感觉介绍得简单了)。

send("!f")
sleep(2000)
$PID = ProcessExists("Maxthon.exe")
If $PID Then ProcessClose($PID)
ProcessClose("iexplore.exe")
ProcessClose("theworld.exe")
忘记世界之窗的进程名是怎样的,这儿用theworld代替了。

[ 本帖最后由 zzfbz 于 2009-4-21 17:06 编辑 ]

goodjob 发表于 2009-4-20 20:43:15

if ProcessExists("iexplore.exe") then ProcessClose("iexplore.exe")
if ProcessExists("theworld.exe") then ProcessClose("theworld.exe")

zzfbz 发表于 2009-4-20 21:32:06

谢谢了,我试试

micro_snow 发表于 2009-4-22 10:39:01

這個ProcessClose在有的時候似乎不湊效@

yeqing880 发表于 2009-4-22 14:56:30

_rundos ("START http://www.baidu.com")

webfly 发表于 2009-7-21 17:17:22

都是强人 我是小菜

xytjc 发表于 2009-7-21 17:52:24

LLLOOOOOOOOOOOOK
页: [1]
查看完整版本: 软件安装后弹出浏览器窗口的脚本编写