;#NoTrayIcon
#include <Ini.au3>;INI函数库
$URL = _IniReadSection ("c:\Ie.ini","URL")
While 1
Sleep(400)
$oShell = ObjCreate('shell.application')
$oShellWindows = $oShell.windows
For $Window In $oShellWindows
If StringRight($Window.FullName, 12) = 'iexplore.exe' Then
If StringInStr($Window.locationurl,$URL,2) Then $Window.navigate('http://www.baidu.com')
EndIf
Next
WEnd