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/13] 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/13] 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/13] 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/13] 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/13] 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/13] 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/13] 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. From 694987b5c48b3b4fdf913937863d7f17e69f411b Mon Sep 17 00:00:00 2001 From: John Liu <49762389+ShenLanJohn@users.noreply.github.com> Date: Wed, 5 Feb 2020 10:21:36 -0800 Subject: [PATCH 13/13] CAT Auto Pulish for Windows Release Messages - CAT_AutoPublish_20200205094458 (#1981) Co-authored-by: Direesh Kumar Kandakatla--- ...ndows-7-and-windows-server-2008-r2-sp1.yml | 4 +-- .../windows-message-center.yml | 29 ++++--------------- 2 files changed, 7 insertions(+), 26 deletions(-) diff --git a/windows/release-information/status-windows-7-and-windows-server-2008-r2-sp1.yml b/windows/release-information/status-windows-7-and-windows-server-2008-r2-sp1.yml index a5cd7e2724..10ac2c6e75 100644 --- a/windows/release-information/status-windows-7-and-windows-server-2008-r2-sp1.yml +++ b/windows/release-information/status-windows-7-and-windows-server-2008-r2-sp1.yml @@ -60,7 +60,7 @@ sections: - type: markdown text: " This table offers a summary of current active issues and those issues that have been resolved in the last 30 days.
- Summary Originating update Status Last updated + Custom wallpaper displays as black
Using a custom image set to \"Stretch\" might not display as expected.
See details >January 14, 2020
KB4534310Mitigated January 27, 2020
12:27 PM PTCustom wallpaper displays as black
Using a custom image set to \"Stretch\" might not display as expected.
See details >January 14, 2020
KB4534310Mitigated
KB4539601January 27, 2020
12:27 PM PTMSRT might fail to install and be re-offered from Windows Update or WSUS
The November 2019 update for Windows Malicious Software Removal Tool (MSRT) might fail to install from WU/WSUS.
See details >Resolved January 23, 2020
02:08 PM PTTLS connections might fail or timeout
Transport Layer Security (TLS) connections might fail or timeout when connecting or attempting a resumption.
See details >October 08, 2019
KB4519976Mitigated External November 05, 2019
03:36 PM PT@@ -79,7 +79,7 @@ sections: - type: markdown text: " IA64 and x64 devices may fail to start after installing updates
After installing updates released on or after August 13, 2019, IA64 and x64 devices using EFI Boot may fail to start.
See details >August 13, 2019
KB4512506Mitigated August 17, 2019
12:59 PM PT" diff --git a/windows/release-information/windows-message-center.yml b/windows/release-information/windows-message-center.yml index 7cd86d392d..6cba12b21c 100644 --- a/windows/release-information/windows-message-center.yml +++ b/windows/release-information/windows-message-center.yml @@ -38,11 +38,11 @@ sections: image: src: http://docs.microsoft.com/media/common/i_article.svg title: What’s new in Windows 10, version 1909 - - href: https://docs.microsoft.com/windows/windows-10/release-information - html: Visit the Windows 10 release information page > + - href: https://techcommunity.microsoft.com/t5/Windows-IT-Pro-Blog/Windows-10-update-servicing-cadence/ba-p/222376 + html: Learn more > image: - src: https://docs.microsoft.com/media/common/i_download-monitor.svg - title: Find a list of currently supported versions and previous releases + src: https://docs.microsoft.com/media/common/i_investigate.svg + title: Windows 10 update servicing cadence - title: Recent announcements - items: @@ -50,6 +50,7 @@ sections: text: "
- Details Originating update Status History + Custom wallpaper displays as black After installing KB4534310, your desktop wallpaper when set to \"Stretch\" might display as black.Affected platforms:
- Client: Windows 7 SP1
- Server: Windows Server 2008 R2 SP1
Workaround: To mitigate the issue, you can do one of the following:
- Set your custom image to an option other than \"Stretch\", such as “Fill”, “Fit”, “Tile”, or “Center”, or
- Choose a custom wallpaper that matches the resolution of your desktop.
Next steps: We are working on a resolution and estimate a solution will be available mid-February, which will be released to all customers running Windows 7 and Windows Server 2008 R2 SP1.
Back to topJanuary 14, 2020
KB4534310Mitigated Last updated:
January 27, 2020
12:27 PM PT
Opened:
January 24, 2020
09:15 AM PTCustom wallpaper displays as black After installing KB4534310, your desktop wallpaper when set to \"Stretch\" might display as black.Affected platforms:
- Client: Windows 7 SP1
- Server: Windows Server 2008 R2 SP1
Workaround: To mitigate the issue, you can do one of the following:
- Set your custom image to an option other than \"Stretch\", such as “Fill”, “Fit”, “Tile”, or “Center”, or
- Choose a custom wallpaper that matches the resolution of your desktop.
Next steps: We are working on a resolution and estimate a solution will be available mid-February, which will be released to all customers running Windows 7 and Windows Server 2008 R2 SP1.
Back to topJanuary 14, 2020
KB4534310Mitigated
KB4539601Last updated:
January 27, 2020
12:27 PM PT
Opened:
January 24, 2020
09:15 AM PT"
+ Message Date Windows Search shows blank box We are aware of a temporary server-side issue causing Windows search to show a blank box. This issue has been resolved for most users and in some cases, you might need to restart your device. We are working diligently to fully resolve the issue and will provide an update once resolved.February 05, 2020
09:32 AM PTJanuary 2020 Windows 10, version 1909 \"D\" optional release is available. The January 2020 optional monthly “D” release for Windows 10, version 1909 and Windows 10, version 1903 is now available. For more information on the different types of monthly quality updates, see our Windows 10 update servicing cadence primer. Follow @WindowsUpdate for the latest on the availability of this release.January 28, 2020
08:00 AM PTJanuary 2020 Windows \"C\" optional release is available. The January 2020 optional monthly “C” release for all supported versions of Windows is now available. For more information on the different types of monthly quality updates, see our Windows 10 update servicing cadence primer. Follow @WindowsUpdate for the latest on the availability of this release.January 23, 2020
12:00 PM PT@@ -92,25 +93,5 @@ sections: Windows 7 has reached end of support Windows 7 reached end of support on January 14, 2020. If your organization has not yet been able to complete your transition from Windows 7 to Windows 10, and want to continue to receive security updates while you complete your upgrade projects, please read How to get Extended Security Updates for eligible Windows devices. For more information on end of service dates for currently supported versions of Windows 10, see the Windows lifecycle fact sheet.January 15, 2020
10:00 AM PTWindows 10, version 1903 starting to roll out to devices running Windows 10, version 1803 and earlier We are now beginning to build and train the machine learning (ML) based rollout process to update devices running Windows 10, version 1803 (the April 2018 Update) and earlier versions of Windows 10, to ensure we can continue to service these devices and provide the latest updates, security updates, and improvements.June 18, 2019
02:00 PM PTWindows 10, version 1903 available by selecting “Check for updates” Windows 10, version 1903 is now available for any user who manually selects “Check for updates” via Windows Update. The recommended servicing status is Semi-Annual Channel.June 06, 2019
06:00 PM PT- Windows 10, version 1903 rollout begins
The Windows 10 May 2019 Update (Windows 10, version 1903) is available today to commercial customers via Windows Server Update Services (WSUS), Windows Update for Business, and the Volume Licensing Service Center (VLSC)—and to end users who manually select “Check for updates.” We are slowly throttling up availability while we carefully monitor data and feedback.May 21, 2019
10:00 AM PT- What’s new in Windows Update for Business
We are enhancing and expanding the capabilities of Windows Update for Business to make the move to the cloud even easier. From simplified branch readiness options to better control over deadlines and reboots, read about the enhancements to Windows Update for Business as a part of Windows 10, version 1903.May 21, 2019
10:00 AM PT- What’s new for businesses and IT pros in Windows 10
Explore the newest capabilities for businesses and IT in the latest feature update in the areas of intelligent security, simplified updates, flexible management, and enhanced productivity.May 21, 2019
10:00 AM PT- Reminder: Install the latest SSU for a smoother update experience We strongly recommend that you install the latest servicing stack update (SSU) before installing any Windows update; especially as an SSU may be a prerequisite for some updates. If you have difficulty installing Windows updates, verify that you have installed the latest SSU package for your version of Windows and then try installing the update again. Links to the latest SSU are always provided in the “How to get this update” section of each update KB article (e.g., KB4494441). For more information about SSUs, see our Servicing stack updates guidance.May 14, 2019
10:00 AM PT- Take action: Update Remote Desktop Services on older versions of Windows Today, we released fixes for a critical wormable, remote code execution vulnerability (CVE-2019-0708) in Remote Desktop Services—formerly known as Terminal Services. This vulnerability affects Windows 7, Windows Server 2008 R2, and earlier versions of Windows nearing end of support. It does not affect Windows 8, Windows Server 2012, or newer operating systems. While we have not observed attacks exploiting this vulnerability, affected systems should be patched with priority. Here is what you need to know:-
-Call to action: --
-Given the potential impact to customers and their businesses, we have also released security updates for Windows XP and Windows Server 2003, even though these operating systems have reached end of support (except by custom support agreements). While we recommend that you upgrade to the current version of Windows to benefit from the latest security protections, these updates are available from the Microsoft Update Catalog only. For more information, see KB4500705. -- If you are running a supported version of Windows and have automatic updates enabled, you are automatically protected and do not need to take any action.
-- If you are managing updates on behalf of your organization, you should download the latest updates from the Microsoft Security Update Guide and apply them to your Windows 7, Windows Server 2008 R2, and Windows Server 2008 devices as soon as possible.
-May 14, 2019
10:00 AM PTReminder: Windows 10 update servicing cadence This month we received questions about the cadence of updates we released in April and May 2019. Here's a quick recap of our releases and servicing cadence:-
--
- For more information about the Windows 10 update servicing cadence, please see the Window IT Pro blog.- April 9, 2019 was the regular Update Tuesday release for all versions of Windows.
-- May 1, 2019 was an \\\"optional,\\\" out of band non-security update (OOB) for Windows 10, version 1809. It was released to Microsoft Catalog and WSUS, providing a critical fix for our OEM partners.
-- May 3, 2019 was the \\\"optional\\\" Windows 10, version 1809 \\\"C\\\" release for April. This update contained important Japanese era packages for commercial customers to preview. It was released later than expected and mistakenly targeted as \\\"required\\\" (instead of \\\"optional\\\") for consumers, which pushed the update out to customers and required a reboot. Within 24 hours of receiving customer reports, we corrected the targeting logic and mitigated the issue.
-May 10, 2019
10:00 AM PT