Example +
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.
Example +
Example
<docMode> - <domain exclude="false">fabrikam.com - <path docMode="7">/products</path> + <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.
+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).
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.
Example
<emie> From 85f5639766977766979062041ae7b5e56caa3f17 Mon Sep 17 00:00:00 2001 From: Tom BoldsDate: Tue, 4 Feb 2020 17:00:08 -0800 Subject: [PATCH 06/12] Update browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> --- .../enterprise-mode-schema-version-1-guidance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md index 485ce9751e..39b6b5c5f6 100644 --- a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md +++ b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md @@ -202,7 +202,7 @@ Where http
Example
<emie> From 7b6896b07a80200f9c5b5fe8c499c56a35e37e6e Mon Sep 17 00:00:00 2001 From: Tom BoldsDate: Tue, 4 Feb 2020 17:00:48 -0800 Subject: [PATCH 07/12] Update browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> --- .../enterprise-mode-schema-version-1-guidance.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md index 39b6b5c5f6..1325dee181 100644 --- a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md +++ b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md @@ -177,7 +177,8 @@ Where http docMode Specifies the document mode to apply. This attribute is only supported on <domain> or <path> elements in the <docMode> section. - Example
+
+Example:
<docMode> <domain>fabrikam.com From e97fc1422ebf9a702a9832c45c50a09ac6976aaa Mon Sep 17 00:00:00 2001 From: Tom BoldsDate: Tue, 4 Feb 2020 17:00:58 -0800 Subject: [PATCH 08/12] Update browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> --- .../enterprise-mode-schema-version-1-guidance.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md index 1325dee181..b1ae41d9cf 100644 --- a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md +++ b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md @@ -204,7 +204,8 @@ Where http 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
+
+Example:
<emie> <domain exclude="true">fabrikam.com From e3b25a5e12655642509192f03ffb74b28b196490 Mon Sep 17 00:00:00 2001 From: Tom BoldsDate: Tue, 4 Feb 2020 17:01:39 -0800 Subject: [PATCH 09/12] Update browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> --- .../enterprise-mode-schema-version-1-guidance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md index b1ae41d9cf..37d2ae3ec4 100644 --- a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md +++ b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md @@ -190,7 +190,7 @@ Where http 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 is defaulted to false. + 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> From 49be1abcfd4e8778aacf35d68738eca17942316e Mon Sep 17 00:00:00 2001 From: Tom BoldsDate: Tue, 4 Feb 2020 17:01:46 -0800 Subject: [PATCH 10/12] Update browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> --- .../enterprise-mode-schema-version-1-guidance.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md index 37d2ae3ec4..5eb935b07e 100644 --- a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md +++ b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md @@ -164,7 +164,8 @@ This table includes the attributes used by the Enterprise Mode schema. 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
+
+Example:
<emie> <domain exclude="false">fabrikam.com From ff473cd3cf134d354baa7009397026dd69a01ce8 Mon Sep 17 00:00:00 2001 From: Tom BoldsDate: Tue, 4 Feb 2020 17:04:08 -0800 Subject: [PATCH 11/12] Update enterprise-mode-schema-version-1-guidance.md --- .../enterprise-mode-schema-version-1-guidance.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md index 5eb935b07e..09160baadd 100644 --- a/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md +++ b/browsers/internet-explorer/ie11-deploy-guide/enterprise-mode-schema-version-1-guidance.md @@ -192,7 +192,8 @@ Where http 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
+
+Example:
<emie> <domain doNotTransition="false">fabrikam.com From 300db65ea30024608c1e0e76f7dec282643e3ec1 Mon Sep 17 00:00:00 2001 From: Thomas RayaDate: Wed, 5 Feb 2020 09:09:00 -0800 Subject: [PATCH 12/12] remove en-us from docs link --- .../microsoft-defender-atp/configure-proxy-internet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/security/threat-protection/microsoft-defender-atp/configure-proxy-internet.md b/windows/security/threat-protection/microsoft-defender-atp/configure-proxy-internet.md index 4d260cc63d..c8ddf79198 100644 --- a/windows/security/threat-protection/microsoft-defender-atp/configure-proxy-internet.md +++ b/windows/security/threat-protection/microsoft-defender-atp/configure-proxy-internet.md @@ -116,7 +116,7 @@ United Kingdom | ```uk.vortex-win.data.microsoft.com```
```uk-v20.events.dat United States | ```us.vortex-win.data.microsoft.com```
```ussus1eastprod.blob.core.windows.net```
```ussus1westprod.blob.core.windows.net```
```ussus2eastprod.blob.core.windows.net```
```ussus2westprod.blob.core.windows.net```
```ussus3eastprod.blob.core.windows.net```
```ussus3westprod.blob.core.windows.net```
```ussus4eastprod.blob.core.windows.net```
```ussus4westprod.blob.core.windows.net```
```us-v20.events.data.microsoft.com```
```winatp-gw-cus.microsoft.com```
```winatp-gw-eus.microsoft.com```
```wsus1eastprod.blob.core.windows.net```
```wsus1westprod.blob.core.windows.net```
```wsus2eastprod.blob.core.windows.net```
```wsus2westprod.blob.core.windows.net```
```automatedirstrprdcus.blob.core.windows.net```
```automatedirstrprdeus.blob.core.windows.net``` > [!NOTE] -> If you are using Windows Defender Antivirus in your environment, please refer to the following article for details on allowing connections to the Windows Defender Antivirus cloud service: https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-antivirus/configure-network-connections-windows-defender-antivirus +> If you are using Windows Defender Antivirus in your environment, please refer to the following article for details on allowing connections to the Windows Defender Antivirus cloud service: https://docs.microsoft.com/windows/security/threat-protection/windows-defender-antivirus/configure-network-connections-windows-defender-antivirus If a proxy or firewall is blocking anonymous traffic, as Microsoft Defender ATP sensor is connecting from system context, make sure anonymous traffic is permitted in the previously listed URLs.