There was a set of recently asked questions about doing something with Internet Explorer via PowerShell. All of them contain codes to launch IE from PowerShell as an object,
This may be useful to you:
Get-Process | Where-Object {$_.Name -Match "iexplore"} | Stop-Process