写一小程序, 要遍历所有的IE窗, 如果是VBS新生成的会叫"about:blank",遇到就关闭之,以防第二次不能正常运行
其中一段判断后, 怎么结束进程呢? 要不杀掉其他的IE, 只杀这个窗口的.- Set ws=createobject("wscript.shell")
-
- Set Shell=CreateObject("Shell.Application")
- For Each win In Shell.Windows
- If LCase(Right(win.fullName,12))="iexplore.exe" Then
- if win.LocationURL="about:blank" then
- msgbox obj
- win.terminate() '没有这个terminate() 方法,该换其他的什么来代替?
- end if
- End If
- Next
复制代码
|