Best way to check if an PowerShell Object exist?

LaPhi picture LaPhi · Dec 13, 2010 · Viewed 199k times · Source

I am looking for the best way to check if a Com Object exists.

Here is the code that I have; I'd like to improve the last line:

$ie = New-Object -ComObject InternetExplorer.Application
$ie.Navigate("http://www.stackoverflow.com")
$ie.Visible = $true

$ie -ne $null #Are there better options?

Answer

Keith Hill picture Keith Hill · Dec 13, 2010

I would stick with the $null check since any value other than '' (empty string), 0, $false and $null will pass the check: if ($ie) {...}.