Califique este contenido
MSDN
MSDN Library

We were unable to locate this content in es-cl.

Here is the same content in en-us.

Internet Explorer Command-Line Options

Updated: January, 2011

Windows Internet Explorer includes several command-line options that enable you to troubleshoot and configure the browser. This topic describes the options that Internet Explorer supports.

Supported Command-Line Options

The following declaration shows the command-line definition for Internet Explorer.

iexplore.exe [ [ -embedding ] 
               [ -extoff ] 
               [ -framemerging ] 
               [ -k ] 
               [ -noframemerging ]
               [ -nohangrecovery ]
               [ -private ] ]
             [ URL ]

The following table describes the supported command-line options for Internet Explorer.

Command-line optionDescription
-embeddingStarts Internet Explorer through OLE embedding (such as the WebBrowser Control).
-extoffInternet Explorer 7 and later versions. Starts Internet Explorer in No Add-ons mode, which you can use to troubleshoot problems with browser add-ons. For more information, see Troubleshooting Internet Explorer Add-ons.
-framemergingInternet Explorer 8 and later versions. Enables Internet Explorer to opportunistically merge new frame processes into existing frame processes. For more information, see Internet Explorer 8 and Reliability.
-kStarts Internet Explorer in kiosk mode. The browser opens in a maximized window that does not display the address bar, the navigation buttons, or the status bar.
-noframemergingInternet Explorer 8 and later versions. Prevents Internet Explorer from opportunistically merging new frame processes into existing frame processes.
-nohangrecoveryInternet Explorer 9. Prevents Internet Explorer from restarting a tab when it stops responding. This option enables application developers to use debugging tools to investigate problems with Browser Helper Objects (BHOs), Microsoft ActiveX controls, and other browser extentions.
-privateInternet Explorer 8 and later versions. Starts Internet Explorer with InPrivate Browsing set to active. For more information, see IE Blog: Online Privacy, Tracking, and InPrivate Filtering.
URL Navigates to the page or resource that you specify as URL, after Internet Explorer opens.

Superseded, Deprecated, and Obsolete Options

Some command-line options that earlier Internet Explorer versions supported are not supported in later versions of the browser because of one of the following reasons:

  • An option is replaced by another option. (That is, the option has been superseded.)

  • An option is recognized by the browser, but it does not function like it used to or we no longer recommend that you use it. (That is, the option is deprecated.)

  • An option is no longer recognized by the browser and might generate error conditions if you use it. (That is, the option is obsolete.)

The following table lists command-line options that are no longer supported and that you should not use.

Command–line optionStatus
-channelbandObsolete as of Internet Explorer 7.
-eObsolete as of Internet Explorer 7.
-evalObsolete as of Internet Explorer 7.
-nomergeAvailable in pre-release versions of Internet Explorer 8. This option has been superseded by the -noframemerging option that is described in the earlier table.
-newObsolete as of Internet Explorer 7.
-nowaitObsolete as of Internet Explorer 7.
-remoteObsolete as of Internet Explorer 8.
-vObsolete as of Internet Explorer 8.
-versionObsolete as of Internet Explorer 8.

Related Topics

Contenido de la comunidad   ¿Qué es Community Content?
Agregar contenido nuevo RSS  Anotaciones
IE - Open website in multiple tabs - possible with .js file      gmaran23   |   Editar   |   Mostrar historial

Sometime back I wanted to open multiple websites in different tabs. I tried something like below

iexplore "microsoft.com" "msn.com" "whatever.com"

As you might have tried, that didnt work as expected. I found a .js script to do that for me. Here it is below. Have the script in a .js file. I couldnt locate where I found it from. But I am guessing that it was from Eric Lippert blog.

var navOpenInBackgroundTab = 0x1000;
var oIE = new ActiveXObject("InternetExplorer.Application");
oIE.Navigate2("http://blogs.msdn.com");
oIE.Navigate2("http://blogs.msdn.com/tonyschr", navOpenInBackgroundTab);
oIE.Navigate2("http://blogs.msdn.com/oldnewthing", navOpenInBackgroundTab);
oIE.Navigate2("http://blogs.msdn.com/ericlippert", navOpenInBackgroundTab);
oIE.Visible = true;

Save the above code in launchie.js. Double click. There you go.

Marcar como ContentBug
Opening New Tabs from the Command-Line      Silver Paradox   |   Editar   |   Mostrar historial
A co-worker and I have found a solution to the question: How to open a new tab from a command line or batch file for IE 7?

START "" "http://msdn.microsoft.com"

My big question is, WHY does this work? Does the command prompt automatially have a way of handling website addresses by themselves?
What are the default settings and options (if any) available with opening up just a website without telling it to use any application?
Marcar como ContentBug
-nomerge IE9      Tim Bailen   |   Editar   |   Mostrar historial

-noframemerging isn't working for me in IE9, but -nomerge does!

The table above says -nomerge is obsolete, but it works and allowed me to create a shortcut for Internet Explorer 9 that opens IE as a new process / new window, which is crucial for me- I love using a windows keyboard shortcut to pop open a browser from whereever I am.

Marcar como ContentBug
Enter title here.Proxy Switch      deDeveloper   |   Editar   |   Mostrar historial
Would like to see command line option to start IE with proxy either enabled or disabled. At work, I have to enable the proxy. When VPN'd in or standalone not connected to the network, I have to diable the proxy.
Marcar como ContentBug
IE open with multiple tabs      babyProgrammer   |   Editar   |   Mostrar historial
is there anything that opens IE with multiple tabs?
Marcar como ContentBug
Print      PIMEL   |   Editar   |   Mostrar historial
There is no print options
Marcar como ContentBug
Lack of useful command-line possibilities      RamonEEZA ... PIMEL   |   Editar   |   Mostrar historial
For developing using Visual Studio (Explore in...) and for use IE9 for IE8 testing in future versions may be interesting command line option to select IE mode and another development switches.

-p to print (XPSViewer or any other)
Marcar como ContentBug
misspelled command line option      Mystic Taz ... Thomas Lee   |   Editar   |   Mostrar historial
In the command syntax, the nohangrecovery switch is spelled incorrectly:

[ -nohangerecovery ]

The underlined "e" character shown above should not be there.
Processing
© 2012 Microsoft. Reservados todos los derechos. Temas legales | Marcas Registradas | Declaración de privacidad
Page view tracker