Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PowerShell, Open IE without Add-ons

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?

like image 930
LaPhi Avatar asked Dec 17 '25 19:12

LaPhi


1 Answers

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.

like image 121
Keith Hill Avatar answered Dec 19 '25 14:12

Keith Hill



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!