set wshshell = createobject("wscript.shell") wshshell.run "C:\Progra~1\Intern~1\IEXPLORE.EXE http://qaos.com/user.php?uname=¾ÆÀ̵ð&pass=Æнº¿öµå&op=login&referer=http%3A%2F%2Fqaos.com%2Fsms2%3Fop%3Dsend%26snum%3Dº¸³»´Â¹øÈ£%26rnum%3D¹Þ´Â¹øÈ£%26sms%3DÄÄÇ»ÅÍ°¡²¨Á³¾î¿ä",0 wscript.sleep 10000 killprocess ("iexplore.exe") function killprocess (image) strcomputer = "." set objwmiservice = getobject("winmgmts:" _ & "{impersonationlevel=impersonate}!\\" & strcomputer & "\root\cimv2") set colprocesslist = objwmiservice.execquery _ ("select * from win32_process where name = '"& image &"'") for each objprocess in colprocesslist objprocess.terminate() next end function