is there any way to know that the object exists? 
 
something like this: 
 $oIE=ObjCreate('InternetExplorer.Application')
$oIE.quit() ;close ie
If IsObj($oIE) Then
 ConsoleWrite("Var Is Obj but no obj exist" & @LF)
EndIf
If _ObjExist($oIE) Then
$oIE.some_method_here
EndIf