set wshshell = createobject("wscript.shell") wshshell.run "C:\Progra~1\Intern~1\IEXPLORE.EXE 1¹ø¿¡¼­ Á¦ÀÛÇÑ ¹®¼­ÀÇ ÁÖ¼Ò",0 wscript.sleep 3000 wshshell.run "2¹ø¿¡¼­ Á¦ÀÛÇÑ ¹®¼­ÀÇ ÁÖ¼Ò",0 wscript.sleep 5000 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