PowerShell, Open IE without Add-ons

1.1k Views Asked by At

I want to open the Internet Explorer as a new Com Object with no Add-ons.

$ie=New-Object -comobject InternetExplorer.Application

How could I start the Internet Explorer without Add-ons?

1

There are 1 best solutions below

1
On

It's even easier than that (assuming PowerShell 2.0 for Start-Process cmdlet):

Start-Process iexplore.exe -ArgumentList -extoff

See this page on Internet Explorer command line options.