---
ms.localizationpriority: medium
ms.mktglfcycl: deploy
ms.pagetype: appcompat
description: Use the Enterprise Mode Site List Manager to create and update your Enterprise Mode site list for devices running Windows 7 or Windows 8.1 Update.
author: dansimp
ms.prod: ie11
ms.assetid: 17c61547-82e3-48f2-908d-137a71938823
ms.reviewer:
audience: itpro
manager: dansimp
ms.author: dansimp
title: Enterprise Mode schema v.1 guidance (Internet Explorer 11 for IT Pros)
ms.sitesec: library
ms.date: 07/27/2017
---
# Enterprise Mode schema v.1 guidance
[!INCLUDE [Microsoft 365 workloads end of support for IE11](../includes/microsoft-365-ie-end-of-support.md)]
**Applies to:**
- Windows 10
- Windows 8.1
- Windows 7
Use the Enterprise Mode Site List Manager (schema v.1) to create and update your Enterprise Mode site list for devices running the v.1 version of the schema, or the Enterprise Mode Site List Manager (schema v.2) to create and update your Enterprise Mode site list for devices running the v.2 version of the schema. We strongly recommend moving to the new schema, v.2. For more info, see [Enterprise Mode schema v.2 guidance](enterprise-mode-schema-version-2-guidance.md).
If you don't want to use the Enterprise Mode Site List Manager, you also have the option to update your XML schema using Notepad, or any other XML-editing app.
## Enterprise Mode schema v.1 example
The following is an example of the Enterprise Mode schema v.1. This schema can run on devices running Windows 7 and Windows 8.1.
> [!IMPORTANT]
> Make sure that you don't specify a protocol when adding your URLs. Using a URL like `
Element | Description | Supported browser |
---|---|---|
<rules> | Root node for the schema.
Example <rules version="205"> <emie> <domain>contoso.com</domain> </emie> </rules> |
Internet Explorer 11 and Microsoft Edge |
<emie> | The parent node for the Enterprise Mode section of the schema. All <domain> entries will have either IE8 Enterprise Mode or IE7 Enterprise Mode applied.
Example <rules version="205"> <emie> <domain>contoso.com</domain> </emie> </rules>-or- For IPv6 ranges: <rules version="205"> <emie> <domain>[10.122.34.99]:8080</domain> </emie> </rules>-or- For IPv4 ranges: <rules version="205"> <emie> <domain>10.122.34.99:8080</domain> </emie> </rules> |
Internet Explorer 11 and Microsoft Edge |
<docMode> | The parent node for the document mode section of the section. All <domain> entries will get IE5 - IE11 document modes applied. If there's a <domain> element in the <docMode> section that uses the same value as a <domain> element in the <emie> section, the <emie> element is applied.
Example <rules version="205"> <docMode> <domain docMode="7">contoso.com</domain> </docMode> </rules> |
Internet Explorer 11 |
<domain> | A unique entry added for each site you want to put on the Enterprise Mode site list. The first <domain> element will overrule any additional <domain> elements that use the same value for the section. You can use port numbers for this element.
Example <emie> <domain>contoso.com:8080</domain> </emie> |
Internet Explorer 11 and Microsoft Edge |
<path> | A unique entry added for each path under a domain you want to put on the Enterprise Mode site list. The <path> element is a child of the <domain> element. Additionally, the first <path> element will overrule any additional <path> elements in the schema section.
Example <emie> <domain exclude="true">fabrikam.com <path exclude="false">/products</path> </domain> </emie> Where https://fabrikam.com doesn't use IE8 Enterprise Mode, but https://fabrikam.com/products does. |
Internet Explorer 11 and Microsoft Edge |
Attribute | Description | Supported browser |
---|---|---|
version | Specifies the version of the Enterprise Mode Site List. This attribute is supported for the <rules> element. | Internet Explorer 11 and Microsoft Edge |
exclude | Specifies the domain or path excluded from applying Enterprise Mode. This attribute is only supported on the <domain> and <path> elements in the <emie> section. If this attribute is absent, it defaults to false.
Example: <emie> <domain exclude="false">fabrikam.com <path exclude="true">/products</path> </domain> </emie> Where https://fabrikam.com uses IE8 Enterprise Mode, but https://fabrikam.com/products does not. |
Internet Explorer 11 |
docMode | Specifies the document mode to apply. This attribute is only supported on <domain> or <path> elements in the <docMode> section.
Example: <docMode> <domain>fabrikam.com <path docMode="9">/products</path> </domain> </docMode> Where https://fabrikam.com loads in IE11 document mode, but https://fabrikam.com/products uses IE9 document mode. |
Internet Explorer 11 |
doNotTransition | Specifies that the page should load in the current browser, otherwise it will open in IE11. This attribute is supported on all <domain> or <path> elements. If this attribute is absent, it defaults to false.
Example: <emie> <domain doNotTransition="false">fabrikam.com <path doNotTransition="true">/products</path> </domain> </emie> Where https://fabrikam.com opens in the IE11 browser, but https://fabrikam.com/products loads in the current browser (eg. Microsoft Edge). |
Internet Explorer 11 and Microsoft Edge |
forceCompatView | Specifies that the page should load in IE7 document mode (Compat View). This attribute is only supported on <domain> or <path> elements in the <emie> section. If the page is also configured to load in Enterprise Mode, it will load in IE7 Enterprise Mode. Otherwise (exclude="true"), it will load in IE11's IE7 document mode. If this attribute is absent, it defaults to false.
Example: <emie> <domain exclude="true">fabrikam.com <path forceCompatView="true">/products</path> </domain> </emie> Where https://fabrikam.com does not use Enterprise Mode, but https://fabrikam.com/products uses IE7 Enterprise Mode. |
Internet Explorer 11 |
<docMode>
<domain docMode="5">contoso.com</domain>
<domain docMode="9">info.contoso.com</domain>
<docMode>
|<emie>
<domain exclude="false">bing.com</domain>
<domain exclude="false" forceCompatView="true">contoso.com</domain>
<emie>
|<emie>
<domain exclude="true">contoso.com
<path exclude="false">/about</path>
<path exclude="true">
/about/business</path>
</domain>
</emie>
|<emie>
<domain exclude="true">contoso.com
<path>/about
<path exclude="true">/business</path>
</path>
</domain>
</emie>
|