From d30776d66a23d147d1a59f5f4aa4a44ba2d43c9d Mon Sep 17 00:00:00 2001 From: Greg Lindsay Date: Thu, 8 Aug 2019 14:57:17 -0700 Subject: [PATCH 01/19] v 1.6 --- windows/deployment/upgrade/setupdiag.md | 1062 ++++++++++++----------- 1 file changed, 538 insertions(+), 524 deletions(-) diff --git a/windows/deployment/upgrade/setupdiag.md b/windows/deployment/upgrade/setupdiag.md index c9dc96d32e..78a75cc04e 100644 --- a/windows/deployment/upgrade/setupdiag.md +++ b/windows/deployment/upgrade/setupdiag.md @@ -1,524 +1,538 @@ ---- -title: SetupDiag -ms.reviewer: -manager: laurawi -ms.author: greglin -description: How to use the SetupDiag tool to diagnose Windows Setup errors -keywords: deploy, troubleshoot, windows, 10, upgrade, update, setup, diagnose -ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: deploy -audience: itpro author: greg-lindsay -ms.localizationpriority: medium -ms.topic: article ---- - -# SetupDiag - -**Applies to** -- Windows 10 - ->[!NOTE] ->This is a 300 level topic (moderate advanced).
->See [Resolve Windows 10 upgrade errors](resolve-windows-10-upgrade-errors.md) for a full list of topics in this article.
- - [![Download SetupDiag](../images/download.png)](https://go.microsoft.com/fwlink/?linkid=870142) - -## About SetupDiag - -Current version of SetupDiag: 1.5.0.0 - -SetupDiag is a standalone diagnostic tool that can be used to obtain details about why a Windows 10 upgrade was unsuccessful. - -SetupDiag works by examining Windows Setup log files. It attempts to parse these log files to determine the root cause of a failure to update or upgrade the computer to Windows 10. SetupDiag can be run on the computer that failed to update, or you can export logs from the computer to another location and run SetupDiag in offline mode. - -To quickly use SetupDiag on your current computer: -1. Verify that your system meets the [requirements](#requirements) described below. If needed, install the [.NET framework 4.6](https://www.microsoft.com/download/details.aspx?id=48137). -2. [Download SetupDiag](https://go.microsoft.com/fwlink/?linkid=870142). -3. If your web browser asks what to do with the file, choose **Save**. By default, the file will be saved to your **Downloads** folder. You can also save it to a different location if desired by using **Save As**. -4. When SetupDiag has finished downloading, open the folder where you downloaded the file. As mentioned above, by default this is your **Downloads** folder which is displayed in File Explorer under **Quick access** in the left navigation pane. -5. Double-click the **SetupDiag** file to run it. Click **Yes** if you are asked to approve running the program. - - Double-clicking the file to run it will automatically close the command window when SetupDiag has completed its analysis. If you wish to keep this window open instead, and review the messages that you see, run the program by typing **SetupDiag** at the command prompt instead of double-clicking it. You will need to change directories to the location of SetupDiag to run it this way. -6. A command window will open while SetupDiag diagnoses your computer. Wait for this to finish. -7. When SetupDiag finishes, two files will be created in the same folder where you double-clicked SetupDiag. One is a configuration file, the other is a log file. -8. Use Notepad to open the log file: **SetupDiagResults.log**. -9. Review the information that is displayed. If a rule was matched this can tell you why the computer failed to upgrade, and potentially how to fix the problem. See the [Text log sample](#text-log-sample) below. - -For instructions on how to run the tool in offline mode and with more advanced options, see the [Parameters](#parameters) and [Examples](#examples) sections below. - -The [Release notes](#release-notes) section at the bottom of this topic has information about recent updates to this tool. - -## Requirements - -1. The destination OS must be Windows 10. -2. [.NET Framework 4.6](https://www.microsoft.com/download/details.aspx?id=48137) must be installed. If you are not sure what version of .NET is currently installed, see [How to: Determine Which .NET Framework Versions Are Installed](https://docs.microsoft.com/dotnet/framework/migration-guide/how-to-determine-which-versions-are-installed). You can also use the following command-line query to display the installed v4 versions: - - ``` - reg query "HKLM\SOFTWARE\Microsoft\Net Framework Setup\NDP\v4" /s - ``` - -## Parameters - -| Parameter | Description | -| --- | --- | -| /? | | -| /Output:\ | | -| /LogsPath:\ |
  • This optional parameter tells SetupDiag.exe where to find the log files for an offline analysis. These log files can be in a flat folder format, or containing multiple subdirectories. SetupDiag will recursively search all child directories.
| -| /ZipLogs:\ |
  • This optional parameter tells SetupDiag.exe to create a zip file containing the results and all the log files it parsed. The zip file is created in the same directory where SetupDiag.exe is run.
  • Default: If not specified, a value of 'true' is used.
| -| /Format:\ |
  • This optional parameter can be used to output log files in xml or JSON format. If this parameter is not specified, text format is used by default.
| -| /Scenario:\[Recovery\] |
  • This optional parameter instructs SetupDiag.exe to look for and process reset and recovery logs and ignore setup/upgrade logs.
| -| /Verbose |
  • This optional parameter will output much more data to a log file. By default, SetupDiag will only produce a log file entry for serious errors. Using **/Verbose** will cause SetupDiag to always produce an additional log file with debugging details. These details can be useful when reporting a problem with SetupDiag.
| -| /NoTel |
  • This optional parameter tells SetupDiag.exe not to send diagnostic telemetry to Microsoft.
| -| /AddReg |
  • This optional parameter instructs SetupDiag.exe to add failure information to the registry in offline mode. By default, SetupDiag will add failure information to the registry in online mode only. Registry data is added to the following location on the system where SetupDiag is run: **HKLM\SYSTEM\Setup\MoSetup\Volatile\SetupDiag**.
| - -Note: The **/Mode** parameter is deprecated in version 1.4.0.0 of SetupDiag. -- In previous versions, this command was used with the LogsPath parameter to specify that SetupDiag should run in an offline manner to analyze a set of log files that were captured from a different computer. In version 1.4.0.0 when you specify /LogsPath then SetupDiag will automatically run in offline mode, therefore the /Mode parameter is not needed. - -### Examples: - -In the following example, SetupDiag is run with default parameters (online mode, results file is SetupDiagResults.log in the same folder where SetupDiag is run). - -``` -SetupDiag.exe -``` - -In the following example, SetupDiag is run in online mode (this is the default). It will know where to look for logs on the current (failing) system, so there is no need to gather logs ahead of time. A custom location for results is specified. - -``` -SetupDiag.exe /Output:C:\SetupDiag\Results.log -``` - -The following example uses the /Output parameter to save results to a path name that contains a space: - -``` -SetupDiag /Output:"C:\Tools\SetupDiag\SetupDiag Results\Results.log" -``` - -The following example specifies that SetupDiag is to run in offline mode, and to process the log files found in **D:\Temp\Logs\LogSet1**. - -``` -SetupDiag.exe /Output:C:\SetupDiag\Results.log /LogsPath:D:\Temp\Logs\LogSet1 -``` - -The following example sets recovery scenario in offline mode. In the example, SetupDiag will search for reset/recovery logs in the specified LogsPath location and output the resuts to the directory specified by the /Output parameter. - -``` -SetupDiag.exe /Output:C:\SetupDiag\RecoveryResults.log /LogsPath:D:\Temp\Cabs\PBR_Log /Scenario:Recovery -``` - -The following example sets recovery scenario in online mode. In the example, SetupDiag will search for reset/recovery logs on the current system and output results in XML format. - -``` -SetupDiag.exe /Scenario:Recovery /Format:xml -``` - - -## Log files - -[Windows Setup Log Files and Event Logs](https://docs.microsoft.com/windows-hardware/manufacture/desktop/windows-setup-log-files-and-event-logs) has information about where logs are created during Windows Setup. For offline processing, you should run SetupDiag against the contents of the entire folder. For example, depending on when the upgrade failed, copy one of the following folders to your offline location: - -\\$Windows.~bt\sources\panther -
\\$Windows.~bt\Sources\Rollback -
\Windows\Panther -
\Windows\Panther\NewOS - -If you copy the parent folder and all sub-folders, SetupDiag will automatically search for log files in all subdirectories. - -## Setup bug check analysis - -When Microsoft Windows encounters a condition that compromises safe system operation, the system halts. This condition is called a bug check. It is also commonly referred to as a system crash, a kernel error, a Stop error, or BSOD. Typically a hardware device, hardware driver, or related software causes this error. - -If crash dumps [are enabled](https://docs.microsoft.com/windows-hardware/drivers/debugger/enabling-a-kernel-mode-dump-file) on the system, a crash dump file is created. If the bug check occurs during an upgrade, Windows Setup will extract a minidump (setupmem.dmp) file. SetupDiag can also debug these setup related minidumps. - -To debug a setup related bug check, you must: -- Specify the **/LogsPath** parameter. You cannot debug memory dumps in online mode. -- Gather the setup memory dump file (setupmem.dmp) from the failing system. - - Setupmem.dmp will be created in either **%SystemDrive%\$Windows.~bt\Sources\Rollback**, or in **%WinDir%\Panther\NewOS\Rollback** depending on when the bug check occurs. -- Install the [Windows Debugging Tools](https://docs.microsoft.com/windows-hardware/drivers/debugger/debugger-download-tools) on the computer that runs SetupDiag. - -In the following example, the **setupmem.dmp** file is copied to the **D:\Dump** directory and the Windows Debugging Tools are installed prior to running SetupDiag: - -``` -SetupDiag.exe /Output:C:\SetupDiag\Dumpdebug.log /LogsPath:D:\Dump -``` - -## Known issues - -1. Some rules can take a long time to process if the log files involved are large. -2. If the failing computer is opted into the Insider program and getting regular pre-release updates, or an update is already pending on the computer when SetupDiag is run, it can encounter problems trying to open these log files. This will likely cause a failure to determine a root cause. In this case, try gathering the log files and running SetupDiag in offline mode. - - -## Sample output - -The following is an example where SetupDiag is run in offline mode. - -``` -D:\SetupDiag>SetupDiag.exe /output:c:\setupdiag\result.xml /logspath:D:\Tests\Logs\f55be736-beed-4b9b-aedf-c133536c946e /format:xml - -SetupDiag v1.5.0.0 -Copyright (c) Microsoft Corporation. All rights reserved. - -Searching for setup logs... -Found d:\tests\Logs\f55be736-beed-4b9b-aedf-c133536c946e\setupact_6.log with update date 6/12/2019 2:44:20 PM to be the correct setup log. -Found d:\tests\Logs\f55be736-beed-4b9b-aedf-c133536c946e\setupact_1.log with update date 6/12/2019 2:45:19 PM to be the correct rollback log. - -Gathering baseline information from setup logs... - -SetupDiag: processing rule: CompatScanOnly. -...No match. - -... - -SetupDiag: processing rule: DISMImageSessionFailure. -.. -Error: SetupDiag reports DISM provider failure. -Last Phase: Safe OS -Last Operation: Apply Optional Component status -Message = Failed to get the IDismImage instance from the image session -Function: CDISMManager::CloseImageSession -Error: 0x800706ba -Recommend you re-download the update source files, reboot and try the update again. - -SetupDiag found 1 matching issue. - -SetupDiag results were logged to: c:\setupdiag\results.xml -Logs ZipFile created at: c:\setupdiag\Logs_14.zip - -``` - -## Rules - -When searching log files, SetupDiag uses a set of rules to match known issues. These rules are contained in the rules.xml file which is extracted when SetupDiag is run. The rules.xml file might be updated as new versions of SetupDiag are made available. See [Release notes](#release-notes) for more information. - -Each rule name and its associated unique rule identifier are listed with a description of the known upgrade-blocking issue. In the rule descriptions, the term "down-level" refers to the first phase of the upgrade process, which runs under the starting OS. - -1. CompatScanOnly - FFDAFD37-DB75-498A-A893-472D49A1311D - - This rule indicates that setup.exe was called with a specific command line parameter that indicated setup was to do a compat scan only, not an upgrade. -2. BitLockerHardblock - C30152E2-938E-44B8-915B-D1181BA635AE - - This is a block when the target OS does not support BitLocker, yet the host OS has BitLocker enabled. -3. VHDHardblock - D9ED1B82-4ED8-4DFD-8EC0-BE69048978CC - - This block happens when the host OS is booted to a VHD image. Upgrade is not supported when the host OS is booted from a VHD image. -4. PortableWorkspaceHardblock - 5B0D3AB4-212A-4CE4-BDB9-37CA404BB280 - - This indicates that the host OS is booted from a Windows To-Go device (USB key). Upgrade is not supported in the Windows To-Go environment. -5. AuditModeHardblock - A03BD71B-487B-4ACA-83A0-735B0F3F1A90 - - This block indicates that the host OS is currently booted into Audit Mode, a special mode for modifying the Windows state. Upgrade is not supported from this state. -6. SafeModeHardblock - 404D9523-B7A8-4203-90AF-5FBB05B6579B - - This block indicates that the host OS is booted to Safe Mode, where upgrade is not supported. -7. InsufficientSystemPartitionDiskSpaceHardblock - 3789FBF8-E177-437D-B1E3-D38B4C4269D1 - - This block is encountered when setup determines the system partition (where the boot loader files are stored) does not have enough space to be serviced with the newer boot files required during the upgrade process. -8. CompatBlockedApplicationAutoUninstall – BEBA5BC6-6150-413E-8ACE-5E1EC8D34DD5 - - This rule indicates there is an application that needs to be uninstalled before setup can continue. -9. CompatBlockedApplicationDismissable - EA52620B-E6A0-4BBC-882E-0686605736D9 - - When running setup in /quiet mode, there are dismissible application messages that turn into blocks unless the command line also specifies “/compat /ignore warning”. This rule indicates setup was executed in /quiet mode but there is an application dismissible block message that have prevented setup from continuing. -10. CompatBlockedApplicationManualUninstall - 9E912E5F-25A5-4FC0-BEC1-CA0EA5432FF4 - - This rule indicates that an application without an Add/Remove Programs entry, is present on the system and blocking setup from continuing. This typically requires manual removal of the files associated with this application to continue. -11. HardblockDeviceOrDriver - ED3AEFA1-F3E2-4F33-8A21-184ADF215B1B - - This indicates a device driver that is loaded on the host OS is not compatible with the newer OS version and needs to be removed prior to the upgrade. -12. HardblockMismatchedLanguage - 60BA8449-CF23-4D92-A108-D6FCEFB95B45 - - This rule indicates the host OS and the target OS language editions do not match. -13. HardblockFlightSigning - 598F2802-3E7F-4697-BD18-7A6371C8B2F8 - - This rule indicates the target OS is a pre-release, Windows Insider build, and the target machine has Secure Boot enabled. This will block the pre-release signed build from booting if installed on the machine. -14. DiskSpaceBlockInDownLevel - 6080AFAC-892E-4903-94EA-7A17E69E549E - - This failure indicates the system ran out of disk space during the down-level operations of upgrade. -15. DiskSpaceFailure - 981DCBA5-B8D0-4BA7-A8AB-4030F7A10191 - - This failure indicates the system drive ran out of available disk space at some point after the first reboot into the upgrade. -16. DeviceInstallHang - 37BB1C3A-4D79-40E8-A556-FDA126D40BC6 - - This failure rule indicates the system hung or bug checked during the device installation phase of upgrade. -17. DebugSetupMemoryDump - C7C63D8A-C5F6-4255-8031-74597773C3C6 - - This offline only rule indicates a bug check occurred during setup. If the debugger tools are available on the system, SetupDiag will debug the memory dump and provide details. -18. DebugSetupCrash - CEEBA202-6F04-4BC3-84B8-7B99AED924B1 - - This offline only rule indicates that setup itself encountered a failure that resulted in a process memory dump. If the debugger tools are installed on the system, SetupDiag will debug the memory dump and give further details. -19. DebugMemoryDump - 505ED489-329A-43F5-B467-FCAAF6A1264C - - This offline only rule is for any memory.dmp file that resulted during the setup/upgrade operation. If the debugger tools are installed on the system, SetupDiag will debug the memory dump and give further details. -20. BootFailureDetected - 4FB446C2-D4EC-40B4-97E2-67EB19D1CFB7 - - This rule indicates a boot failure occurred during a specific phase of the update. The rule will indicate the failure code and phase for diagnostic purposes. -21. FindDebugInfoFromRollbackLog - 9600EB68-1120-4A87-9FE9-3A4A70ACFC37 - - This rule will determine and give details when a bug check occurs during the setup/upgrade process that resulted in a memory dump, but without the requirement of the debugger package being on the executing machine. -22. AdvancedInstallerFailed - 77D36C96-32BE-42A2-BB9C-AAFFE64FCADC - - Finds fatal advanced installer operations that cause setup failures. -23. FindMigApplyUnitFailure - A4232E11-4043-4A37-9BF4-5901C46FD781 - - Detects a migration unit failure that caused the update to fail. This rule will output the name of the migration plug-in as well as the error code it produced for diagnostic purposes. -24. FindMigGatherUnitFailure - D04C064B-CD77-4E64-96D6-D26F30B4EE29 - - Detects a migration gather unit failure that caused the update to fail. This rule will output the name of the gather unit/plug-in as well as the error code it produced for diagnostic purposes. -25. CriticalSafeOSDUFailure - 73566DF2-CA26-4073-B34C-C9BC70DBF043 - - This rule indicates a failure occurred while updating the SafeOS image with a critical dynamic update. It will indicate the phase and error code that occurred while attempting to update the SafeOS image for diagnostic purposes. -26. UserProfileCreationFailureDuringOnlineApply - 678117CE-F6A9-40C5-BC9F-A22575C78B14 - - Indicates there was a critical failure while creating or modifying a User Profile during the online apply phase of the update. It will indicate the operation and error code associated with the failure for diagnostic purposes. -27. WimMountFailure - BE6DF2F1-19A6-48C6-AEF8-D3B0CE3D4549 - - This rule indicates the update failed to mount a wim file. It will show the name of the wim file as well as the error message and error code associated with the failure for diagnostic purposes. -28. FindSuccessfulUpgrade - 8A0824C8-A56D-4C55-95A0-22751AB62F3E - - Determines if the given setup was a success or not based off the logs. -29. FindSetupHostReportedFailure - 6253C04F-2E4E-4F7A-B88E-95A69702F7EC - - Gives information about failures surfaced early in the upgrade process by setuphost.exe -30. FindDownlevelFailure - 716334B7-F46A-4BAA-94F2-3E31BC9EFA55 - - Gives failure information surfaced by SetupPlatform, later in the down-level phase. -31. FindAbruptDownlevelFailure - 55882B1A-DA3E-408A-9076-23B22A0472BD - - Gives last operation failure information when the system fails in the down-level, but the log just ends abruptly. -32. FindSetupPlatformFailedOperationInfo - 307A0133-F06B-4B75-AEA8-116C3B53C2D1 - - Gives last phase and error information when SetupPlatform indicates a critical failure. This rule will indicate the operation and error associated with the failure for diagnostic purposes. -33. FindRollbackFailure - 3A43C9B5-05B3-4F7C-A955-88F991BB5A48 - - Gives last operation, failure phase and error information when a rollback occurs. -34. AdvancedInstallerGenericFailure – 4019550D-4CAA-45B0-A222-349C48E86F71 - - A rule to match AdvancedInstaller read/write failures in a generic sense. Will output the executable being called as well as the error code and exit code reported. -35. OptionalComponentFailedToGetOCsFromPackage – D012E2A2-99D8-4A8C-BBB2-088B92083D78 (NOTE: This rule replaces the OptionalComponentInstallFailure rule present in v1.10. - - This matches a specific Optional Component failure when attempting to enumerate components in a package. Will output the package name and error code. -36. OptionalComponentOpenPackageFailed – 22952520-EC89-4FBD-94E0-B67DF88347F6 - - Matches a specific Optional Component failure when attempting to open an OC package. Will output the package name and error code. -37. OptionalComponentInitCBSSessionFailed – 63340812-9252-45F3-A0F2-B2A4CA5E9317 - - Matches a specific failure where the advanced installer service or components aren’t operating or started on the system. Will output the error code. -38. UserProfileCreationFailureDuringFinalize – C6677BA6-2E53-4A88-B528-336D15ED1A64 - - Matches a specific User Profile creation error during the finalize phase of setup. Will output the failure code. -39. WimApplyExtractFailure – 746879E9-C9C5-488C-8D4B-0C811FF3A9A8 - - Matches a wim apply failure during wim extraction phases of setup. Will output the extension, path and error code. -40. UpdateAgentExpanderFailure – 66E496B3-7D19-47FA-B19B-4040B9FD17E2 - - Matches DPX expander failures in the down-level phase of update from WU. Will output the package name, function, expression and error code. -41. FindFatalPluginFailure – E48E3F1C-26F6-4AFB-859B-BF637DA49636 - - Matches any plug-in failure that setupplatform decides is fatal to setup. Will output the plugin name, operation and error code. -42. AdvancedInstallerFailed - 77D36C96-32BE-42A2-BB9C-AAFFE64FCADC - - Indicates critical failure in the AdvancedInstaller while running an installer package, includes the .exe being called, the phase, mode, component and error codes. -43. MigrationAbortedDueToPluginFailure - D07A24F6-5B25-474E-B516-A730085940C9 - - Indicates a critical failure in a migration plugin that causes setup to abort the migration. Will provide the setup operation, plug-in name, plug-in action and error code. -44. DISMAddPackageFailed - 6196FF5B-E69E-4117-9EC6-9C1EAB20A3B9 - - Indicates a critical failure during a DISM add package operation. Will specify the Package Name, DISM error and add package error code. -45. PlugInComplianceBlock - D912150B-1302-4860-91B5-527907D08960 - - Detects all compat blocks from Server compliance plug-ins. Outputs the block information and remediation. -46. AdvancedInstallerGenericFailure - 4019550D-4CAA-45B0-A222-349C48E86F71 - - Triggers on advanced installer failures in a generic sense, outputting the application called, phase, mode, component and error code. -47. FindMigGatherApplyFailure - A9964E6C-A2A8-45FF-B6B5-25E0BD71428E - - Shows errors when the migration Engine fails out on a gather or apply operation. Indicates the Migration Object (file or registry path), the Migration -48. OptionalComponentFailedToGetOCsFromPackage - D012E2A2-99D8-4A8C-BBB2-088B92083D78 - - Indicates the optional component (OC) migration operation failed to enumerate optional components from an OC Package. Outputs the package name and error code. -49. OptionalComponentOpenPackageFailed - 22952520-EC89-4FBD-94E0-B67DF88347F6 - - Indicates the optional component migration operation failed to open an optional component Package. Outputs the package name and error code. -50. OptionalComponentInitCBSSessionFailed - 63340812-9252-45F3-A0F2-B2A4CA5E9317 - - Indicates corruption in the servicing stack on the down-level system. Outputs the error code encountered while trying to initialize the servicing component on the existing OS. -51. DISMproviderFailure - D76EF86F-B3F8-433F-9EBF-B4411F8141F4 - - Triggers when a DISM provider (plug-in) fails in a critical operation. Outputs the file (plug-in name), function called + error code, and error message from the provider. -52. SysPrepLaunchModuleFailure - 7905655C-F295-45F7-8873-81D6F9149BFD - - Indicates a sysPrep plug-in has failed in a critical operation. Indicates the plug-in name, operation name and error code. -53. UserProvidedDriverInjectionFailure - 2247C48A-7EE3-4037-AFAB-95B92DE1D980 - - A driver provided to setup (via command line input) has failed in some way. Outputs the driver install function and error code. -54. PlugInComplianceBlock - D912150B-1302-4860-91B5-527907D08960 - - These are for server upgrades only, will output the compliance block and remediation required. -55. PreReleaseWimMountDriverFound - 31EC76CC-27EC-4ADC-9869-66AABEDB56F0 - - Captures failures due to having an unrecognized wimmount.sys driver registered on the system. -56. WinSetupBootFilterFailure - C073BFC8-5810-4E19-B53B-4280B79E096C - - Detects failures in the kernel mode file operations. -57. WimMountDriverIssue - 565B60DD-5403-4797-AE3E-BC5CB972FBAE - - Detects failures in WimMount.sys registration on the system. -58. DISMImageSessionFailure - 61B7886B-10CD-4C98-A299-B987CB24A11C - - Captures failure information when DISM fails to start an image session successfully. -59. FindEarlyDownlevelError - A4CE4FC9-5E10-4BB1-8ECE-3B29EB9D7C52 - - Detects failures in down-level phase before setup platform is invoked. -60. FindSPFatalError - A4028172-1B09-48F8-AD3B-86CDD7D55852 - - Captures failure information when setup platform encounters a fatal error. - - -## Release notes - -06/19/2019 - SetupDiag v1.5.0.0 is released with 60 rules, as a standalone tool available from the Download Center. - - All date and time outputs are updated to localized format per user request. - - Added setup Operation and Phase information to /verbose log. - - Added last Setup Operation and last Setup Phase information to most rules where it make sense (see new output below). - - Performance improvement in searching setupact.logs to determine correct log to parse. - - Added SetupDiag version number to text report (xml and json always had it). - - Added "no match" reports for xml and json per user request. - - Formatted Json output for easy readability. - - Performance improvements when searching for setup logs; this should be much faster now. - - Added 7 new rules: PlugInComplianceBlock, PreReleaseWimMountDriverFound, WinSetupBootFilterFailure, WimMountDriverIssue, DISMImageSessionFailure, FindEarlyDownlevelError, and FindSPFatalError. See the [Rules](#rules) section above for more information. - - Diagnostic information is now output to the registry at **HKLM\SYSTEM\Setup\MoSetup\Volatile\SetupDiag** - - The **/AddReg** command was added to toggle registry output. This setting is off by default for offline mode, and on by default for online mode. The command has no effect for online mode and enables registry output for offline mode. - - This registry key is deleted as soon as SetupDiag is run a second time, and replaced with current data, so it’s always up to date. - - This registry key also gets deleted when a new update instance is invoked. - - For an example, see [Sample registry key](#sample-registry-key). - -05/17/2019 - SetupDiag v1.4.1.0 is released with 53 rules, as a standalone tool available from the Download Center. - - This release dds the ability to find and diagnose reset and recovery failures (Push Button Reset). - -12/18/2018 - SetupDiag v1.4.0.0 is released with 53 rules, as a standalone tool available from the Download Center. - - This release includes major improvements in rule processing performance: ~3x faster rule processing performance! - - The FindDownlevelFailure rule is up to 10x faster. - - New rules have been added to analyze failures upgrading to Windows 10 version 1809. - - A new help link is available for resolving servicing stack failures on the down-level OS when the rule match indicates this type of failure. - - Removed the need to specify /Mode parameter. Now if you specify /LogsPath, it automatically assumes offline mode. - - Some functional and output improvements were made for several rules. - -07/16/2018 - SetupDiag v1.3.1 is released with 44 rules, as a standalone tool available from the Download Center. - - This release fixes a problem that can occur when running SetupDiag in online mode on a computer that produces a setupmem.dmp file, but does not have debugger binaries installed. - -07/10/2018 - SetupDiag v1.30 is released with 44 rules, as a standalone tool available from the Download Center. - - Bug fix for an over-matched plug-in rule. The rule will now correctly match only critical (setup failure) plug-in issues. - - New feature: Ability to output logs in JSON and XML format. - - Use "/Format:xml" or "/Format:json" command line parameters to specify the new output format. See [sample logs](#sample-logs) at the bottom of this topic. - - If the “/Format:xml” or “/Format:json” parameter is omitted, the log output format will default to text. - - New Feature: Where possible, specific instructions are now provided in rule output to repair the identified error. For example, instructions are provided to remediate known blocking issues such as uninstalling an incompatible app or freeing up space on the system drive. - - 3 new rules added: AdvancedInstallerFailed, MigrationAbortedDueToPluginFailure, DISMAddPackageFailed. - -05/30/2018 - SetupDiag v1.20 is released with 41 rules, as a standalone tool available from the Download Center. - - Fixed a bug in device install failure detection in online mode. - - Changed SetupDiag to work without an instance of setupact.log. Previously, SetupDiag required at least one setupact.log to operate. This change enables the tool to analyze update failures that occur prior to calling SetupHost. - - Telemetry is refactored to only send the rule name and GUID (or “NoRuleMatched” if no rule is matched) and the Setup360 ReportId. This change assures data privacy during rule processing. - -05/02/2018 - SetupDiag v1.10 is released with 34 rules, as a standalone tool available from the Download Center. - - A performance enhancment has been added to result in faster rule processing. - - Rules output now includes links to support articles, if applicable. - - SetupDiag now provides the path and name of files that it is processing. - - You can now run SetupDiag by simply clicking on it and then examining the output log file. - - An output log file is now always created, whether or not a rule was matched. - -03/30/2018 - SetupDiag v1.00 is released with 26 rules, as a standalone tool available from the Download Center. - -## Sample logs - -### Text log sample - -``` -Matching Profile found: OptionalComponentOpenPackageFailed - 22952520-EC89-4FBD-94E0-B67DF88347F6 -System Information: - Machine Name = Offline - Manufacturer = MSI - Model = MS-7998 - HostOSArchitecture = x64 - FirmwareType = PCAT - BiosReleaseDate = 20160727000000.000000+000 - BiosVendor = BIOS Date: 07/27/16 10:01:46 Ver: V1.70 - BiosVersion = 1.70 - HostOSVersion = 10.0.15063 - HostOSBuildString = 15063.0.amd64fre.rs2_release.170317-1834 - TargetOSBuildString = 10.0.16299.15 (rs3_release.170928-1534) - HostOSLanguageId = 2057 - HostOSEdition = Core - RegisteredAV = Windows Defender, - FilterDrivers = WdFilter,wcifs,WIMMount,luafv,Wof,FileInfo, - UpgradeStartTime = 3/21/2018 9:47:16 PM - UpgradeEndTime = 3/21/2018 10:02:40 PM - UpgradeElapsedTime = 00:15:24 - ReportId = dd4db176-4e3f-4451-aef6-22cf46de8bde - -Error: SetupDiag reports Optional Component installation failed to open OC Package. Package Name: Foundation, Error: 0x8007001F -Recommend you check the "Windows Modules Installer" service (Trusted Installer) is started on the system and set to automatic start, reboot and try the update again. Optionally, you can check the status of optional components on the system (search for Windows Features), uninstall any unneeded optional components, reboot and try the update again. -Error: SetupDiag reports down-level failure, Operation: Finalize, Error: 0x8007001F - 0x50015 -Refer to https://docs.microsoft.com/windows/deployment/upgrade/upgrade-error-codes for error information. -``` - -### XML log sample - -```xml - - - 1.5.0.0 - FindSPFatalError - A4028172-1B09-48F8-AD3B-86CDD7D55852 - - Offline - Gigabyte Technology Co., Ltd. - X470 AORUS ULTRA GAMING - 1033 - UEFI - 20180808000000.000000+000 - F3 - - 10.0.18908 - 18908.1000.amd64fre.rs_prerelease.190524-1658 - 10.0.18912.1001 (rs_prerelease.190601-1739) - - Professional - Windows Defender - - 2019-06-06T21:19:10 - - 2019-06-06T22:21:49 - 0001-01-01T00:00:00 - 0001-01-01T00:00:00 - - 0001-01-01T00:00:00 - 0001-01-01T00:00:00 - - Offline - MgUweCZk90KdwUiZ - F21F8FB6-00FD-4349-84FB-2AC75F389E73 - F21F8FB6-00FD-4349-84FB-2AC75F389E73 - - 2019-06-06 21:47:11, Error SP Error converting install time 5/2/2019 to structure[gle=0x00000057] - -Error: SetupDiag reports Fatal Error. -Last Setup Phase = Downlevel -Last Setup Operation: Gather data, scope: EVERYTHING -Error: 0x00000057 - LogEntry: 2019-06-06 21:47:11, Error SP Error converting install time 5/2/2019 to structure[gle=0x00000057] - LogEntry: 2019-06-06 21:47:11, Error SP Error converting install time 5/2/2019 to structure[gle=0x00000057] - -Refer to "https://docs.microsoft.com/windows/desktop/Debug/system-error-codes" for error information. - Err = 0x00000057, LastOperation = Gather data, scope: EVERYTHING, LastPhase = Downlevel - -``` - -### JSON log sample - -``` -{ - "Version":"1.5.0.0", - "ProfileName":"FindSPFatalError", - "ProfileGuid":"A4028172-1B09-48F8-AD3B-86CDD7D55852", - "SystemInfo":{ - "BiosReleaseDate":"20180808000000.000000+000", - "BiosVendor":"F3", - "BiosVersion":"F3", - "CV":"MgUweCZk90KdwUiZ", - "CommercialId":"Offline", - "FilterDrivers":"", - "FinalizeStartTime":"\/Date(-62135568000000-0800)\/", - "FirmwareType":"UEFI", - "HostOSArchitecture":"x64", - "HostOSBuildString":"18908.1000.amd64fre.rs_prerelease.190524-1658", - "HostOSEdition":"Professional", - "HostOSLanguageId":"", - "HostOSVersion":"", - "MachineName":"Offline", - "Manufacturer":"Gigabyte Technology Co., Ltd.", - "Model":"X470 AORUS ULTRA GAMING", - "PostOOBESuccessTime":"\/Date(-62135568000000-0800)\/", - "RegisteredAV":"Windows Defender", - "ReportId":"F21F8FB6-00FD-4349-84FB-2AC75F389E73", - "RollbackElapsedTime":"PT0S", - "RollbackEndTime":"\/Date(-62135568000000-0800)\/", - "RollbackStartTime":"\/Date(-62135568000000-0800)\/", - "SetupReportId":"F21F8FB6-00FD-4349-84FB-2AC75F389E73", - "TargetOSArchitecture":null, - "TargetOSBuildString":"10.0.18912.1001 (rs_prerelease.190601-1739)", - "TotalOfflineTime":"PT0S", - "UpgradeElapsedTime":"PT1H2M39S", - "UpgradeEndTime":"\/Date(1559884909000-0700)\/", - "UpgradeStartTime":"\/Date(1559881150000-0700)\/" - }, - "LogErrorLine":"2019-06-06 21:47:11, Error SP Error converting install time 5\/2\/2019 to structure[ - gle=0x00000057 - ]", - "FailureData":[ - "\u000aError: SetupDiag reports Fatal Error.\u000aLast Setup Phase = Downlevel\u000aLast Setup Operation: Gather data, scope: EVERYTHING\u000aError: 0x00000057", - "LogEntry: 2019-06-06 21:47:11, Error SP Error converting install time 5\/2\/2019 to structure[ - gle=0x00000057 - ]", - "LogEntry: 2019-06-06 21:47:11, Error SP Error converting install time 5\/2\/2019 to structure[ - gle=0x00000057 - ]", - "\u000aRefer to \"https:\/\/docs.microsoft.com\/en-us\/windows\/desktop\/Debug\/system-error-codes\" for error information." - ], - "FailureDetails":"Err = 0x00000057, LastOperation = Gather data, scope: EVERYTHING, LastPhase = Downlevel", - "DeviceDriverInfo":null, - "Remediation":[ - - ], - "SetupPhaseInfo":null, - "SetupOperationInfo":null -} -``` - -## Sample registry key - -![Addreg](./../images/addreg.png) - -## Related topics - -[Resolve Windows 10 upgrade errors: Technical information for IT Pros](https://docs.microsoft.com/windows/deployment/upgrade/resolve-windows-10-upgrade-errors) +--- +title: SetupDiag +ms.reviewer: +manager: laurawi +ms.author: greglin +description: How to use the SetupDiag tool to diagnose Windows Setup errors +keywords: deploy, troubleshoot, windows, 10, upgrade, update, setup, diagnose +ms.prod: w10 +ms.mktglfcycl: deploy +ms.sitesec: library +ms.pagetype: deploy +audience: itpro +author: greg-lindsay +ms.localizationpriority: medium +ms.topic: article +--- + +# SetupDiag + +**Applies to** +- Windows 10 + +>[!NOTE] +>This is a 300 level topic (moderate advanced).
+>See [Resolve Windows 10 upgrade errors](resolve-windows-10-upgrade-errors.md) for a full list of topics in this article.
+ + [![Download SetupDiag](../images/download.png)](https://go.microsoft.com/fwlink/?linkid=870142) + +## About SetupDiag + +Current version of SetupDiag: 1.6.0.0 + +SetupDiag is a standalone diagnostic tool that can be used to obtain details about why a Windows 10 upgrade was unsuccessful. + +SetupDiag works by examining Windows Setup log files. It attempts to parse these log files to determine the root cause of a failure to update or upgrade the computer to Windows 10. SetupDiag can be run on the computer that failed to update, or you can export logs from the computer to another location and run SetupDiag in offline mode. + +To quickly use SetupDiag on your current computer: +1. Verify that your system meets the [requirements](#requirements) described below. If needed, install the [.NET framework 4.6](https://www.microsoft.com/download/details.aspx?id=48137). +2. [Download SetupDiag](https://go.microsoft.com/fwlink/?linkid=870142). +3. If your web browser asks what to do with the file, choose **Save**. By default, the file will be saved to your **Downloads** folder. You can also save it to a different location if desired by using **Save As**. +4. When SetupDiag has finished downloading, open the folder where you downloaded the file. As mentioned above, by default this is your **Downloads** folder which is displayed in File Explorer under **Quick access** in the left navigation pane. +5. Double-click the **SetupDiag** file to run it. Click **Yes** if you are asked to approve running the program. + - Double-clicking the file to run it will automatically close the command window when SetupDiag has completed its analysis. If you wish to keep this window open instead, and review the messages that you see, run the program by typing **SetupDiag** at the command prompt instead of double-clicking it. You will need to change directories to the location of SetupDiag to run it this way. +6. A command window will open while SetupDiag diagnoses your computer. Wait for this to finish. +7. When SetupDiag finishes, two files will be created in the same folder where you double-clicked SetupDiag. One is a configuration file, the other is a log file. +8. Use Notepad to open the log file: **SetupDiagResults.log**. +9. Review the information that is displayed. If a rule was matched this can tell you why the computer failed to upgrade, and potentially how to fix the problem. See the [Text log sample](#text-log-sample) below. + +For instructions on how to run the tool in offline mode and with more advanced options, see the [Parameters](#parameters) and [Examples](#examples) sections below. + +The [Release notes](#release-notes) section at the bottom of this topic has information about recent updates to this tool. + +## Requirements + +1. The destination OS must be Windows 10. +2. [.NET Framework 4.6](https://www.microsoft.com/download/details.aspx?id=48137) must be installed. If you are not sure what version of .NET is currently installed, see [How to: Determine Which .NET Framework Versions Are Installed](https://docs.microsoft.com/dotnet/framework/migration-guide/how-to-determine-which-versions-are-installed). You can also use the following command-line query to display the installed v4 versions: + + ``` + reg query "HKLM\SOFTWARE\Microsoft\Net Framework Setup\NDP\v4" /s + ``` + +## Parameters + +| Parameter | Description | +| --- | --- | +| /? |
  • Displays interactive help
| +| /Output:\ |
  • This optional parameter enables you to specify the output file for results. This is where you will find what SetupDiag was able to determine. Only text format output is supported. UNC paths will work, provided the context under which SetupDiag runs has access to the UNC path. If the path has a space in it, you must enclose the entire path in double quotes (see the example section below).
  • Default: If not specified, SetupDiag will create the file **SetupDiagResults.log** in the same directory where SetupDiag.exe is run.
| +| /LogsPath:\ |
  • This optional parameter tells SetupDiag.exe where to find the log files for an offline analysis. These log files can be in a flat folder format, or containing multiple subdirectories. SetupDiag will recursively search all child directories.
| +| /ZipLogs:\ |
  • This optional parameter tells SetupDiag.exe to create a zip file containing the results and all the log files it parsed. The zip file is created in the same directory where SetupDiag.exe is run.
  • Default: If not specified, a value of 'true' is used.
| +| /Format:\ |
  • This optional parameter can be used to output log files in xml or JSON format. If this parameter is not specified, text format is used by default.
| +| /Scenario:\[Recovery\] |
  • This optional parameter instructs SetupDiag.exe to look for and process reset and recovery logs and ignore setup/upgrade logs.
| +| /Verbose |
  • This optional parameter will output much more data to a log file. By default, SetupDiag will only produce a log file entry for serious errors. Using **/Verbose** will cause SetupDiag to always produce an additional log file with debugging details. These details can be useful when reporting a problem with SetupDiag.
| +| /NoTel |
  • This optional parameter tells SetupDiag.exe not to send diagnostic telemetry to Microsoft.
| +| /AddReg |
  • This optional parameter instructs SetupDiag.exe to add failure information to the registry in offline mode. By default, SetupDiag will add failure information to the registry in online mode only. Registry data is added to the following location on the system where SetupDiag is run: **HKLM\SYSTEM\Setup\MoSetup\Volatile\SetupDiag**.
| + +Note: The **/Mode** parameter is deprecated in version 1.4.0.0 of SetupDiag. +- In previous versions, this command was used with the LogsPath parameter to specify that SetupDiag should run in an offline manner to analyze a set of log files that were captured from a different computer. In version 1.4.0.0 when you specify /LogsPath then SetupDiag will automatically run in offline mode, therefore the /Mode parameter is not needed. + +### Examples: + +In the following example, SetupDiag is run with default parameters (online mode, results file is SetupDiagResults.log in the same folder where SetupDiag is run). + +``` +SetupDiag.exe +``` + +In the following example, SetupDiag is run in online mode (this is the default). It will know where to look for logs on the current (failing) system, so there is no need to gather logs ahead of time. A custom location for results is specified. + +``` +SetupDiag.exe /Output:C:\SetupDiag\Results.log +``` + +The following example uses the /Output parameter to save results to a path name that contains a space: + +``` +SetupDiag /Output:"C:\Tools\SetupDiag\SetupDiag Results\Results.log" +``` + +The following example specifies that SetupDiag is to run in offline mode, and to process the log files found in **D:\Temp\Logs\LogSet1**. + +``` +SetupDiag.exe /Output:C:\SetupDiag\Results.log /LogsPath:D:\Temp\Logs\LogSet1 +``` + +The following example sets recovery scenario in offline mode. In the example, SetupDiag will search for reset/recovery logs in the specified LogsPath location and output the resuts to the directory specified by the /Output parameter. + +``` +SetupDiag.exe /Output:C:\SetupDiag\RecoveryResults.log /LogsPath:D:\Temp\Cabs\PBR_Log /Scenario:Recovery +``` + +The following example sets recovery scenario in online mode. In the example, SetupDiag will search for reset/recovery logs on the current system and output results in XML format. + +``` +SetupDiag.exe /Scenario:Recovery /Format:xml +``` + + +## Log files + +[Windows Setup Log Files and Event Logs](https://docs.microsoft.com/windows-hardware/manufacture/desktop/windows-setup-log-files-and-event-logs) has information about where logs are created during Windows Setup. For offline processing, you should run SetupDiag against the contents of the entire folder. For example, depending on when the upgrade failed, copy one of the following folders to your offline location: + +\\$Windows.~bt\sources\panther +
\\$Windows.~bt\Sources\Rollback +
\Windows\Panther +
\Windows\Panther\NewOS + +If you copy the parent folder and all sub-folders, SetupDiag will automatically search for log files in all subdirectories. + +## Setup bug check analysis + +When Microsoft Windows encounters a condition that compromises safe system operation, the system halts. This condition is called a bug check. It is also commonly referred to as a system crash, a kernel error, a Stop error, or BSOD. Typically a hardware device, hardware driver, or related software causes this error. + +If crash dumps [are enabled](https://docs.microsoft.com/windows-hardware/drivers/debugger/enabling-a-kernel-mode-dump-file) on the system, a crash dump file is created. If the bug check occurs during an upgrade, Windows Setup will extract a minidump (setupmem.dmp) file. SetupDiag can also debug these setup related minidumps. + +To debug a setup related bug check, you must: +- Specify the **/LogsPath** parameter. You cannot debug memory dumps in online mode. +- Gather the setup memory dump file (setupmem.dmp) from the failing system. + - Setupmem.dmp will be created in either **%SystemDrive%\$Windows.~bt\Sources\Rollback**, or in **%WinDir%\Panther\NewOS\Rollback** depending on when the bug check occurs. +- Install the [Windows Debugging Tools](https://docs.microsoft.com/windows-hardware/drivers/debugger/debugger-download-tools) on the computer that runs SetupDiag. + +In the following example, the **setupmem.dmp** file is copied to the **D:\Dump** directory and the Windows Debugging Tools are installed prior to running SetupDiag: + +``` +SetupDiag.exe /Output:C:\SetupDiag\Dumpdebug.log /LogsPath:D:\Dump +``` + +## Known issues + +1. Some rules can take a long time to process if the log files involved are large. +2. If the failing computer is opted into the Insider program and getting regular pre-release updates, or an update is already pending on the computer when SetupDiag is run, it can encounter problems trying to open these log files. This will likely cause a failure to determine a root cause. In this case, try gathering the log files and running SetupDiag in offline mode. + + +## Sample output + +The following is an example where SetupDiag is run in offline mode. + +``` +D:\SetupDiag>SetupDiag.exe /output:c:\setupdiag\result.xml /logspath:D:\Tests\Logs\f55be736-beed-4b9b-aedf-c133536c946e /format:xml + +SetupDiag v1.6.0.0 +Copyright (c) Microsoft Corporation. All rights reserved. + +Searching for setup logs... +Found d:\tests\Logs\f55be736-beed-4b9b-aedf-c133536c946e\setupact_6.log with update date 6/12/2019 2:44:20 PM to be the correct setup log. +Found d:\tests\Logs\f55be736-beed-4b9b-aedf-c133536c946e\setupact_1.log with update date 6/12/2019 2:45:19 PM to be the correct rollback log. + +Gathering baseline information from setup logs... + +SetupDiag: processing rule: CompatScanOnly. +...No match. + +... + +SetupDiag: processing rule: DISMImageSessionFailure. +.. +Error: SetupDiag reports DISM provider failure. +Last Phase: Safe OS +Last Operation: Apply Optional Component status +Message = Failed to get the IDismImage instance from the image session +Function: CDISMManager::CloseImageSession +Error: 0x800706ba +Recommend you re-download the update source files, reboot and try the update again. + +SetupDiag found 1 matching issue. + +SetupDiag results were logged to: c:\setupdiag\results.xml +Logs ZipFile created at: c:\setupdiag\Logs_14.zip + +``` + +## Rules + +When searching log files, SetupDiag uses a set of rules to match known issues. These rules are contained in the rules.xml file which is extracted when SetupDiag is run. The rules.xml file might be updated as new versions of SetupDiag are made available. See [Release notes](#release-notes) for more information. + +Each rule name and its associated unique rule identifier are listed with a description of the known upgrade-blocking issue. In the rule descriptions, the term "down-level" refers to the first phase of the upgrade process, which runs under the starting OS. + +1. CompatScanOnly - FFDAFD37-DB75-498A-A893-472D49A1311D + - This rule indicates that setup.exe was called with a specific command line parameter that indicated setup was to do a compat scan only, not an upgrade. +2. BitLockerHardblock - C30152E2-938E-44B8-915B-D1181BA635AE + - This is a block when the target OS does not support BitLocker, yet the host OS has BitLocker enabled. +3. VHDHardblock - D9ED1B82-4ED8-4DFD-8EC0-BE69048978CC + - This block happens when the host OS is booted to a VHD image. Upgrade is not supported when the host OS is booted from a VHD image. +4. PortableWorkspaceHardblock - 5B0D3AB4-212A-4CE4-BDB9-37CA404BB280 + - This indicates that the host OS is booted from a Windows To-Go device (USB key). Upgrade is not supported in the Windows To-Go environment. +5. AuditModeHardblock - A03BD71B-487B-4ACA-83A0-735B0F3F1A90 + - This block indicates that the host OS is currently booted into Audit Mode, a special mode for modifying the Windows state. Upgrade is not supported from this state. +6. SafeModeHardblock - 404D9523-B7A8-4203-90AF-5FBB05B6579B + - This block indicates that the host OS is booted to Safe Mode, where upgrade is not supported. +7. InsufficientSystemPartitionDiskSpaceHardblock - 3789FBF8-E177-437D-B1E3-D38B4C4269D1 + - This block is encountered when setup determines the system partition (where the boot loader files are stored) does not have enough space to be serviced with the newer boot files required during the upgrade process. +8. CompatBlockedApplicationAutoUninstall – BEBA5BC6-6150-413E-8ACE-5E1EC8D34DD5 + - This rule indicates there is an application that needs to be uninstalled before setup can continue. +9. CompatBlockedApplicationDismissable - EA52620B-E6A0-4BBC-882E-0686605736D9 + - When running setup in /quiet mode, there are dismissible application messages that turn into blocks unless the command line also specifies “/compat /ignore warning”. This rule indicates setup was executed in /quiet mode but there is an application dismissible block message that have prevented setup from continuing. +10. CompatBlockedApplicationManualUninstall - 9E912E5F-25A5-4FC0-BEC1-CA0EA5432FF4 + - This rule indicates that an application without an Add/Remove Programs entry, is present on the system and blocking setup from continuing. This typically requires manual removal of the files associated with this application to continue. +11. HardblockDeviceOrDriver - ED3AEFA1-F3E2-4F33-8A21-184ADF215B1B + - This indicates a device driver that is loaded on the host OS is not compatible with the newer OS version and needs to be removed prior to the upgrade. +12. HardblockMismatchedLanguage - 60BA8449-CF23-4D92-A108-D6FCEFB95B45 + - This rule indicates the host OS and the target OS language editions do not match. +13. HardblockFlightSigning - 598F2802-3E7F-4697-BD18-7A6371C8B2F8 + - This rule indicates the target OS is a pre-release, Windows Insider build, and the target machine has Secure Boot enabled. This will block the pre-release signed build from booting if installed on the machine. +14. DiskSpaceBlockInDownLevel - 6080AFAC-892E-4903-94EA-7A17E69E549E + - This failure indicates the system ran out of disk space during the down-level operations of upgrade. +15. DiskSpaceFailure - 981DCBA5-B8D0-4BA7-A8AB-4030F7A10191 + - This failure indicates the system drive ran out of available disk space at some point after the first reboot into the upgrade. +16. DeviceInstallHang - 37BB1C3A-4D79-40E8-A556-FDA126D40BC6 + - This failure rule indicates the system hung or bug checked during the device installation phase of upgrade. +17. DebugSetupMemoryDump - C7C63D8A-C5F6-4255-8031-74597773C3C6 + - This offline only rule indicates a bug check occurred during setup. If the debugger tools are available on the system, SetupDiag will debug the memory dump and provide details. +18. DebugSetupCrash - CEEBA202-6F04-4BC3-84B8-7B99AED924B1 + - This offline only rule indicates that setup itself encountered a failure that resulted in a process memory dump. If the debugger tools are installed on the system, SetupDiag will debug the memory dump and give further details. +19. DebugMemoryDump - 505ED489-329A-43F5-B467-FCAAF6A1264C + - This offline only rule is for any memory.dmp file that resulted during the setup/upgrade operation. If the debugger tools are installed on the system, SetupDiag will debug the memory dump and give further details. +20. BootFailureDetected - 4FB446C2-D4EC-40B4-97E2-67EB19D1CFB7 + - This rule indicates a boot failure occurred during a specific phase of the update. The rule will indicate the failure code and phase for diagnostic purposes. +21. FindDebugInfoFromRollbackLog - 9600EB68-1120-4A87-9FE9-3A4A70ACFC37 + - This rule will determine and give details when a bug check occurs during the setup/upgrade process that resulted in a memory dump, but without the requirement of the debugger package being on the executing machine. +22. AdvancedInstallerFailed - 77D36C96-32BE-42A2-BB9C-AAFFE64FCADC + - Finds fatal advanced installer operations that cause setup failures. +23. FindMigApplyUnitFailure - A4232E11-4043-4A37-9BF4-5901C46FD781 + - Detects a migration unit failure that caused the update to fail. This rule will output the name of the migration plug-in as well as the error code it produced for diagnostic purposes. +24. FindMigGatherUnitFailure - D04C064B-CD77-4E64-96D6-D26F30B4EE29 + - Detects a migration gather unit failure that caused the update to fail. This rule will output the name of the gather unit/plug-in as well as the error code it produced for diagnostic purposes. +25. CriticalSafeOSDUFailure - 73566DF2-CA26-4073-B34C-C9BC70DBF043 + - This rule indicates a failure occurred while updating the SafeOS image with a critical dynamic update. It will indicate the phase and error code that occurred while attempting to update the SafeOS image for diagnostic purposes. +26. UserProfileCreationFailureDuringOnlineApply - 678117CE-F6A9-40C5-BC9F-A22575C78B14 + - Indicates there was a critical failure while creating or modifying a User Profile during the online apply phase of the update. It will indicate the operation and error code associated with the failure for diagnostic purposes. +27. WimMountFailure - BE6DF2F1-19A6-48C6-AEF8-D3B0CE3D4549 + - This rule indicates the update failed to mount a wim file. It will show the name of the wim file as well as the error message and error code associated with the failure for diagnostic purposes. +28. FindSuccessfulUpgrade - 8A0824C8-A56D-4C55-95A0-22751AB62F3E + - Determines if the given setup was a success or not based off the logs. +29. FindSetupHostReportedFailure - 6253C04F-2E4E-4F7A-B88E-95A69702F7EC + - Gives information about failures surfaced early in the upgrade process by setuphost.exe +30. FindDownlevelFailure - 716334B7-F46A-4BAA-94F2-3E31BC9EFA55 + - Gives failure information surfaced by SetupPlatform, later in the down-level phase. +31. FindAbruptDownlevelFailure - 55882B1A-DA3E-408A-9076-23B22A0472BD + - Gives last operation failure information when the system fails in the down-level, but the log just ends abruptly. +32. FindSetupPlatformFailedOperationInfo - 307A0133-F06B-4B75-AEA8-116C3B53C2D1 + - Gives last phase and error information when SetupPlatform indicates a critical failure. This rule will indicate the operation and error associated with the failure for diagnostic purposes. +33. FindRollbackFailure - 3A43C9B5-05B3-4F7C-A955-88F991BB5A48 + - Gives last operation, failure phase and error information when a rollback occurs. +34. AdvancedInstallerGenericFailure – 4019550D-4CAA-45B0-A222-349C48E86F71 + - A rule to match AdvancedInstaller read/write failures in a generic sense. Will output the executable being called as well as the error code and exit code reported. +35. OptionalComponentFailedToGetOCsFromPackage – D012E2A2-99D8-4A8C-BBB2-088B92083D78 (NOTE: This rule replaces the OptionalComponentInstallFailure rule present in v1.10. + - This matches a specific Optional Component failure when attempting to enumerate components in a package. Will output the package name and error code. +36. OptionalComponentOpenPackageFailed – 22952520-EC89-4FBD-94E0-B67DF88347F6 + - Matches a specific Optional Component failure when attempting to open an OC package. Will output the package name and error code. +37. OptionalComponentInitCBSSessionFailed – 63340812-9252-45F3-A0F2-B2A4CA5E9317 + - Matches a specific failure where the advanced installer service or components aren’t operating or started on the system. Will output the error code. +38. UserProfileCreationFailureDuringFinalize – C6677BA6-2E53-4A88-B528-336D15ED1A64 + - Matches a specific User Profile creation error during the finalize phase of setup. Will output the failure code. +39. WimApplyExtractFailure – 746879E9-C9C5-488C-8D4B-0C811FF3A9A8 + - Matches a wim apply failure during wim extraction phases of setup. Will output the extension, path and error code. +40. UpdateAgentExpanderFailure – 66E496B3-7D19-47FA-B19B-4040B9FD17E2 + - Matches DPX expander failures in the down-level phase of update from WU. Will output the package name, function, expression and error code. +41. FindFatalPluginFailure – E48E3F1C-26F6-4AFB-859B-BF637DA49636 + - Matches any plug-in failure that setupplatform decides is fatal to setup. Will output the plugin name, operation and error code. +42. AdvancedInstallerFailed - 77D36C96-32BE-42A2-BB9C-AAFFE64FCADC + - Indicates critical failure in the AdvancedInstaller while running an installer package, includes the .exe being called, the phase, mode, component and error codes. +43. MigrationAbortedDueToPluginFailure - D07A24F6-5B25-474E-B516-A730085940C9 + - Indicates a critical failure in a migration plugin that causes setup to abort the migration. Will provide the setup operation, plug-in name, plug-in action and error code. +44. DISMAddPackageFailed - 6196FF5B-E69E-4117-9EC6-9C1EAB20A3B9 + - Indicates a critical failure during a DISM add package operation. Will specify the Package Name, DISM error and add package error code. +45. PlugInComplianceBlock - D912150B-1302-4860-91B5-527907D08960 + - Detects all compat blocks from Server compliance plug-ins. Outputs the block information and remediation. +46. AdvancedInstallerGenericFailure - 4019550D-4CAA-45B0-A222-349C48E86F71 + - Triggers on advanced installer failures in a generic sense, outputting the application called, phase, mode, component and error code. +47. FindMigGatherApplyFailure - A9964E6C-A2A8-45FF-B6B5-25E0BD71428E + - Shows errors when the migration Engine fails out on a gather or apply operation. Indicates the Migration Object (file or registry path), the Migration +48. OptionalComponentFailedToGetOCsFromPackage - D012E2A2-99D8-4A8C-BBB2-088B92083D78 + - Indicates the optional component (OC) migration operation failed to enumerate optional components from an OC Package. Outputs the package name and error code. +49. OptionalComponentOpenPackageFailed - 22952520-EC89-4FBD-94E0-B67DF88347F6 + - Indicates the optional component migration operation failed to open an optional component Package. Outputs the package name and error code. +50. OptionalComponentInitCBSSessionFailed - 63340812-9252-45F3-A0F2-B2A4CA5E9317 + - Indicates corruption in the servicing stack on the down-level system. Outputs the error code encountered while trying to initialize the servicing component on the existing OS. +51. DISMproviderFailure - D76EF86F-B3F8-433F-9EBF-B4411F8141F4 + - Triggers when a DISM provider (plug-in) fails in a critical operation. Outputs the file (plug-in name), function called + error code, and error message from the provider. +52. SysPrepLaunchModuleFailure - 7905655C-F295-45F7-8873-81D6F9149BFD + - Indicates a sysPrep plug-in has failed in a critical operation. Indicates the plug-in name, operation name and error code. +53. UserProvidedDriverInjectionFailure - 2247C48A-7EE3-4037-AFAB-95B92DE1D980 + - A driver provided to setup (via command line input) has failed in some way. Outputs the driver install function and error code. +54. PlugInComplianceBlock - D912150B-1302-4860-91B5-527907D08960 + - These are for server upgrades only, will output the compliance block and remediation required. +55. PreReleaseWimMountDriverFound - 31EC76CC-27EC-4ADC-9869-66AABEDB56F0 + - Captures failures due to having an unrecognized wimmount.sys driver registered on the system. +56. WinSetupBootFilterFailure - C073BFC8-5810-4E19-B53B-4280B79E096C + - Detects failures in the kernel mode file operations. +57. WimMountDriverIssue - 565B60DD-5403-4797-AE3E-BC5CB972FBAE + - Detects failures in WimMount.sys registration on the system. +58. DISMImageSessionFailure - 61B7886B-10CD-4C98-A299-B987CB24A11C + - Captures failure information when DISM fails to start an image session successfully. +59. FindEarlyDownlevelError - A4CE4FC9-5E10-4BB1-8ECE-3B29EB9D7C52 + - Detects failures in down-level phase before setup platform is invoked. +60. FindSPFatalError - A4028172-1B09-48F8-AD3B-86CDD7D55852 + - Captures failure information when setup platform encounters a fatal error. + + +## Release notes + +08/08/2019 - SetupDiag v1.6.0.0 is released with 60 rules, as a standalone tool available from the Download Center. + - Much improved log detection performance. What used to take up to a minute, should take around 10 seconds or less. + - Added Setup Operation and Setup Phase information to both the results log and the registry information. + - This is the last Operation and Phase that Setup was in when the failure occurred. + - Added detailed Setup Operation and Setup Phase information (and timing) to output log when /verbose is specified. + - Note, if the issue found is a compat block, no Setup Operation or Phase info exists yet and therefore won’t be available. + - Added more info to the Registry output. + - Detailed ‘FailureData’ info where available. Example: “AppName = MyBlockedApplication” or “DiskSpace = 6603” (in MB) + - “Key = Value” data specific to the failure found. + - Added ‘UpgradeStartTime’, ‘UpgradeEndTime’ and ‘UpgradeElapsedTime’ + - Added ‘SetupDiagVersion’, ‘DateTime’ (to indicate when SetupDiag was executed on the system), ‘TargetOSVersion’, ‘HostOSVersion’ and more… + + +06/19/2019 - SetupDiag v1.5.0.0 is released with 60 rules, as a standalone tool available from the Download Center. + - All date and time outputs are updated to localized format per user request. + - Added setup Operation and Phase information to /verbose log. + - Added last Setup Operation and last Setup Phase information to most rules where it make sense (see new output below). + - Performance improvement in searching setupact.logs to determine correct log to parse. + - Added SetupDiag version number to text report (xml and json always had it). + - Added "no match" reports for xml and json per user request. + - Formatted Json output for easy readability. + - Performance improvements when searching for setup logs; this should be much faster now. + - Added 7 new rules: PlugInComplianceBlock, PreReleaseWimMountDriverFound, WinSetupBootFilterFailure, WimMountDriverIssue, DISMImageSessionFailure, FindEarlyDownlevelError, and FindSPFatalError. See the [Rules](#rules) section above for more information. + - Diagnostic information is now output to the registry at **HKLM\SYSTEM\Setup\MoSetup\Volatile\SetupDiag** + - The **/AddReg** command was added to toggle registry output. This setting is off by default for offline mode, and on by default for online mode. The command has no effect for online mode and enables registry output for offline mode. + - This registry key is deleted as soon as SetupDiag is run a second time, and replaced with current data, so it’s always up to date. + - This registry key also gets deleted when a new update instance is invoked. + - For an example, see [Sample registry key](#sample-registry-key). + +05/17/2019 - SetupDiag v1.4.1.0 is released with 53 rules, as a standalone tool available from the Download Center. + - This release dds the ability to find and diagnose reset and recovery failures (Push Button Reset). + +12/18/2018 - SetupDiag v1.4.0.0 is released with 53 rules, as a standalone tool available from the Download Center. + - This release includes major improvements in rule processing performance: ~3x faster rule processing performance! + - The FindDownlevelFailure rule is up to 10x faster. + - New rules have been added to analyze failures upgrading to Windows 10 version 1809. + - A new help link is available for resolving servicing stack failures on the down-level OS when the rule match indicates this type of failure. + - Removed the need to specify /Mode parameter. Now if you specify /LogsPath, it automatically assumes offline mode. + - Some functional and output improvements were made for several rules. + +07/16/2018 - SetupDiag v1.3.1 is released with 44 rules, as a standalone tool available from the Download Center. + - This release fixes a problem that can occur when running SetupDiag in online mode on a computer that produces a setupmem.dmp file, but does not have debugger binaries installed. + +07/10/2018 - SetupDiag v1.30 is released with 44 rules, as a standalone tool available from the Download Center. + - Bug fix for an over-matched plug-in rule. The rule will now correctly match only critical (setup failure) plug-in issues. + - New feature: Ability to output logs in JSON and XML format. + - Use "/Format:xml" or "/Format:json" command line parameters to specify the new output format. See [sample logs](#sample-logs) at the bottom of this topic. + - If the “/Format:xml” or “/Format:json” parameter is omitted, the log output format will default to text. + - New Feature: Where possible, specific instructions are now provided in rule output to repair the identified error. For example, instructions are provided to remediate known blocking issues such as uninstalling an incompatible app or freeing up space on the system drive. + - 3 new rules added: AdvancedInstallerFailed, MigrationAbortedDueToPluginFailure, DISMAddPackageFailed. + +05/30/2018 - SetupDiag v1.20 is released with 41 rules, as a standalone tool available from the Download Center. + - Fixed a bug in device install failure detection in online mode. + - Changed SetupDiag to work without an instance of setupact.log. Previously, SetupDiag required at least one setupact.log to operate. This change enables the tool to analyze update failures that occur prior to calling SetupHost. + - Telemetry is refactored to only send the rule name and GUID (or “NoRuleMatched” if no rule is matched) and the Setup360 ReportId. This change assures data privacy during rule processing. + +05/02/2018 - SetupDiag v1.10 is released with 34 rules, as a standalone tool available from the Download Center. + - A performance enhancment has been added to result in faster rule processing. + - Rules output now includes links to support articles, if applicable. + - SetupDiag now provides the path and name of files that it is processing. + - You can now run SetupDiag by simply clicking on it and then examining the output log file. + - An output log file is now always created, whether or not a rule was matched. + +03/30/2018 - SetupDiag v1.00 is released with 26 rules, as a standalone tool available from the Download Center. + +## Sample logs + +### Text log sample + +``` +Matching Profile found: OptionalComponentOpenPackageFailed - 22952520-EC89-4FBD-94E0-B67DF88347F6 +System Information: + Machine Name = Offline + Manufacturer = MSI + Model = MS-7998 + HostOSArchitecture = x64 + FirmwareType = PCAT + BiosReleaseDate = 20160727000000.000000+000 + BiosVendor = BIOS Date: 07/27/16 10:01:46 Ver: V1.70 + BiosVersion = 1.70 + HostOSVersion = 10.0.15063 + HostOSBuildString = 15063.0.amd64fre.rs2_release.170317-1834 + TargetOSBuildString = 10.0.16299.15 (rs3_release.170928-1534) + HostOSLanguageId = 2057 + HostOSEdition = Core + RegisteredAV = Windows Defender, + FilterDrivers = WdFilter,wcifs,WIMMount,luafv,Wof,FileInfo, + UpgradeStartTime = 3/21/2018 9:47:16 PM + UpgradeEndTime = 3/21/2018 10:02:40 PM + UpgradeElapsedTime = 00:15:24 + ReportId = dd4db176-4e3f-4451-aef6-22cf46de8bde + +Error: SetupDiag reports Optional Component installation failed to open OC Package. Package Name: Foundation, Error: 0x8007001F +Recommend you check the "Windows Modules Installer" service (Trusted Installer) is started on the system and set to automatic start, reboot and try the update again. Optionally, you can check the status of optional components on the system (search for Windows Features), uninstall any unneeded optional components, reboot and try the update again. +Error: SetupDiag reports down-level failure, Operation: Finalize, Error: 0x8007001F - 0x50015 +Refer to https://docs.microsoft.com/windows/deployment/upgrade/upgrade-error-codes for error information. +``` + +### XML log sample + +```xml + + + 1.6.0.0 + FindSPFatalError + A4028172-1B09-48F8-AD3B-86CDD7D55852 + + Offline + Gigabyte Technology Co., Ltd. + X470 AORUS ULTRA GAMING + 1033 + UEFI + 20180808000000.000000+000 + F3 + + 10.0.18908 + 18908.1000.amd64fre.rs_prerelease.190524-1658 + 10.0.18912.1001 (rs_prerelease.190601-1739) + + Professional + Windows Defender + + 2019-06-06T21:19:10 + + 2019-06-06T22:21:49 + 0001-01-01T00:00:00 + 0001-01-01T00:00:00 + + 0001-01-01T00:00:00 + 0001-01-01T00:00:00 + + Offline + MgUweCZk90KdwUiZ + F21F8FB6-00FD-4349-84FB-2AC75F389E73 + F21F8FB6-00FD-4349-84FB-2AC75F389E73 + + 2019-06-06 21:47:11, Error SP Error converting install time 5/2/2019 to structure[gle=0x00000057] + +Error: SetupDiag reports Fatal Error. +Last Setup Phase = Downlevel +Last Setup Operation: Gather data, scope: EVERYTHING +Error: 0x00000057 + LogEntry: 2019-06-06 21:47:11, Error SP Error converting install time 5/2/2019 to structure[gle=0x00000057] + LogEntry: 2019-06-06 21:47:11, Error SP Error converting install time 5/2/2019 to structure[gle=0x00000057] + +Refer to "https://docs.microsoft.com/windows/desktop/Debug/system-error-codes" for error information. + Err = 0x00000057, LastOperation = Gather data, scope: EVERYTHING, LastPhase = Downlevel + +``` + +### JSON log sample + +``` +{ + "Version":"1.6.0.0", + "ProfileName":"FindSPFatalError", + "ProfileGuid":"A4028172-1B09-48F8-AD3B-86CDD7D55852", + "SystemInfo":{ + "BiosReleaseDate":"20180808000000.000000+000", + "BiosVendor":"F3", + "BiosVersion":"F3", + "CV":"MgUweCZk90KdwUiZ", + "CommercialId":"Offline", + "FilterDrivers":"", + "FinalizeStartTime":"\/Date(-62135568000000-0800)\/", + "FirmwareType":"UEFI", + "HostOSArchitecture":"x64", + "HostOSBuildString":"18908.1000.amd64fre.rs_prerelease.190524-1658", + "HostOSEdition":"Professional", + "HostOSLanguageId":"", + "HostOSVersion":"", + "MachineName":"Offline", + "Manufacturer":"Gigabyte Technology Co., Ltd.", + "Model":"X470 AORUS ULTRA GAMING", + "PostOOBESuccessTime":"\/Date(-62135568000000-0800)\/", + "RegisteredAV":"Windows Defender", + "ReportId":"F21F8FB6-00FD-4349-84FB-2AC75F389E73", + "RollbackElapsedTime":"PT0S", + "RollbackEndTime":"\/Date(-62135568000000-0800)\/", + "RollbackStartTime":"\/Date(-62135568000000-0800)\/", + "SetupReportId":"F21F8FB6-00FD-4349-84FB-2AC75F389E73", + "TargetOSArchitecture":null, + "TargetOSBuildString":"10.0.18912.1001 (rs_prerelease.190601-1739)", + "TotalOfflineTime":"PT0S", + "UpgradeElapsedTime":"PT1H2M39S", + "UpgradeEndTime":"\/Date(1559884909000-0700)\/", + "UpgradeStartTime":"\/Date(1559881150000-0700)\/" + }, + "LogErrorLine":"2019-06-06 21:47:11, Error SP Error converting install time 5\/2\/2019 to structure[ + gle=0x00000057 + ]", + "FailureData":[ + "\u000aError: SetupDiag reports Fatal Error.\u000aLast Setup Phase = Downlevel\u000aLast Setup Operation: Gather data, scope: EVERYTHING\u000aError: 0x00000057", + "LogEntry: 2019-06-06 21:47:11, Error SP Error converting install time 5\/2\/2019 to structure[ + gle=0x00000057 + ]", + "LogEntry: 2019-06-06 21:47:11, Error SP Error converting install time 5\/2\/2019 to structure[ + gle=0x00000057 + ]", + "\u000aRefer to \"https:\/\/docs.microsoft.com\/en-us\/windows\/desktop\/Debug\/system-error-codes\" for error information." + ], + "FailureDetails":"Err = 0x00000057, LastOperation = Gather data, scope: EVERYTHING, LastPhase = Downlevel", + "DeviceDriverInfo":null, + "Remediation":[ + + ], + "SetupPhaseInfo":null, + "SetupOperationInfo":null +} +``` + +## Sample registry key + +![Addreg](./../images/addreg.png) + +## Related topics + +[Resolve Windows 10 upgrade errors: Technical information for IT Pros](https://docs.microsoft.com/windows/deployment/upgrade/resolve-windows-10-upgrade-errors) From 7b97f9d02248b2343001880d4ed0b9e017b615f9 Mon Sep 17 00:00:00 2001 From: illfated Date: Fri, 9 Aug 2019 20:20:44 +0200 Subject: [PATCH 02/19] Windows/Configuration: broken header+missing space - Repair a broken MarkDown (MD) header by adding a blank line between it and its preceding HTML tag, which up until now has disabled the header - Set correct MarkDown spacing for Note/Tip/important block indents (1 space between the indent marker and its text content) --- ...-by-using-provisioning-packages-and-icd.md | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/windows/configuration/customize-windows-10-start-screens-by-using-provisioning-packages-and-icd.md b/windows/configuration/customize-windows-10-start-screens-by-using-provisioning-packages-and-icd.md index 56de2504c6..977161bcd3 100644 --- a/windows/configuration/customize-windows-10-start-screens-by-using-provisioning-packages-and-icd.md +++ b/windows/configuration/customize-windows-10-start-screens-by-using-provisioning-packages-and-icd.md @@ -23,12 +23,12 @@ ms.date: 11/15/2017 - Windows 10 ->**Looking for consumer information?** [Customize the Start menu](https://go.microsoft.com/fwlink/p/?LinkId=623630) +> **Looking for consumer information?** [Customize the Start menu](https://go.microsoft.com/fwlink/p/?LinkId=623630) In Windows 10 Pro, Windows 10 Enterprise, and Windows 10 Education, version 1703, you can use a provisioning package that you create with Windows Configuration Designer to deploy a customized Start and taskbar layout to users. No reimaging is required, and the Start and taskbar layout can be updated simply by overwriting the .xml file that contains the layout. The provisioning package can be applied to a running device. This enables you to customize Start and taskbar layouts for different departments or organizations, with minimal management overhead. ->[!IMPORTANT] ->If you use a provisioning package to configure the taskbar, your configuration will be reapplied each time the explorer.exe process restarts. If your configuration pins an app and the user unpins that app, the user's change will be overwritten the next time the configuration is applied. To apply a taskbar configuration and allow users to make changes that will persist, apply your configuration by using Group Policy. +> [!IMPORTANT] +> If you use a provisioning package to configure the taskbar, your configuration will be reapplied each time the explorer.exe process restarts. If your configuration pins an app and the user unpins that app, the user's change will be overwritten the next time the configuration is applied. To apply a taskbar configuration and allow users to make changes that will persist, apply your configuration by using Group Policy. **Before you begin**: [Customize and export Start layout](customize-and-export-start-layout.md) for desktop editions. @@ -39,14 +39,15 @@ Three features enable Start and taskbar layout control: - The **Export-StartLayout** cmdlet in Windows PowerShell exports a description of the current Start layout in .xml file format. - >[!NOTE] - >To import the layout of Start to a mounted Windows image, use the [Import-StartLayout](https://docs.microsoft.com/powershell/module/startlayout/import-startlayout) cmdlet. + > [!NOTE] + > To import the layout of Start to a mounted Windows image, use the [Import-StartLayout](https://docs.microsoft.com/powershell/module/startlayout/import-startlayout) cmdlet. - [You can modify the Start .xml file](configure-windows-10-taskbar.md) to include `` or create an .xml file just for the taskbar configuration. - In Windows Configuration Designer, you use the **Policies/Start/StartLayout** setting to provide the contents of the .xml file that defines the Start and taskbar layout. - + + ## Prepare the Start layout XML file The **Export-StartLayout** cmdlet produces an XML file. Because Windows Configuration Designer produces a customizations.xml file that contains the configuration settings, adding the Start layout section to the customizations.xml file directly would result in an XML file embedded in an XML file. Before you add the Start layout section to the customizations.xml file, you must replace the markup characters in your layout.xml with escape characters. @@ -61,8 +62,8 @@ The **Export-StartLayout** cmdlet produces an XML file. Because Windows Configur Use the Windows Configuration Designer tool to create a provisioning package. [Learn how to install Windows Configuration Designer.](provisioning-packages/provisioning-install-icd.md) ->[!IMPORTANT] ->When you build a provisioning package, you may include sensitive information in the project files and in the provisioning package (.ppkg) file. Although you have the option to encrypt the .ppkg file, project files are not encrypted. You should store the project files in a secure location and delete the project files when they are no longer needed. +> [!IMPORTANT] +> When you build a provisioning package, you may include sensitive information in the project files and in the provisioning package (.ppkg) file. Although you have the option to encrypt the .ppkg file, project files are not encrypted. You should store the project files in a secure location and delete the project files when they are no longer needed. 1. Open Windows Configuration Designer (by default, %systemdrive%\\Program Files (x86)\\Windows Kits\\10\\Assessment and Deployment Kit\\Imaging and Configuration Designer\\x86\\ICD.exe). @@ -76,8 +77,8 @@ Use the Windows Configuration Designer tool to create a provisioning package. [L 6. Expand **Runtime settings** > **Policies** > **Start**, and click **StartLayout**. - >[!TIP] - >If **Start** is not listed, check the type of settings you selected in step 4. You must create the project using settings for **All Windows desktop editions**. + > [!TIP] + > If **Start** is not listed, check the type of settings you selected in step 4. You must create the project using settings for **All Windows desktop editions**. 7. Enter **layout.xml**. This value creates a placeholder in the customizations.xml file that you will replace with the contents of the layout.xml file in a later step. From f3203a5ca42d44737faf4056566e28686320e857 Mon Sep 17 00:00:00 2001 From: Greg Lindsay Date: Fri, 9 Aug 2019 12:16:29 -0700 Subject: [PATCH 03/19] removed a known issue --- windows/deployment/upgrade/setupdiag.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/deployment/upgrade/setupdiag.md b/windows/deployment/upgrade/setupdiag.md index 78a75cc04e..e7532a859e 100644 --- a/windows/deployment/upgrade/setupdiag.md +++ b/windows/deployment/upgrade/setupdiag.md @@ -29,6 +29,7 @@ ms.topic: article ## About SetupDiag Current version of SetupDiag: 1.6.0.0 +>Always be sure to run the most recent version of SetupDiag, so that can access new functionality and fixes to known issues. SetupDiag is a standalone diagnostic tool that can be used to obtain details about why a Windows 10 upgrade was unsuccessful. @@ -147,7 +148,6 @@ SetupDiag.exe /Output:C:\SetupDiag\Dumpdebug.log /LogsPath:D:\Dump ## Known issues 1. Some rules can take a long time to process if the log files involved are large. -2. If the failing computer is opted into the Insider program and getting regular pre-release updates, or an update is already pending on the computer when SetupDiag is run, it can encounter problems trying to open these log files. This will likely cause a failure to determine a root cause. In this case, try gathering the log files and running SetupDiag in offline mode. ## Sample output From 322141ece849ed39eb6b17aaefe7f17e53e7869b Mon Sep 17 00:00:00 2001 From: Nandaa Date: Tue, 13 Aug 2019 12:01:48 +0300 Subject: [PATCH 04/19] fix: formatting of the important notice This commit formats the "important" notice so that it looks consistently with the other documentations e.g. the "important" on this[1] page. [1] https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-download-symbols --- ...ity-mode-in-compatibility-administrator.md | 183 +++++++++--------- 1 file changed, 90 insertions(+), 93 deletions(-) diff --git a/windows/deployment/planning/creating-a-custom-compatibility-mode-in-compatibility-administrator.md b/windows/deployment/planning/creating-a-custom-compatibility-mode-in-compatibility-administrator.md index f1f6931c75..3ef9625772 100644 --- a/windows/deployment/planning/creating-a-custom-compatibility-mode-in-compatibility-administrator.md +++ b/windows/deployment/planning/creating-a-custom-compatibility-mode-in-compatibility-administrator.md @@ -1,93 +1,90 @@ ---- -title: Creating a Custom Compatibility Mode in Compatibility Administrator (Windows 10) -description: Windows® provides several compatibility modes, groups of compatibility fixes found to resolve many common application-compatibility issues. -ms.assetid: 661a1c0d-267f-4a79-8445-62a9a98d09b0 -ms.reviewer: -manager: laurawi -ms.author: greglin -ms.prod: w10 -ms.mktglfcycl: plan -ms.pagetype: appcompat -ms.sitesec: library -audience: itpro author: greg-lindsay -ms.date: 04/19/2017 -ms.topic: article ---- - -# Creating a Custom Compatibility Mode in Compatibility Administrator - - -**Applies to** - -- Windows 10 -- Windows 8.1 -- Windows 8 -- Windows 7 -- Windows Server 2012 -- Windows Server 2008 R2 - -Windows® provides several *compatibility modes*, groups of compatibility fixes found to resolve many common application-compatibility issues. While working with Compatibility Administrator, you might decide to group some of your individual compatibility fixes into a custom-compatibility mode, which you can then deploy and use on any of your compatibility databases. - -## What Is a Compatibility Mode? - - -A compatibility mode is a group of compatibility fixes. A compatibility fix, previously known as a shim, is a small piece of code that intercepts API calls from applications. The fix transforms the API calls so that the current version of the operating system supports the application in the same way as previous versions of the operating system. This can be anything from disabling a new feature in Windows to emulating a particular behavior of an older version of the Windows API. - -## Searching for Existing Compatibility Modes - - -The Compatibility Administrator tool has preloaded fixes for many common applications, including known compatibility fixes, compatibility modes, and AppHelp messages. Before you create a new compatibility mode, you can search for an existing application and then copy and paste the known fixes into your custom database. - -**Important** -Application Compatibility Toolkit (ACT) installs a 32-bit and a 64-bit version of the Compatibility Administrator tool. You must use the 32-bit version to create custom databases for 32-bit applications and the 64-bit version to create custom databases for 64-bit applications. - - - -**To search for an existing application** - -1. In the left-side pane of Compatibility Administrator, expand the **Applications** folder and search for your application name. - -2. Click the application name to view the preloaded compatibility modes, compatibility fixes, or AppHelp messages. - -## Creating a New Compatibility Mode - - -If you are unable to find a preloaded compatibility mode for your application, you can create a new one for use by your custom database. - -**Important** -A compatibility mode includes a set of compatibility fixes and must be deployed as a group. Therefore, you should include only fixes that you intend to deploy together to the database. - - - -**To create a new compatibility mode** - -1. In the left-side pane of Compatibility Administrator, underneath the **Custom Databases** heading, right-click the name of the database to which you will apply the compatibility mode, click **Create New**, and then click **Compatibility Mode**. - -2. Type the name of your custom-compatibility mode into the **Name of the compatibility mode** text box. - -3. Select each of the available compatibility fixes to include in your custom-compatibility mode and then click **>**. - - **Important** - If you are unsure which compatibility fixes to add, you can click **Copy Mode**. The **Select Compatibility Mode** dialog box appears and enables you to select from the preloaded compatibility modes. After you select a compatibility mode and click **OK**, any compatibility fixes that are included in the preloaded compatibility mode will be automatically added to your custom-compatibility mode. - - - -~~~ -If you have any compatibility fixes that require additional parameters, you can select the fix, and then click **Parameters**. The **Options for <Compatibility\_Fix\_Name>** dialog box appears, enabling you to update the parameter fields. -~~~ - -4. After you are done selecting the compatibility fixes to include, click **OK**. - - The compatibility mode is added to your custom database. - -## Related topics -[Compatibility Administrator User's Guide](compatibility-administrator-users-guide.md) - - - - - - - - - +--- +title: Creating a Custom Compatibility Mode in Compatibility Administrator (Windows 10) +description: Windows® provides several compatibility modes, groups of compatibility fixes found to resolve many common application-compatibility issues. +ms.assetid: 661a1c0d-267f-4a79-8445-62a9a98d09b0 +ms.reviewer: +manager: laurawi +ms.author: greglin +ms.prod: w10 +ms.mktglfcycl: plan +ms.pagetype: appcompat +ms.sitesec: library +audience: itpro +author: greg-lindsay +ms.date: 04/19/2017 +ms.topic: article +--- + +# Creating a Custom Compatibility Mode in Compatibility Administrator + + +**Applies to** + +- Windows 10 +- Windows 8.1 +- Windows 8 +- Windows 7 +- Windows Server 2012 +- Windows Server 2008 R2 + +Windows® provides several *compatibility modes*, groups of compatibility fixes found to resolve many common application-compatibility issues. While working with Compatibility Administrator, you might decide to group some of your individual compatibility fixes into a custom-compatibility mode, which you can then deploy and use on any of your compatibility databases. + +## What Is a Compatibility Mode? + + +A compatibility mode is a group of compatibility fixes. A compatibility fix, previously known as a shim, is a small piece of code that intercepts API calls from applications. The fix transforms the API calls so that the current version of the operating system supports the application in the same way as previous versions of the operating system. This can be anything from disabling a new feature in Windows to emulating a particular behavior of an older version of the Windows API. + +## Searching for Existing Compatibility Modes + + +The Compatibility Administrator tool has preloaded fixes for many common applications, including known compatibility fixes, compatibility modes, and AppHelp messages. Before you create a new compatibility mode, you can search for an existing application and then copy and paste the known fixes into your custom database. + +**Important** +Application Compatibility Toolkit (ACT) installs a 32-bit and a 64-bit version of the Compatibility Administrator tool. You must use the 32-bit version to create custom databases for 32-bit applications and the 64-bit version to create custom databases for 64-bit applications. + + + +**To search for an existing application** + +1. In the left-side pane of Compatibility Administrator, expand the **Applications** folder and search for your application name. + +2. Click the application name to view the preloaded compatibility modes, compatibility fixes, or AppHelp messages. + +## Creating a New Compatibility Mode + + +If you are unable to find a preloaded compatibility mode for your application, you can create a new one for use by your custom database. + +**Important** +A compatibility mode includes a set of compatibility fixes and must be deployed as a group. Therefore, you should include only fixes that you intend to deploy together to the database. + + + +**To create a new compatibility mode** + +1. In the left-side pane of Compatibility Administrator, underneath the **Custom Databases** heading, right-click the name of the database to which you will apply the compatibility mode, click **Create New**, and then click **Compatibility Mode**. + +2. Type the name of your custom-compatibility mode into the **Name of the compatibility mode** text box. + +3. Select each of the available compatibility fixes to include in your custom-compatibility mode and then click **>**. + +> [!IMPORTANT] +> If you are unsure which compatibility fixes to add, you can click **Copy Mode**. The **Select Compatibility Mode** dialog box appears and enables you to select from the preloaded compatibility modes. After you select a compatibility mode and click **OK**, any compatibility fixes that are included in the preloaded compatibility mode will be automatically added to your custom-compatibility mode. +> If you have any compatibility fixes that require additional parameters, you can select the fix, and then click **Parameters**. The **Options for <Compatibility\_Fix\_Name>** dialog box appears, enabling you to update the parameter fields. +``` + +4. After you are done selecting the compatibility fixes to include, click **OK**. + + The compatibility mode is added to your custom database. + +## Related topics +[Compatibility Administrator User's Guide](compatibility-administrator-users-guide.md) + + + + + + + + + From d01d157209e7dcade01c4a7d7f144095c002cbd6 Mon Sep 17 00:00:00 2001 From: Nandaa Date: Tue, 13 Aug 2019 20:50:18 +0300 Subject: [PATCH 05/19] fix: remove unnecessary back-ticks --- ...om-compatibility-mode-in-compatibility-administrator.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/windows/deployment/planning/creating-a-custom-compatibility-mode-in-compatibility-administrator.md b/windows/deployment/planning/creating-a-custom-compatibility-mode-in-compatibility-administrator.md index 3ef9625772..a34c87220b 100644 --- a/windows/deployment/planning/creating-a-custom-compatibility-mode-in-compatibility-administrator.md +++ b/windows/deployment/planning/creating-a-custom-compatibility-mode-in-compatibility-administrator.md @@ -68,10 +68,9 @@ A compatibility mode includes a set of compatibility fixes and must be deployed 3. Select each of the available compatibility fixes to include in your custom-compatibility mode and then click **>**. -> [!IMPORTANT] -> If you are unsure which compatibility fixes to add, you can click **Copy Mode**. The **Select Compatibility Mode** dialog box appears and enables you to select from the preloaded compatibility modes. After you select a compatibility mode and click **OK**, any compatibility fixes that are included in the preloaded compatibility mode will be automatically added to your custom-compatibility mode. -> If you have any compatibility fixes that require additional parameters, you can select the fix, and then click **Parameters**. The **Options for <Compatibility\_Fix\_Name>** dialog box appears, enabling you to update the parameter fields. -``` + > [!IMPORTANT] + > If you are unsure which compatibility fixes to add, you can click **Copy Mode**. The **Select Compatibility Mode** dialog box appears and enables you to select from the preloaded compatibility modes. After you select a compatibility mode and click **OK**, any compatibility fixes that are included in the preloaded compatibility mode will be automatically added to your custom-compatibility mode. + > If you have any compatibility fixes that require additional parameters, you can select the fix, and then click **Parameters**. The **Options for <Compatibility\_Fix\_Name>** dialog box appears, enabling you to update the parameter fields. 4. After you are done selecting the compatibility fixes to include, click **OK**. From 5ab6e75842c017b6b6ceeab6c0954cc052522539 Mon Sep 17 00:00:00 2001 From: jaimeo Date: Tue, 13 Aug 2019 15:39:08 -0700 Subject: [PATCH 06/19] removed references to CB, CBB --- .../manage-windows-updates-for-surface-hub.md | 3 +-- devices/surface/ltsb-for-surface.md | 13 ++++++------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/devices/surface-hub/manage-windows-updates-for-surface-hub.md b/devices/surface-hub/manage-windows-updates-for-surface-hub.md index 01c378c14a..4535bd1f1b 100644 --- a/devices/surface-hub/manage-windows-updates-for-surface-hub.md +++ b/devices/surface-hub/manage-windows-updates-for-surface-hub.md @@ -10,7 +10,6 @@ ms.sitesec: library author: dansimp ms.author: dansimp ms.topic: article -ms.date: 06/20/2019 ms.localizationpriority: medium --- @@ -69,7 +68,7 @@ This table gives examples of deployment rings. | Deployment ring | Ring size | Servicing branch | Deferral for feature updates | Deferral for quality updates (security fixes, drivers, and other updates) | Validation step | | --------- | --------- | --------- | --------- | --------- | --------- | -| Preview (e.g. non-critical or test devices) | Small | Semi-annual channel (Targeted) | None. | None. | Manually test and evaluate new functionality. Pause updates if there are issues. | +| Preview (e.g. non-critical or test devices) | Small | Windows Insider Preview | None. | None. | Manually test and evaluate new functionality. Pause updates if there are issues. | | Release (e.g. devices used by select teams) | Medium | Semi-annual channel | None. | None. | Monitor device usage and user feedback. Pause updates if there are issues. | | Broad deployment (e.g. most of the devices in your organization) | Large | Semi-annual channel | 120 days after release. | 7-14 days after release. | Monitor device usage and user feedback. Pause updates if there are issues. | | Mission critical (e.g. devices in executive boardrooms) | Small | Semi-annual channel | 180 days after release (maximum deferral for feature updates). | 30 days after release (maximum deferral for quality updates). | Monitor device usage and user feedback. | diff --git a/devices/surface/ltsb-for-surface.md b/devices/surface/ltsb-for-surface.md index d7e5bdc7d7..225135d993 100644 --- a/devices/surface/ltsb-for-surface.md +++ b/devices/surface/ltsb-for-surface.md @@ -1,5 +1,5 @@ --- -title: Long-Term Servicing Branch for Surface devices (Surface) +title: Long-Term Servicing Channel for Surface devices (Surface) description: LTSB is not supported for general-purpose Surface devices and should be used for specialized devices only. ms.prod: w10 ms.mktglfcycl: manage @@ -8,26 +8,25 @@ ms.sitesec: library author: dansimp ms.author: dansimp ms.topic: article -ms.date: 04/25/2017 ms.reviewer: manager: dansimp --- -# Long-Term Servicing Branch (LTSB) for Surface devices +# Long-Term Servicing Channel (LTSC) for Surface devices >[!WARNING] >For updated information on this topic, see [Surface device compatibility with Windows 10 Long-Term Servicing Channel](surface-device-compatibility-with-windows-10-ltsc.md). For additional information on this update, see the [Documentation Updates for Surface and Windows 10 LTSB Compatibility](https://blogs.technet.microsoft.com/surface/2017/04/11/documentation-updates-for-surface-and-windows-10-ltsb-compatibility) post on the Surface Blog for IT Pros. -General-purpose Surface devices running Long-Term Servicing Branch (LTSB) are not supported. As a general guideline, if a Surface device runs productivity software, such as Microsoft Office, it is a general-purpose device that does not qualify for LTSB and should instead run Current Branch (CB) or Current Branch for Business (CBB). +General-purpose Surface devices in the Long-Term Servicing Channel (LTSC) are not supported. As a general guideline, if a Surface device runs productivity software, such as Microsoft Office, it is a general-purpose device that does not qualify for LTSC and should instead be on the Semi-Annual Channel. >[!NOTE] >For more information about the servicing branches, see [Overview of Windows as a service](https://technet.microsoft.com/itpro/windows/manage/waas-overview). -LTSB prevents Surface devices from receiving critical Windows 10 feature updates and certain non-security servicing updates. Customers with poor experiences using Surface devices in the LTSB configuration will be instructed to upgrade to CB or CBB. Furthermore, the Windows 10 Enterprise LTSB edition removes core features of Surface devices, including seamless inking and touch-friendly applications. It does not contain key in-box applications including Microsoft Edge, OneNote, Calendar or Camera. Therefore, productivity is impacted and functionality is limited. LTSB is not supported as a suitable servicing solution for general-purpose Surface devices. +LTSC prevents Surface devices from receiving critical Windows 10 feature updates and certain non-security servicing updates. Customers with poor experiences using Surface devices in the LTSC configuration will be instructed to switch to the Semi-Annual Channel. Furthermore, the Windows 10 Enterprise LTSB edition removes core features of Surface devices, including seamless inking and touch-friendly applications. It does not contain key in-box applications including Microsoft Edge, OneNote, Calendar or Camera. Therefore, productivity is impacted and functionality is limited. LTSC is not supported as a suitable servicing solution for general-purpose Surface devices. -General-purpose Surface devices are intended to run CB or CBB to receive full servicing and firmware updates and forward compatibility with the introduction of new Surface features. With CB, feature updates are available as soon as Microsoft releases them. Customers in the CBB servicing model receive the same build of Windows 10 as those in CB, at a later date. +General-purpose Surface devices are intended to run on the Semi-Annual Channel to receive full servicing and firmware updates and forward compatibility with the introduction of new Surface features. In the Semi-Annual Channel, feature updates are available as soon as Microsoft releases them. -Surface devices in specialized scenarios–such as PCs that control medical equipment, point-of-sale systems, and ATMs–may consider the use of LTSB. These special-purpose systems typically perform a single task and do not require feature updates as frequently as other devices in the organization. +Surface devices in specialized scenarios–such as PCs that control medical equipment, point-of-sale systems, and ATMs–might consider the use of LTSC. These special-purpose systems typically perform a single task and do not require feature updates as frequently as other devices in the organization. From 23916339f96fb243b59fd3466457e4a09d859c38 Mon Sep 17 00:00:00 2001 From: ImranHabib <47118050+joinimran@users.noreply.github.com> Date: Wed, 14 Aug 2019 09:49:22 +0500 Subject: [PATCH 07/19] Update virus-and-threat-protection.png --- .../images/virus-and-threat-protection.png | Bin 248019 -> 207742 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/windows/whats-new/images/virus-and-threat-protection.png b/windows/whats-new/images/virus-and-threat-protection.png index f5fd5287bc0bbef109d366d7b876a0a814367f06..f289d2253184aacd95114dab3c96da5f75742d95 100644 GIT binary patch literal 207742 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 VC>tp}x&-*!zsG-f#ZSjC|4%mx*cbo+ literal 248019 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�&FTnla)9{?SkD1`>ivsulNE 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
End-user-defined characters (EUDC) may cause blue screen at startup
If you enable per font end-user-defined characters (EUDC), the system may stop working and a blue screen may appear at startup.

See details >OS Build 15063.1716

March 19, 2019
KB4489888Resolved
KB4493474April 09, 2019
10:00 AM PT
MSXML6 may cause applications to stop responding
MSXML6 may cause applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

See details >OS Build 15063.1563

January 08, 2019
KB4480973Resolved
KB4493474April 09, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
Users may receive “Error 1309” while installing or uninstalling certain types of MSI and MSP files.

See details >OS Build 15063.1659

February 19, 2019
KB4487011Resolved
KB4489871March 12, 2019
10:00 AM PT -
Internet Explorer may fail to load images
Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

See details >OS Build 15063.1631

February 12, 2019
KB4487020Resolved
KB4487011February 19, 2019
02:00 PM PT -
First character of the Japanese era name not recognized as an abbreviation
The first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

See details >OS Build 15063.1596

January 15, 2019
KB4480959Resolved
KB4487011February 19, 2019
02:00 PM PT
Custom URI schemes may not start corresponding application
Custom URI schemes for application protocol handlers may not start the corresponding application for local intranet and trusted sites in Internet Explorer.

See details >OS Build 15063.1689

March 12, 2019
KB4489871Resolved
KB4493436April 25, 2019
02:00 PM PT -
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

See details >OS Build 15063.1631

February 12, 2019
KB4487020Resolved
KB4487011February 19, 2019
02:00 PM PT " @@ -118,8 +115,6 @@ sections: - -
DetailsOriginating updateStatusHistory
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly. 
 
For example, if you paste a Microsoft Excel worksheet object into a Microsoft Word document, the cells may render with a different background color. 
 
Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2 
Resolution: This issue is resolved in KB4493474

Back to top
OS Build 15063.1631

February 12, 2019
KB4487020
Resolved
KB4493474
Resolved:
April 09, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
After installing KB4487011, users may receive “Error 1309” while installing or uninstalling certain types of MSI and MSP files.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue is resolved in KB4489871.

Back to top
OS Build 15063.1659

February 19, 2019
KB4487011
Resolved
KB4489871
Resolved:
March 12, 2019
10:00 AM PT

Opened:
February 19, 2019
02:00 PM PT
Internet Explorer may fail to load images
After installing KB4487020, Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2008 R2 SP1
Resolution: This issue is resolved in KB4487011.

Back to top
OS Build 15063.1631

February 12, 2019
KB4487020
Resolved
KB4487011
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4487011.

Back to top
OS Build 15063.1631

February 12, 2019
KB4487020
Resolved
KB4487011
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
" @@ -129,6 +124,5 @@ sections: text: " -
DetailsOriginating updateStatusHistory
MSXML6 may cause applications to stop responding
After installing KB4480973, MSXML6 causes applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

The Group Policy editor may stop responding when editing a Group Policy Object (GPO) that contains Group Policy Preferences (GPP) for Internet Explorer 10 settings.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue was resolved in KB4493474.

Back to top
OS Build 15063.1563

January 08, 2019
KB4480973
Resolved
KB4493474
Resolved:
April 09, 2019
10:00 AM PT

Opened:
January 08, 2019
10:00 AM PT
First character of the Japanese era name not recognized as an abbreviation
After installing KB4480959, the first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4487011.

Back to top
OS Build 15063.1596

January 15, 2019
KB4480959
Resolved
KB4487011
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 15, 2019
10:00 AM PT
" diff --git a/windows/release-information/resolved-issues-windows-10-1709.yml b/windows/release-information/resolved-issues-windows-10-1709.yml index 876d623cf2..9bf77f7d45 100644 --- a/windows/release-information/resolved-issues-windows-10-1709.yml +++ b/windows/release-information/resolved-issues-windows-10-1709.yml @@ -32,6 +32,7 @@ sections: - type: markdown text: " + @@ -46,9 +47,6 @@ sections: - - -
SummaryOriginating updateStatusDate resolved
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 16299.1217

June 11, 2019
KB4503284
Resolved
KB4512494
August 16, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 16299.1331

August 13, 2019
KB4512516
Resolved
KB4512494
August 16, 2019
02:00 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after updating.

See details >
OS Build 16299.1296

July 16, 2019
KB4507465
Resolved
KB4512516
August 13, 2019
10:00 AM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
OS Build 16299.1217

June 11, 2019
KB4503284
Resolved External
August 09, 2019
07:03 PM PT
End-user-defined characters (EUDC) may cause blue screen at startup
If you enable per font end-user-defined characters (EUDC), the system may stop working and a blue screen may appear at startup.

See details >
OS Build 16299.1059

March 19, 2019
KB4489890
Resolved
KB4493441
April 09, 2019
10:00 AM PT
MSXML6 causes applications to stop responding if an exception was thrown
MSXML6 causes applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

See details >
OS Build 16299.904

January 08, 2019
KB4480978
Resolved
KB4493441
April 09, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
Users may receive “Error 1309” while installing or uninstalling certain types of MSI and MSP files.

See details >
OS Build 16299.967

February 12, 2019
KB4486996
Resolved
KB4489886
March 12, 2019
10:00 AM PT
Internet Explorer may fail to load images
Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

See details >
OS Build 16299.967

February 12, 2019
KB4486996
Resolved
KB4487021
February 19, 2019
02:00 PM PT
First character of the Japanese era name not recognized as an abbreviation
The first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

See details >
OS Build 16299.936

January 15, 2019
KB4480967
Resolved
KB4487021
February 19, 2019
02:00 PM PT
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

See details >
OS Build 16299.967

February 12, 2019
KB4486996
Resolved
KB4487021
February 19, 2019
02:00 PM PT
Stop error when attempting to start SSH from WSL
A stop error occurs when attempting to start Secure Shell from Windows Subsystem for Linux with agent forwarding using a command line switch (ssh –A) or a configuration setting.

See details >
OS Build 16299.1029

March 12, 2019
KB4489886
Resolved
KB4493441
April 09, 2019
10:00 AM PT
" @@ -75,6 +73,7 @@ sections: - type: markdown text: " +
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503284 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512494.

Back to top
OS Build 16299.1217

June 11, 2019
KB4503284
Resolved
KB4512494
Resolved:
August 16, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after installation of KB4507465. Devices that are domain controllers or domain members are both affected.

To safeguard your update experience, we have applied a compatibility hold on devices configured to use MIT Kerberos realm from being offered Windows 10, version 1903 or Windows Server, version 1903.

Note If you are not sure if your device is affected, contact your administrator. Advanced users can check for “Define interoperable Kerberos v5 realm settings” policy under Computer Configuration -> Policies -> Administrative Templates > System -> Kerberos or check if this registry key exists:
HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\Kerberos\\MitRealms
 

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016
Resolution: This issue was resolved in KB4512516. To safeguard your upgrade experience, the compatibility hold on devices from being offered Windows 10, version 1903 or Windows Server, version 1903 is still in place. Once the issue is addressed on Windows 10, version 1903, this safeguard hold will be removed for all affected platforms. Check the Windows 10, version 1903 section of the release information dashboard for the most up to date information on this and other safeguard holds.

Note We recommend that you do not attempt to manually update using the Update now button or the Media Creation Tool until this issue has been resolved.

Back to top
OS Build 16299.1296

July 16, 2019
KB4507465
Resolved
KB4512516
Resolved:
August 13, 2019
10:00 AM PT

Opened:
July 25, 2019
06:10 PM PT
@@ -128,8 +127,6 @@ sections: - -
DetailsOriginating updateStatusHistory
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly. 
 
For example, if you paste a Microsoft Excel worksheet object into a Microsoft Word document, the cells may render with a different background color. 
 
Affected platforms:  
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2 
Resolution: This issue is resolved in KB4493441

Back to top
OS Build 16299.967

February 12, 2019
KB4486996
Resolved
KB4493441
Resolved:
April 09, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
After installing KB4486996, users may receive “Error 1309” while installing or uninstalling certain types of MSI and MSP files.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue is resolved in KB4489886.

Back to top
OS Build 16299.967

February 12, 2019
KB4486996
Resolved
KB4489886
Resolved:
March 12, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
Internet Explorer may fail to load images
After installing KB4486996, Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2008 R2 SP1
Resolution: This issue is resolved in KB4487021.

Back to top
OS Build 16299.967

February 12, 2019
KB4486996
Resolved
KB4487021
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4487021.

Back to top
OS Build 16299.967

February 12, 2019
KB4486996
Resolved
KB4487021
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
" @@ -139,6 +136,5 @@ sections: text: " -
DetailsOriginating updateStatusHistory
MSXML6 causes applications to stop responding if an exception was thrown
After installing KB4480978, MSXML6 causes applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

The Group Policy editor may stop responding when editing a Group Policy Object (GPO) that contains Group Policy Preferences (GPP) for Internet Explorer 10 settings.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue is resolved in KB4493441.

Back to top
OS Build 16299.904

January 08, 2019
KB4480978
Resolved
KB4493441
Resolved:
April 09, 2019
10:00 AM PT

Opened:
January 08, 2019
10:00 AM PT
First character of the Japanese era name not recognized as an abbreviation
After installing KB4480967, the first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4487021.

Back to top
OS Build 16299.936

January 15, 2019
KB4480967
Resolved
KB4487021
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 15, 2019
10:00 AM PT
" diff --git a/windows/release-information/resolved-issues-windows-10-1803.yml b/windows/release-information/resolved-issues-windows-10-1803.yml index c94998225d..b3059b9fe8 100644 --- a/windows/release-information/resolved-issues-windows-10-1803.yml +++ b/windows/release-information/resolved-issues-windows-10-1803.yml @@ -32,6 +32,8 @@ sections: - type: markdown text: " + + @@ -44,10 +46,7 @@ sections: - - -
SummaryOriginating updateStatusDate resolved
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 17134.829

June 11, 2019
KB4503286
Resolved
KB4512509
August 19, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 17134.950

August 13, 2019
KB4512501
Resolved
KB4512509
August 19, 2019
02:00 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after updating.

See details >
OS Build 17134.915

July 16, 2019
KB4507466
Resolved
KB4512501
August 13, 2019
10:00 AM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
OS Build 17134.829

June 11, 2019
KB4503286
Resolved External
August 09, 2019
07:03 PM PT
Difficulty connecting to some iSCSI-based SANs
Devices may have difficulty connecting to some Storage Area Network (SAN) devices that leverage iSCSI.

See details >
OS Build 17134.799

May 21, 2019
KB4499183
Resolved
KB4509478
June 26, 2019
04:00 PM PT
End-user-defined characters (EUDC) may cause blue screen at startup
If you enable per font end-user-defined characters (EUDC), the system may stop working and a blue screen may appear at startup.

See details >
OS Build 17134.677

March 19, 2019
KB4489894
Resolved
KB4493464
April 09, 2019
10:00 AM PT
MSXML6 may cause applications to stop responding
MSXML6 may cause applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

See details >
OS Build 17134.523

January 08, 2019
KB4480966
Resolved
KB4493464
April 09, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
Users may receive \"Error 1309\" while installing or uninstalling certain types of MSI and MSP files.

See details >
OS Build 17134.590

February 12, 2019
KB4487017
Resolved
KB4489868
March 12, 2019
10:00 AM PT
Internet Explorer may fail to load images
Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

See details >
OS Build 17134.590

February 12, 2019
KB4487017
Resolved
KB4487029
February 19, 2019
02:00 PM PT
First character of the Japanese era name not recognized
The first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

See details >
OS Build 17134.556

January 15, 2019
KB4480976
Resolved
KB4487029
February 19, 2019
02:00 PM PT
Custom URI schemes may not start corresponding application
Custom URI schemes for application protocol handlers may not start the corresponding application for local intranet and trusted sites in Internet Explorer.

See details >
OS Build 17134.648

March 12, 2019
KB4489868
Resolved
KB4493437
April 25, 2019
02:00 PM PT
Cannot pin a web link on the Start menu or the taskbar
Some users cannot pin a web link on the Start menu or the taskbar.

See details >
OS Build 17134.471

December 11, 2018
KB4471324
Resolved
KB4487029
February 19, 2019
02:00 PM PT
Stop error when attempting to start SSH from WSL
A stop error occurs when attempting to start Secure Shell from Windows Subsystem for Linux with agent forwarding using a command line switch (ssh –A) or a configuration setting.

See details >
OS Build 17134.648

March 12, 2019
KB4489868
Resolved
KB4493464
April 09, 2019
10:00 AM PT
" @@ -64,6 +63,7 @@ sections: - type: markdown text: " +
DetailsOriginating updateStatusHistory
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
After installing KB4512501, applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and scripts or apps using Visual Basic Scripting Edition (VBScript) may stop responding and you may receive an \"invalid procedure call error.\"

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607; Windows 10 Enterprise LTSC 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue was resolved in KB4512509. The ‘optional’ update will be available on Microsoft Update Catalog, Windows Update, Microsoft Update and Windows Server Update Services (WSUS). As with any 'optional' update, you will need to Check for updates to receive KB4512509 and install. For instructions, see Update Windows 10.

Note Windows Update for Business customers should apply the update via Microsoft Update Catalog or Windows Server Update Services (WSUS).

Back to top
OS Build 17134.950

August 13, 2019
KB4512501
Resolved
KB4512509
Resolved:
August 19, 2019
02:00 PM PT

Opened:
August 14, 2019
03:34 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on your Apple MacOS device when trying to access network shares via CIFS or SMBv1 on a Windows devices that has installed updates on June 11, 2019 (KB4503286) or later. When you encounter this issue, in MacOS you may receive the error, “There was a problem connecting to the server “{Server Host Name}”. Check the server name or IP address, and then try again. If you continue to have problems, contact your system administrator.”

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607; Windows 10 Enterprise LTSC 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: For guidance on this issue, see the Apple support article If your Mac can't use NTLM to connect to a Windows server. There is no update for Windows needed for this issue.

Back to top
OS Build 17134.829

June 11, 2019
KB4503286
Resolved External
Last updated:
August 09, 2019
07:03 PM PT

Opened:
August 09, 2019
04:25 PM PT
" @@ -73,6 +73,7 @@ sections: - type: markdown text: " +
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503286 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512509.

Back to top
OS Build 17134.829

June 11, 2019
KB4503286
Resolved
KB4512509
Resolved:
August 19, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after installation of KB4507466. Devices that are domain controllers or domain members are both affected.

To safeguard your update experience, we have applied a compatibility hold on devices configured to use MIT Kerberos realm from being offered Windows 10, version 1903 or Windows Server, version 1903.

Note If you are not sure if your device is affected, contact your administrator. Advanced users can check for “Define interoperable Kerberos v5 realm settings” policy under Computer Configuration -> Policies -> Administrative Templates > System -> Kerberos or check if this registry key exists:
HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\Kerberos\\MitRealms
 

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016
Resolution: This issue was resolved in KB4512501. To safeguard your upgrade experience, the compatibility hold on devices from being offered Windows 10, version 1903 or Windows Server, version 1903 is still in place. Once the issue is addressed on Windows 10, version 1903, this safeguard hold will be removed for all affected platforms. Check the Windows 10, version 1903 section of the release information dashboard for the most up to date information on this and other safeguard holds.

Note We recommend that you do not attempt to manually update using the Update now button or the Media Creation Tool until this issue has been resolved.

Back to top
OS Build 17134.915

July 16, 2019
KB4507466
Resolved
KB4512501
Resolved:
August 13, 2019
10:00 AM PT

Opened:
July 25, 2019
06:10 PM PT
@@ -126,7 +127,6 @@ sections: -
DetailsOriginating updateStatusHistory
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly. 
 
For example, if you paste a Microsoft Excel worksheet object into a Microsoft Word document, the cells may render with a different background color. 
 
Affected platforms:  
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2 
Resolution: This issue is resolved in KB4493464

Back to top
OS Build 17134.590

February 12, 2019
KB4487017
Resolved
KB4493464
Resolved:
April 09, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
After installing KB4487017, users may received \"Error 1309\" while installing or uninstalling certain types of MSI and MSP files. 

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue is resolved in KB4489868.

Back to top
OS Build 17134.590

February 12, 2019
KB4487017
Resolved
KB4489868
Resolved:
March 12, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
Internet Explorer may fail to load images
After installing KB4487017, Internet Explorer may fail to load images with a backslash (\\) in their relative source path. 

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2008 R2 SP1
Resolution: This issue is resolved in KB4487029

Back to top
OS Build 17134.590

February 12, 2019
KB4487017
Resolved
KB4487029
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
" @@ -136,15 +136,5 @@ sections: text: " - -
DetailsOriginating updateStatusHistory
MSXML6 may cause applications to stop responding
After installing KB4480966, MSXML6 causes applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

The Group Policy editor may stop responding when editing a Group Policy Object (GPO) that contains Group Policy Preferences (GPP) for Internet Explorer 10 settings.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue was resolved in KB4493464

Back to top
OS Build 17134.523

January 08, 2019
KB4480966
Resolved
KB4493464
Resolved:
April 09, 2019
10:00 AM PT

Opened:
January 08, 2019
10:00 AM PT
First character of the Japanese era name not recognized
After installing KB4480976, the first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4487029

Back to top
OS Build 17134.556

January 15, 2019
KB4480976
Resolved
KB4487029
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 08, 2019
10:00 AM PT
- " - -- title: December 2018 -- items: - - type: markdown - text: " - -
DetailsOriginating updateStatusHistory
Cannot pin a web link on the Start menu or the taskbar
After installing KB4471324, some users cannot pin a web link on the Start menu or the taskbar. 

Affected platforms:
  • Client: Windows 10, version 1803
  • Server: Windows Server, version 1803
Resolution: This issue is resolved in KB4487029

Back to top
OS Build 17134.471

December 11, 2018
KB4471324
Resolved
KB4487029
Resolved:
February 19, 2019
02:00 PM PT

Opened:
December 11, 2018
10:00 AM PT
" diff --git a/windows/release-information/resolved-issues-windows-10-1809-and-windows-server-2019.yml b/windows/release-information/resolved-issues-windows-10-1809-and-windows-server-2019.yml index dc24852730..c70c55ae78 100644 --- a/windows/release-information/resolved-issues-windows-10-1809-and-windows-server-2019.yml +++ b/windows/release-information/resolved-issues-windows-10-1809-and-windows-server-2019.yml @@ -32,6 +32,7 @@ sections: - type: markdown text: " + @@ -87,6 +88,7 @@ sections: - type: markdown text: "
SummaryOriginating updateStatusDate resolved
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 17763.557

June 11, 2019
KB4503327
Resolved
KB4512534
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 17763.678

August 13, 2019
KB4511553
Resolved
KB4512534
August 17, 2019
02:00 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after updating.

See details >
OS Build 17763.652

July 22, 2019
KB4505658
Resolved
KB4511553
August 13, 2019
10:00 AM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
OS Build 17763.557

June 11, 2019
KB4503327
Resolved External
August 09, 2019
07:03 PM PT
+
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503327 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512534.

Back to top
OS Build 17763.557

June 11, 2019
KB4503327
Resolved
KB4512534
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after installation of KB4505658. Devices that are domain controllers or domain members are both affected.

To safeguard your update experience, we have applied a compatibility hold on devices configured to use MIT Kerberos realm from being offered Windows 10, version 1903 or Windows Server, version 1903.

Note If you are not sure if your device is affected, contact your administrator. Advanced users can check for “Define interoperable Kerberos v5 realm settings” policy under Computer Configuration -> Policies -> Administrative Templates > System -> Kerberos or check if this registry key exists:
HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\Kerberos\\MitRealms
 

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016
Resolution: This issue was resolved in KB4511553. To safeguard your upgrade experience, the compatibility hold on devices from being offered Windows 10, version 1903 or Windows Server, version 1903 is still in place. Once the issue is addressed on Windows 10, version 1903, this safeguard hold will be removed for all affected platforms. Check the Windows 10, version 1903 section of the release information dashboard for the most up to date information on this and other safeguard holds.

Note We recommend that you do not attempt to manually update using the Update now button or the Media Creation Tool until this issue has been resolved.

Back to top
OS Build 17763.652

July 22, 2019
KB4505658
Resolved
KB4511553
Resolved:
August 13, 2019
10:00 AM PT

Opened:
July 25, 2019
06:10 PM PT
diff --git a/windows/release-information/resolved-issues-windows-7-and-windows-server-2008-r2-sp1.yml b/windows/release-information/resolved-issues-windows-7-and-windows-server-2008-r2-sp1.yml index 7135d3adff..b30db83a7d 100644 --- a/windows/release-information/resolved-issues-windows-7-and-windows-server-2008-r2-sp1.yml +++ b/windows/release-information/resolved-issues-windows-7-and-windows-server-2008-r2-sp1.yml @@ -32,6 +32,7 @@ sections: - type: markdown text: " + @@ -40,17 +41,14 @@ sections: + - - - -
SummaryOriginating updateStatusDate resolved
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503292
Resolved
KB4512514
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
August 13, 2019
KB4512506
Resolved
KB4517297
August 16, 2019
02:00 PM PT
System may be unresponsive after restart with certain McAfee antivirus products
Devices with McAfee Endpoint Security Threat Prevention 10.x, Host Intrusion Prevention 8.0, or VirusScan Enterprise 8.8 may be slow or unresponsive at startup.

See details >
April 09, 2019
KB4493472
Resolved External
August 13, 2019
06:59 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
June 11, 2019
KB4503292
Resolved External
August 09, 2019
07:03 PM PT
Unable to access some gov.uk websites
gov.uk websites that don’t support “HSTS” may not be accessible

See details >
May 14, 2019
KB4499164
Resolved
KB4505050
May 18, 2019
02:00 PM PT
System may be unresponsive after restart if ArcaBit antivirus software installed
Devices with ArcaBit antivirus software installed may become unresponsive upon restart.

See details >
April 09, 2019
KB4493472
Resolved
May 14, 2019
01:23 PM PT
System unresponsive after restart if Sophos Endpoint Protection installed
Devices with Sophos Endpoint Protection installed and managed by Sophos Central or Sophos Enterprise Console (SEC) may become unresponsive upon restart.

See details >
April 09, 2019
KB4493472
Resolved
May 14, 2019
01:22 PM PT
System may be unresponsive after restart if Avira antivirus software installed
Devices with Avira antivirus software installed may become unresponsive upon restart.

See details >
April 09, 2019
KB4493472
Resolved
May 14, 2019
01:21 PM PT
Authentication may fail for services after the Kerberos ticket expires
Authentication may fail for services that require unconstrained delegation after the Kerberos ticket expires.

See details >
March 12, 2019
KB4489878
Resolved
KB4499164
May 14, 2019
10:00 AM PT
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly.

See details >
February 12, 2019
KB4486563
Resolved
KB4493472
April 09, 2019
10:00 AM PT
Devices may not respond at login or Welcome screen if running certain Avast software
Devices running Avast for Business, Avast CloudCare, and AVG Business Edition antivirus software may become unresponsive after restart.

See details >
April 09, 2019
KB4493472
Resolved
April 25, 2019
02:00 PM PT
NETDOM.EXE fails to run
NETDOM.EXE fails to run and the error, “The command failed to complete successfully.” appears on screen.

See details >
March 12, 2019
KB4489878
Resolved
KB4493472
April 09, 2019
10:00 AM PT
Custom URI schemes may not start corresponding application
Custom URI schemes for application protocol handlers may not start the corresponding application for local intranet and trusted sites in Internet Explorer.

See details >
March 12, 2019
KB4489878
Resolved
KB4493472
April 09, 2019
10:00 AM PT
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

See details >
February 12, 2019
KB4486563
Resolved
KB4486565
February 19, 2019
02:00 PM PT
Internet Explorer may fail to load images
Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

See details >
February 12, 2019
KB4486563
Resolved
KB4486565
February 19, 2019
02:00 PM PT
First character of the Japanese era name not recognized as an abbreviation
The first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

See details >
January 17, 2019
KB4480955
Resolved
KB4486565
February 19, 2019
02:00 PM PT
Internet Explorer 11 authentication issue with multiple concurrent logons
Internet Explorer 11 users may encounter issues if two or more people use the same user account for multiple, concurrent login sessions on the same Windows Server machine.

See details >
January 08, 2019
KB4480970
Resolved
KB4493472
April 09, 2019
10:00 AM PT
Event Viewer may not show some event descriptions for network interface cards
The Event Viewer may not show some event descriptions for network interface cards (NIC).

See details >
October 18, 2018
KB4462927
Resolved
KB4489878
March 12, 2019
10:00 AM PT
Virtual machines fail to restore
Virtual machines (VMs) may fail to restore successfully if the VM has been saved and restored once before.

See details >
January 08, 2019
KB4480970
Resolved
KB4490511
February 19, 2019
02:00 PM PT
" @@ -71,6 +69,15 @@ sections: " +- title: July 2019 +- items: + - type: markdown + text: " + + +
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503292 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512514.

Back to top
June 11, 2019
KB4503292
Resolved
KB4512514
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
+ " + - title: June 2019 - items: - type: markdown @@ -120,8 +127,6 @@ sections: text: " - -
DetailsOriginating updateStatusHistory
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly. 
 
For example, if you paste a Microsoft Excel worksheet object into a Microsoft Word document, the cells may render with a different background color. 
 
Affected platforms:  
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2 
Resolution: This issue is resolved in KB4493472

Back to top
February 12, 2019
KB4486563
Resolved
KB4493472
Resolved:
April 09, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

Affected platforms: 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2 
Resolution: This issue is resolved in KB4486565.

Back to top
February 12, 2019
KB4486563
Resolved
KB4486565
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
Internet Explorer may fail to load images
After installing KB4486563, Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

Affected platforms: 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2008 R2 SP1 
Resolution: This issue is resolved in KB4486565.

Back to top
February 12, 2019
KB4486563
Resolved
KB4486565
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
" @@ -130,9 +135,7 @@ sections: - type: markdown text: " - -
DetailsOriginating updateStatusHistory
First character of the Japanese era name not recognized as an abbreviation
After installing KB4480955, the first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

Affected platforms: 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2 
Resolution: This issue is resolved in KB4486565.

Back to top
January 17, 2019
KB4480955
Resolved
KB4486565
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 17, 2019
10:00 AM PT
Internet Explorer 11 authentication issue with multiple concurrent logons
After installing KB4480970, Internet Explorer 11 and other applications that use WININET.DLL may have authentication issues. This occurs when two or more people use the same user account for multiple, concurrent login sessions on the same Windows Server machine, including Remote Desktop Protocol (RDP) and Terminal Server logons. Symptoms reported by customers include, but may not be limited to:
  • Cache size and location show zero or empty.
  • Keyboard shortcuts may not work properly.
  • Webpages may intermittently fail to load or render correctly.
  • Issues with credential prompts.
  • Issues when downloading files.
Affected platforms: 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1
Resolution: This issue is resolved in KB4493472.

Back to top
January 08, 2019
KB4480970
Resolved
KB4493472
Resolved:
April 09, 2019
10:00 AM PT

Opened:
January 08, 2019
10:00 AM PT
Virtual machines fail to restore
After installing KB4480970, virtual machines (VM) may fail to restore successfully if the VM has been saved and restored once before. The error message is, “Failed to restore the virtual machine state: Cannot restore this virtual machine because the saved state data cannot be read. Delete the saved state data and then try to start the virtual machine. (0xC0370027).”

This affects AMD Bulldozer Family 15h, AMD Jaguar Family 16h, and AMD Puma Family 16h (second generation) microarchitectures.

Affected platforms: 
  • Client: Windows 8.1; Windows 7 SP1 
  • Server: Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4490511.

Back to top
January 08, 2019
KB4480970
Resolved
KB4490511
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 08, 2019
10:00 AM PT
" diff --git a/windows/release-information/resolved-issues-windows-8.1-and-windows-server-2012-r2.yml b/windows/release-information/resolved-issues-windows-8.1-and-windows-server-2012-r2.yml index 3c832e536c..cee285c22f 100644 --- a/windows/release-information/resolved-issues-windows-8.1-and-windows-server-2012-r2.yml +++ b/windows/release-information/resolved-issues-windows-8.1-and-windows-server-2012-r2.yml @@ -32,6 +32,7 @@ sections: - type: markdown text: " + @@ -43,8 +44,6 @@ sections: - - @@ -52,7 +51,6 @@ sections: -
SummaryOriginating updateStatusDate resolved
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503276
Resolved
KB4512478
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
August 13, 2019
KB4512488
Resolved
KB4517298
August 16, 2019
02:00 PM PT
System may be unresponsive after restart with certain McAfee antivirus products
Devices with McAfee Endpoint Security Threat Prevention 10.x, Host Intrusion Prevention 8.0, or VirusScan Enterprise 8.8 may be slow or unresponsive at startup.

See details >
April 09, 2019
KB4493446
Resolved External
August 13, 2019
06:59 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
June 11, 2019
KB4503276
Resolved External
August 09, 2019
07:03 PM PT
System may be unresponsive after restart if ArcaBit antivirus software installed
Devices with ArcaBit antivirus software installed may become unresponsive upon restart.

See details >
April 09, 2019
KB4493446
Resolved
May 14, 2019
01:22 PM PT
System unresponsive after restart if Sophos Endpoint Protection installed
Devices with Sophos Endpoint Protection installed and managed by Sophos Central or Sophos Enterprise Console (SEC) may become unresponsive upon restart.

See details >
April 09, 2019
KB4493446
Resolved
May 14, 2019
01:22 PM PT
System may be unresponsive after restart if Avira antivirus software installed
Devices with Avira antivirus software installed may become unresponsive upon restart.

See details >
April 09, 2019
KB4493446
Resolved
May 14, 2019
01:21 PM PT
Internet Explorer may fail to load images
Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

See details >
February 12, 2019
KB4487000
Resolved
KB4487016
February 19, 2019
02:00 PM PT
First character of the Japanese era name not recognized as an abbreviation
The first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

See details >
January 15, 2019
KB4480969
Resolved
KB4487016
February 19, 2019
02:00 PM PT
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly.

See details >
February 12, 2019
KB4487000
Resolved
KB4493446
April 09, 2019
10:00 AM PT
Devices may not respond at login or Welcome screen if running certain Avast software
Devices running Avast for Business, Avast CloudCare, and AVG Business Edition antivirus software may become unresponsive after restart.

See details >
April 09, 2019
KB4493446
Resolved
April 25, 2019
02:00 PM PT
Devices with winsock kernel client may receive error
Devices with a winsock kernel client may receive D1, FC, and other errors.

See details >
March 12, 2019
KB4489881
Resolved
KB4489893
March 19, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
Users may receive “Error 1309” while installing or uninstalling certain types of MSI and MSP files.

See details >
February 19, 2019
KB4487016
Resolved
KB4489881
March 12, 2019
10:00 AM PT
MSXML6 may cause applications to stop responding.
MSXML6 may cause applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

See details >
January 08, 2019
KB4480963
Resolved
KB4493446
April 09, 2019
10:00 AM PT
Internet Explorer 11 authentication issue with multiple concurrent logons
Internet Explorer 11 users may encounter issues if two or more people use the same user account for multiple, concurrent login sessions on the same Windows Server machine.

See details >
January 08, 2019
KB4480963
Resolved
KB4493446
April 09, 2019
10:00 AM PT
Virtual machines fail to restore
Virtual machines (VMs) may fail to restore successfully if the VM has been saved and restored once before.

See details >
January 08, 2019
KB4480963
Resolved
KB4490512
February 19, 2019
02:00 PM PT
" @@ -73,6 +71,15 @@ sections: " +- title: July 2019 +- items: + - type: markdown + text: " + + +
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503276 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512478.

Back to top
June 11, 2019
KB4503276
Resolved
KB4512478
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
+ " + - title: June 2019 - items: - type: markdown @@ -122,7 +129,6 @@ sections: - type: markdown text: " -
DetailsOriginating updateStatusHistory
Internet Explorer may fail to load images
After installing KB4487000, Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

Affected platforms: 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2008 R2 SP1 
Resolution: This issue is resolved in KB4487016.

Back to top
February 12, 2019
KB4487000
Resolved
KB4487016
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly.

For example, if you paste a Microsoft Excel worksheet object into a Microsoft Word document, the cells may render with a different background color.

Affected platforms 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2 
Resolution: This issue is resolved in KB4493446.

Back to top
February 12, 2019
KB4487000
Resolved
KB4493446
Resolved:
April 09, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
After installing KB4487016, users may receive “Error 1309” while installing or uninstalling certain types of MSI and MSP files.

Affected platforms: 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012 
Resolution: This issue is resolved in KB4489881.

Back to top
February 19, 2019
KB4487016
Resolved
KB4489881
Resolved:
March 12, 2019
10:00 AM PT

Opened:
February 19, 2019
02:00 PM PT
@@ -133,9 +139,7 @@ sections: - type: markdown text: " - -
DetailsOriginating updateStatusHistory
First character of the Japanese era name not recognized as an abbreviation
After installing KB4480969, the first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

Affected platforms: 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2 
Resolution: This issue is resolved in KB4487016.

Back to top
January 15, 2019
KB4480969
Resolved
KB4487016
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 15, 2019
10:00 AM PT
MSXML6 may cause applications to stop responding.
After installing KB4480963, MSXML6 causes applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

The Group Policy editor may stop responding when editing a Group Policy Object (GPO) that contains Group Policy Preferences (GPP) for Internet Explorer 10 settings.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue is resolved in KB4493446.

Back to top
January 08, 2019
KB4480963
Resolved
KB4493446
Resolved:
April 09, 2019
10:00 AM PT

Opened:
January 08, 2019
10:00 AM PT
Internet Explorer 11 authentication issue with multiple concurrent logons
After installing KB4480963, Internet Explorer 11 and other applications that use WININET.DLL may have authentication issues. This occurs when two or more people use the same user account for multiple, concurrent login sessions on the same Windows Server machine, including Remote Desktop Protocol (RDP) and Terminal Server logons. Symptoms reported by customers include, but may not be limited to:
  • Cache size and location show zero or empty.
  • Keyboard shortcuts may not work properly.
  • Webpages may intermittently fail to load or render correctly.
  • Issues with credential prompts.
  • Issues when downloading files.
Affected platforms: 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1
Resolution: This issue is resolved in KB4493446.

Back to top
January 08, 2019
KB4480963
Resolved
KB4493446
Resolved:
April 09, 2019
10:00 AM PT

Opened:
January 08, 2019
10:00 AM PT
Virtual machines fail to restore
After installing KB4480963, virtual machines (VM) may fail to restore successfully if the VM has been saved and restored once before. The error message is, “Failed to restore the virtual machine state: Cannot restore this virtual machine because the saved state data cannot be read. Delete the saved state data and then try to start the virtual machine. (0xC0370027).”

This affects AMD Bulldozer Family 15h, AMD Jaguar Family 16h, and AMD Puma Family 16h (second generation) microarchitectures.

Affected platforms: 
  • Client: Windows 8.1; Windows 7 SP1 
  • Server: Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4490512.

Back to top
January 08, 2019
KB4480963
Resolved
KB4490512
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 08, 2019
10:00 AM PT
" diff --git a/windows/release-information/resolved-issues-windows-server-2008-sp2.yml b/windows/release-information/resolved-issues-windows-server-2008-sp2.yml index 8ca80054e9..df7f82cfb2 100644 --- a/windows/release-information/resolved-issues-windows-server-2008-sp2.yml +++ b/windows/release-information/resolved-issues-windows-server-2008-sp2.yml @@ -32,6 +32,7 @@ sections: - type: markdown text: " + @@ -39,10 +40,8 @@ sections: - -
SummaryOriginating updateStatusDate resolved
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503273
Resolved
KB4512499
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
August 13, 2019
KB4512476
Resolved
KB4517301
August 16, 2019
02:00 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
June 11, 2019
KB4503273
Resolved External
August 09, 2019
07:03 PM PT
Event Viewer may close or you may receive an error when using Custom Views
When trying to expand, view or create Custom Views in Event Viewer, you may receive an error and the app may stop responding or close.

See details >
June 11, 2019
KB4503273
Resolved
KB4503271
June 20, 2019
02:00 PM PT
System may be unresponsive after restart if Avira antivirus software installed
Devices with Avira antivirus software installed may become unresponsive upon restart.

See details >
April 09, 2019
KB4493471
Resolved
May 14, 2019
01:19 PM PT
Authentication may fail for services after the Kerberos ticket expires
Authentication may fail for services that require unconstrained delegation after the Kerberos ticket expires.

See details >
March 12, 2019
KB4489880
Resolved
KB4499149
May 14, 2019
10:00 AM PT
NETDOM.EXE fails to run
NETDOM.EXE fails to run and the error, “The command failed to complete successfully.” appears on screen.

See details >
March 12, 2019
KB4489880
Resolved
KB4493471
April 09, 2019
10:00 AM PT
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

See details >
February 12, 2019
KB4487023
Resolved
KB4487022
February 19, 2019
02:00 PM PT
First character of the Japanese era name not recognized as an abbreviation
The first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

See details >
January 17, 2019
KB4480974
Resolved
KB4489880
March 12, 2019
10:00 AM PT
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly.

See details >
February 12, 2019
KB4487023
Resolved
KB4493471
April 09, 2019
10:00 AM PT
Virtual machines fail to restore
Virtual machines (VMs) may fail to restore successfully if the VM has been saved and restored once before.

See details >
January 08, 2019
KB4480968
Resolved
KB4490514
February 19, 2019
02:00 PM PT
" @@ -63,6 +62,15 @@ sections: " +- title: July 2019 +- items: + - type: markdown + text: " + + +
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503273 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512499.

Back to top
June 11, 2019
KB4503273
Resolved
KB4512499
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
+ " + - title: June 2019 - items: - type: markdown @@ -97,7 +105,6 @@ sections: - type: markdown text: " -
DetailsOriginating updateStatusHistory
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4487022.

Back to top
February 12, 2019
KB4487023
Resolved
KB4487022
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly.

For example, if you paste a Microsoft Excel worksheet object into a Microsoft Word document, the cells may render with a different background color.

Affected platforms 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4493471.

Back to top
February 12, 2019
KB4487023
Resolved
KB4493471
Resolved:
April 09, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
" @@ -108,6 +115,5 @@ sections: text: " -
DetailsOriginating updateStatusHistory
First character of the Japanese era name not recognized as an abbreviation
After installing KB4480974, the first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4489880.

Back to top
January 17, 2019
KB4480974
Resolved
KB4489880
Resolved:
March 12, 2019
10:00 AM PT

Opened:
January 17, 2019
10:00 AM PT
Virtual machines fail to restore
After installing KB4480968, virtual machines (VM) may fail to restore successfully if the VM has been saved and restored once before. The error message is, “Failed to restore the virtual machine state: Cannot restore this virtual machine because the saved state data cannot be read. Delete the saved state data and then try to start the virtual machine. (0xC0370027).”

This affects AMD Bulldozer Family 15h, AMD Jaguar Family 16h, and AMD Puma Family 16h (second generation) microarchitectures.

Affected platforms: 
  • Client: Windows 8.1; Windows 7 SP1 
  • Server: Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4490514.

Back to top
January 08, 2019
KB4480968
Resolved
KB4490514
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 08, 2019
10:00 AM PT
" diff --git a/windows/release-information/resolved-issues-windows-server-2012.yml b/windows/release-information/resolved-issues-windows-server-2012.yml index 7725b0bf92..4bd64240b8 100644 --- a/windows/release-information/resolved-issues-windows-server-2012.yml +++ b/windows/release-information/resolved-issues-windows-server-2012.yml @@ -32,6 +32,7 @@ sections: - type: markdown text: " + @@ -42,13 +43,10 @@ sections: - - -
SummaryOriginating updateStatusDate resolved
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503285
Resolved
KB4512512
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
August 13, 2019
KB4512518
Resolved
KB4517302
August 16, 2019
02:00 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
June 11, 2019
KB4503285
Resolved External
August 09, 2019
07:03 PM PT
Some devices and generation 2 Hyper-V VMs may have issues installing updates
Some devices and generation 2 Hyper-V virtual machines (VMs) may have issues installing some updates when Secure Boot is enabled.

See details >
June 11, 2019
KB4503285
Resolved
KB4503295
June 21, 2019
02:00 PM PT
Layout and cell size of Excel sheets may change when using MS UI Gothic
When using the MS UI Gothic or MS PGothic fonts, the text, layout, or cell size may become narrower or wider than expected in Microsoft Excel.

See details >
April 25, 2019
KB4493462
Resolved
KB4499171
May 14, 2019
10:00 AM PT
System unresponsive after restart if Sophos Endpoint Protection installed
Devices with Sophos Endpoint Protection installed and managed by Sophos Central or Sophos Enterprise Console (SEC) may become unresponsive upon restart.

See details >
April 09, 2019
KB4493451
Resolved
May 14, 2019
01:21 PM PT
System may be unresponsive after restart if Avira antivirus software installed
Devices with Avira antivirus software installed may become unresponsive upon restart.

See details >
April 09, 2019
KB4493451
Resolved
May 14, 2019
01:19 PM PT
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

See details >
February 12, 2019
KB4487025
Resolved
KB4487024
February 19, 2019
02:00 PM PT
First character of the Japanese era name not recognized as an abbreviation
The first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

See details >
January 15, 2019
KB4480971
Resolved
KB4487024
February 19, 2019
02:00 PM PT
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly.

See details >
February 12, 2019
KB4487025
Resolved
KB4493451
April 09, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
Users may receive “Error 1309” while installing or uninstalling certain types of MSI and MSP files.

See details >
February 12, 2019
KB4487025
Resolved
KB4489891
March 12, 2019
10:00 AM PT
Internet Explorer 11 authentication issue with multiple concurrent logons
Internet Explorer 11 users may encounter issues if two or more people use the same user account for multiple, concurrent login sessions on the same Windows Server machine.

See details >
January 08, 2019
KB4480975
Resolved
KB4493451
April 09, 2019
10:00 AM PT
MSXML6 may cause applications to stop responding
MSXML6 may cause applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

See details >
January 08, 2019
KB4480975
Resolved
KB4493451
April 09, 2019
10:00 AM PT
Virtual machines fail to restore
Virtual machines (VMs) may fail to restore successfully if the VM has been saved and restored once before.

See details >
January 08, 2019
KB4480975
Resolved
KB4490516
February 19, 2019
02:00 PM PT
Event Viewer may not show some event descriptions for network interface cards
The Event Viewer may not show some event descriptions for network interface cards (NIC).

See details >
September 11, 2018
KB4457135
Resolved
KB4489891
March 12, 2019
10:00 AM PT
" @@ -70,6 +68,15 @@ sections: " +- title: July 2019 +- items: + - type: markdown + text: " + + +
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503285 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512512.

Back to top
June 11, 2019
KB4503285
Resolved
KB4512512
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
+ " + - title: June 2019 - items: - type: markdown @@ -115,7 +122,6 @@ sections: - type: markdown text: " -
DetailsOriginating updateStatusHistory
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4487024.

Back to top
February 12, 2019
KB4487025
Resolved
KB4487024
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly.

For example, if you paste a Microsoft Excel worksheet object into a Microsoft Word document, the cells may render with a different background color.

Affected platforms 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2 
Resolution: This issue is resolved in KB4493451.

Back to top
February 12, 2019
KB4487025
Resolved
KB4493451
Resolved:
April 09, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
After installing KB4487025, users may receive \"Error 1309\" while installing or uninstalling certain types of MSI and MSP files.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue is resolved in KB4489891.

Back to top
February 12, 2019
KB4487025
Resolved
KB4489891
Resolved:
March 12, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
@@ -126,10 +132,8 @@ sections: - type: markdown text: " - -
DetailsOriginating updateStatusHistory
First character of the Japanese era name not recognized as an abbreviation
After installing KB4480971, the first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4487024.

Back to top
January 15, 2019
KB4480971
Resolved
KB4487024
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 15, 2019
10:00 AM PT
Internet Explorer 11 authentication issue with multiple concurrent logons
After installing KB4480975, Internet Explorer 11 and other applications that use WININET.DLL may have authentication issues. This occurs when two or more people use the same user account for multiple, concurrent login sessions on the same Windows Server machine, including Remote Desktop Protocol (RDP) and Terminal Server logons. Symptoms reported by customers include, but may not be limited to:
  • Cache size and location show zero or empty.
  • Keyboard shortcuts may not work properly.
  • Webpages may intermittently fail to load or render correctly.
  • Issues with credential prompts.
  • Issues when downloading files.
Affected platforms: 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1
Resolution: This issue is resolved in KB4493451.

Back to top
January 08, 2019
KB4480975
Resolved
KB4493451
Resolved:
April 09, 2019
10:00 AM PT

Opened:
January 08, 2019
10:00 AM PT
MSXML6 may cause applications to stop responding
After installing KB4480975, MSXML6 causes applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

The Group Policy editor may stop responding when editing a Group Policy Object (GPO) that contains Group Policy Preferences (GPP) for Internet Explorer 10 settings.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue is resolved in KB4493451.

Back to top
January 08, 2019
KB4480975
Resolved
KB4493451
Resolved:
April 09, 2019
10:00 AM PT

Opened:
January 08, 2019
10:00 AM PT
Virtual machines fail to restore
After installing KB4480975, virtual machines (VM) may fail to restore successfully if the VM has been saved and restored once before. The error message is, \"Failed to restore the virtual machine state: Cannot restore this virtual machine because the saved state data cannot be read. Delete the saved state data and then try to start the virtual machine. (0xC0370027).\"

This affects AMD Bulldozer Family 15h, AMD Jaguar Family 16h, and AMD Puma Family 16h (second generation) microarchitectures.

Affected platforms: 
  • Client: Windows 8.1; Windows 7 SP1 
  • Server: Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4490516.

Back to top
January 08, 2019
KB4480975
Resolved
KB4490516
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 08, 2019
10:00 AM PT
" diff --git a/windows/release-information/status-windows-10-1607-and-windows-server-2016.yml b/windows/release-information/status-windows-10-1607-and-windows-server-2016.yml index 4a6c046585..cca3c91d12 100644 --- a/windows/release-information/status-windows-10-1607-and-windows-server-2016.yml +++ b/windows/release-information/status-windows-10-1607-and-windows-server-2016.yml @@ -60,13 +60,13 @@ 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.

+ - @@ -96,10 +96,10 @@ sections: - type: markdown text: "
SummaryOriginating updateStatusLast updated
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 14393.3025

June 11, 2019
KB4503267
Resolved
KB4512495
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 14393.3144

August 13, 2019
KB4512517
Resolved
KB4512495
August 17, 2019
02:00 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after updating.

See details >
OS Build 14393.3115

July 16, 2019
KB4507459
Resolved
KB4512517
August 13, 2019
10:00 AM PT
Internet Explorer 11 and apps using the WebBrowser control may fail to render
JavaScript may fail to render as expected in Internet Explorer 11 and in apps using JavaScript or the WebBrowser control.

See details >
OS Build 14393.3085

July 09, 2019
KB4507460
Resolved
KB4512517
August 13, 2019
10:00 AM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
OS Build 14393.3025

June 11, 2019
KB4503267
Resolved External
August 09, 2019
07:03 PM PT
Apps and scripts using the NetQueryDisplayInformation API may fail with error
Applications and scripts that call the NetQueryDisplayInformation API or the WinNT provider equivalent may fail to return results after the first page of data.

See details >
OS Build 14393.3053

June 18, 2019
KB4503294
Investigating
August 01, 2019
05:00 PM PT
SCVMM cannot enumerate and manage logical switches deployed on the host
For hosts managed by System Center Virtual Machine Manager (VMM), VMM cannot enumerate and manage logical switches deployed on the host.

See details >
OS Build 14393.2639

November 27, 2018
KB4467684
Resolved
KB4507459
July 16, 2019
10:00 AM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 14393.3025

June 11, 2019
KB4503267
Mitigated
July 10, 2019
07:09 PM PT
Certain operations performed on a Cluster Shared Volume may fail
Certain operations, such as rename, performed on files or folders on a Cluster Shared Volume (CSV) may fail with the error, \"STATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)\".

See details >
OS Build 14393.2724

January 08, 2019
KB4480961
Mitigated
April 25, 2019
02:00 PM PT
Windows may not start on certain Lenovo and Fujitsu laptops with less than 8GB of RAM
Windows may fail to start on certain Lenovo and Fujitsu laptops that have less than 8 GB of RAM.

See details >
OS Build 14393.2608

November 13, 2018
KB4467691
Mitigated
February 19, 2019
10:00 AM PT
Cluster service may fail if the minimum password length is set to greater than 14
The cluster service may fail to start with the error “2245 (NERR_PasswordTooShort)” if the Group Policy “Minimum Password Length” is configured with greater than 14 characters.

See details >
OS Build 14393.2639

November 27, 2018
KB4467684
Mitigated
April 25, 2019
02:00 PM PT
+ -
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503267 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512495.

Back to top
OS Build 14393.3025

June 11, 2019
KB4503267
Resolved
KB4512495
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after installation of KB4507459. Devices that are domain controllers or domain members are both affected.

To safeguard your update experience, we have applied a compatibility hold on devices configured to use MIT Kerberos realm from being offered Windows 10, version 1903 or Windows Server, version 1903.

Note If you are not sure if your device is affected, contact your administrator. Advanced users can check for “Define interoperable Kerberos v5 realm settings” policy under Computer Configuration -> Policies -> Administrative Templates > System -> Kerberos or check if this registry key exists:
HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\Kerberos\\MitRealms
 

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016
Resolution: This issue was resolved in KB4512517. To safeguard your upgrade experience, the compatibility hold on devices from being offered Windows 10, version 1903 or Windows Server, version 1903 is still in place. Once the issue is addressed on Windows 10, version 1903, this safeguard hold will be removed for all affected platforms. Check the Windows 10, version 1903 section of the release information dashboard for the most up to date information on this and other safeguard holds.

Note We recommend that you do not attempt to manually update using the Update now button or the Media Creation Tool until this issue has been resolved.

Back to top
OS Build 14393.3115

July 16, 2019
KB4507459
Resolved
KB4512517
Resolved:
August 13, 2019
10:00 AM PT

Opened:
July 25, 2019
06:10 PM PT
Internet Explorer 11 and apps using the WebBrowser control may fail to render
Internet Explorer 11 may fail to render some JavaScript after installing KB4507460. You may also have issues with apps using JavaScript or the WebBrowser control, such as the present PowerPoint feature of Skype Meeting Broadcast.

Affected platforms:
  • Client: Windows 10 Enterprise LTSC 2016; Windows 10, version 1607
  • Server: Windows Server 2016
Resolution: This issue was resolved in KB4512517.

Back to top
OS Build 14393.3085

July 09, 2019
KB4507460
Resolved
KB4512517
Resolved:
August 13, 2019
10:00 AM PT

Opened:
July 26, 2019
04:58 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503267 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Workaround:
To mitigate this issue on an SCCM server:
  1. Verify Variable Window Extension is enabled.
  2. Set the values of TFTP block size to 4096 and TFTP window size to 1. For guidance on how to configure them, see Customize the RamDisk TFTP block and window sizes on PXE-enabled distribution points.
Note Try the default values for TFTP block size and TFTP window size first but depending on your environment and overall settings, you may need to adjust them for your setup. You can also try the Enable a PXE responder without Windows Deployment Service setting. For more information on this setting, see Install and configure distribution points in Configuration Manager.

To mitigate this issue on a WDS server without SCCM:
  1. In WDS TFTP settings, verify Variable Window Extension is enabled.
  2. In the Boot Configuration Data (BCD) of the imported image, set RamDiskTFTPBlockSize to 1456.
  3. In the BCD of the imported image, set RamDiskTFTPWindowSize to 4.
Note Try the default values for RamDiskTFTPBlockSize and RamDiskTFTPWindowSize first but depending on your environment and overall settings, you may need to adjust them for your setup.

Next steps: We are working on a resolution and will provide an update in an upcoming release.

Back to top
OS Build 14393.3025

June 11, 2019
KB4503267
Mitigated
Last updated:
July 10, 2019
07:09 PM PT

Opened:
July 10, 2019
02:51 PM PT
" diff --git a/windows/release-information/status-windows-10-1709.yml b/windows/release-information/status-windows-10-1709.yml index 22dc09d48a..9fa8392574 100644 --- a/windows/release-information/status-windows-10-1709.yml +++ b/windows/release-information/status-windows-10-1709.yml @@ -60,10 +60,10 @@ 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.

+ -
SummaryOriginating updateStatusLast updated
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 16299.1217

June 11, 2019
KB4503284
Resolved
KB4512494
August 16, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 16299.1331

August 13, 2019
KB4512516
Resolved
KB4512494
August 16, 2019
02:00 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after updating.

See details >
OS Build 16299.1296

July 16, 2019
KB4507465
Resolved
KB4512516
August 13, 2019
10:00 AM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
OS Build 16299.1217

June 11, 2019
KB4503284
Resolved External
August 09, 2019
07:03 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 16299.1217

June 11, 2019
KB4503284
Mitigated
July 10, 2019
07:09 PM PT
Certain operations performed on a Cluster Shared Volume may fail
Certain operations, such as rename, performed on files or folders on a Cluster Shared Volume (CSV) may fail with the error, \"STATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)\".

See details >
OS Build 16299.904

January 08, 2019
KB4480978
Mitigated
April 25, 2019
02:00 PM PT
" @@ -90,9 +90,9 @@ sections: - type: markdown text: " + -
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503284 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512494.

Back to top
OS Build 16299.1217

June 11, 2019
KB4503284
Resolved
KB4512494
Resolved:
August 16, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after installation of KB4507465. Devices that are domain controllers or domain members are both affected.

To safeguard your update experience, we have applied a compatibility hold on devices configured to use MIT Kerberos realm from being offered Windows 10, version 1903 or Windows Server, version 1903.

Note If you are not sure if your device is affected, contact your administrator. Advanced users can check for “Define interoperable Kerberos v5 realm settings” policy under Computer Configuration -> Policies -> Administrative Templates > System -> Kerberos or check if this registry key exists:
HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\Kerberos\\MitRealms
 

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016
Resolution: This issue was resolved in KB4512516. To safeguard your upgrade experience, the compatibility hold on devices from being offered Windows 10, version 1903 or Windows Server, version 1903 is still in place. Once the issue is addressed on Windows 10, version 1903, this safeguard hold will be removed for all affected platforms. Check the Windows 10, version 1903 section of the release information dashboard for the most up to date information on this and other safeguard holds.

Note We recommend that you do not attempt to manually update using the Update now button or the Media Creation Tool until this issue has been resolved.

Back to top
OS Build 16299.1296

July 16, 2019
KB4507465
Resolved
KB4512516
Resolved:
August 13, 2019
10:00 AM PT

Opened:
July 25, 2019
06:10 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503284 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Workaround:
To mitigate this issue on an SCCM server:
  1. Verify Variable Window Extension is enabled.
  2. Set the values of TFTP block size to 4096 and TFTP window size to 1. For guidance on how to configure them, see Customize the RamDisk TFTP block and window sizes on PXE-enabled distribution points.
Note Try the default values for TFTP block size and TFTP window size first but depending on your environment and overall settings, you may need to adjust them for your setup. You can also try the Enable a PXE responder without Windows Deployment Service setting. For more information on this setting, see Install and configure distribution points in Configuration Manager.

To mitigate this issue on a WDS server without SCCM:
  1. In WDS TFTP settings, verify Variable Window Extension is enabled.
  2. In the Boot Configuration Data (BCD) of the imported image, set RamDiskTFTPBlockSize to 1456.
  3. In the BCD of the imported image, set RamDiskTFTPWindowSize to 4.
Note Try the default values for RamDiskTFTPBlockSize and RamDiskTFTPWindowSize first but depending on your environment and overall settings, you may need to adjust them for your setup.

Next steps: We are working on a resolution and will provide an update in an upcoming release.

Back to top
OS Build 16299.1217

June 11, 2019
KB4503284
Mitigated
Last updated:
July 10, 2019
07:09 PM PT

Opened:
July 10, 2019
02:51 PM PT
" diff --git a/windows/release-information/status-windows-10-1803.yml b/windows/release-information/status-windows-10-1803.yml index a0e9fb7109..c9f0739b5a 100644 --- a/windows/release-information/status-windows-10-1803.yml +++ b/windows/release-information/status-windows-10-1803.yml @@ -65,10 +65,10 @@ 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.

- + + -
SummaryOriginating updateStatusLast updated
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 17134.950

August 13, 2019
KB4512501
Investigating
August 17, 2019
01:37 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 17134.829

June 11, 2019
KB4503286
Resolved
KB4512509
August 19, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 17134.950

August 13, 2019
KB4512501
Resolved
KB4512509
August 19, 2019
02:00 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after updating.

See details >
OS Build 17134.915

July 16, 2019
KB4507466
Resolved
KB4512501
August 13, 2019
10:00 AM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
OS Build 17134.829

June 11, 2019
KB4503286
Resolved External
August 09, 2019
07:03 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 17134.829

June 11, 2019
KB4503286
Mitigated
July 10, 2019
07:09 PM PT
Startup to a black screen after installing updates
Your device may startup to a black screen during the first logon after installing updates.

See details >
OS Build 17134.829

June 11, 2019
KB4503286
Mitigated
June 14, 2019
04:41 PM PT
Certain operations performed on a Cluster Shared Volume may fail
Certain operations, such as rename, performed on files or folders on a Cluster Shared Volume (CSV) may fail with the error, \"STATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)\".

See details >
OS Build 17134.523

January 08, 2019
KB4480966
Mitigated
April 25, 2019
02:00 PM PT
@@ -86,7 +86,7 @@ sections: - type: markdown text: " - +
DetailsOriginating updateStatusHistory
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
After installing KB4512501, applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and scripts or apps using Visual Basic Scripting Edition (VBScript) may stop responding and you may receive an \"invalid procedure call error.\"

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607; Windows 10 Enterprise LTSC 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Next steps: Microsoft is working on a resolution and estimates a solution will be available over the coming days.

The ‘optional’ update will be available on Microsoft Update Catalog, Windows Update, Microsoft Update and Windows Server Update Services (WSUS). As with any 'optional' update, you will need to Check for updates to receive this update once it is released and install it.

Note Windows Update for Business customers should apply the update via Microsoft Update Catalog or Windows Server Update Services (WSUS).

Back to top
OS Build 17134.950

August 13, 2019
KB4512501
Investigating
Last updated:
August 17, 2019
01:37 PM PT

Opened:
August 14, 2019
03:34 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
After installing KB4512501, applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and scripts or apps using Visual Basic Scripting Edition (VBScript) may stop responding and you may receive an \"invalid procedure call error.\"

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607; Windows 10 Enterprise LTSC 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue was resolved in KB4512509. The ‘optional’ update will be available on Microsoft Update Catalog, Windows Update, Microsoft Update and Windows Server Update Services (WSUS). As with any 'optional' update, you will need to Check for updates to receive KB4512509 and install. For instructions, see Update Windows 10.

Note Windows Update for Business customers should apply the update via Microsoft Update Catalog or Windows Server Update Services (WSUS).

Back to top
OS Build 17134.950

August 13, 2019
KB4512501
Resolved
KB4512509
Resolved:
August 19, 2019
02:00 PM PT

Opened:
August 14, 2019
03:34 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on your Apple MacOS device when trying to access network shares via CIFS or SMBv1 on a Windows devices that has installed updates on June 11, 2019 (KB4503286) or later. When you encounter this issue, in MacOS you may receive the error, “There was a problem connecting to the server “{Server Host Name}”. Check the server name or IP address, and then try again. If you continue to have problems, contact your system administrator.”

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607; Windows 10 Enterprise LTSC 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: For guidance on this issue, see the Apple support article If your Mac can't use NTLM to connect to a Windows server. There is no update for Windows needed for this issue.

Back to top
OS Build 17134.829

June 11, 2019
KB4503286
Resolved External
Last updated:
August 09, 2019
07:03 PM PT

Opened:
August 09, 2019
04:25 PM PT
" @@ -96,9 +96,9 @@ sections: - type: markdown text: " + -
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503286 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512509.

Back to top
OS Build 17134.829

June 11, 2019
KB4503286
Resolved
KB4512509
Resolved:
August 19, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after installation of KB4507466. Devices that are domain controllers or domain members are both affected.

To safeguard your update experience, we have applied a compatibility hold on devices configured to use MIT Kerberos realm from being offered Windows 10, version 1903 or Windows Server, version 1903.

Note If you are not sure if your device is affected, contact your administrator. Advanced users can check for “Define interoperable Kerberos v5 realm settings” policy under Computer Configuration -> Policies -> Administrative Templates > System -> Kerberos or check if this registry key exists:
HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\Kerberos\\MitRealms
 

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016
Resolution: This issue was resolved in KB4512501. To safeguard your upgrade experience, the compatibility hold on devices from being offered Windows 10, version 1903 or Windows Server, version 1903 is still in place. Once the issue is addressed on Windows 10, version 1903, this safeguard hold will be removed for all affected platforms. Check the Windows 10, version 1903 section of the release information dashboard for the most up to date information on this and other safeguard holds.

Note We recommend that you do not attempt to manually update using the Update now button or the Media Creation Tool until this issue has been resolved.

Back to top
OS Build 17134.915

July 16, 2019
KB4507466
Resolved
KB4512501
Resolved:
August 13, 2019
10:00 AM PT

Opened:
July 25, 2019
06:10 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503286 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Workaround:
To mitigate this issue on an SCCM server:
  1. Verify Variable Window Extension is enabled.
  2. Set the values of TFTP block size to 4096 and TFTP window size to 1. For guidance on how to configure them, see Customize the RamDisk TFTP block and window sizes on PXE-enabled distribution points.
Note Try the default values for TFTP block size and TFTP window size first but depending on your environment and overall settings, you may need to adjust them for your setup. You can also try the Enable a PXE responder without Windows Deployment Service setting. For more information on this setting, see Install and configure distribution points in Configuration Manager.

To mitigate this issue on a WDS server without SCCM:
  1. In WDS TFTP settings, verify Variable Window Extension is enabled.
  2. In the Boot Configuration Data (BCD) of the imported image, set RamDiskTFTPBlockSize to 1456.
  3. In the BCD of the imported image, set RamDiskTFTPWindowSize to 4.
Note Try the default values for RamDiskTFTPBlockSize and RamDiskTFTPWindowSize first but depending on your environment and overall settings, you may need to adjust them for your setup.

Next steps: We are working on a resolution and will provide an update in an upcoming release.

Back to top
OS Build 17134.829

June 11, 2019
KB4503286
Mitigated
Last updated:
July 10, 2019
07:09 PM PT

Opened:
July 10, 2019
02:51 PM PT
" diff --git a/windows/release-information/status-windows-10-1809-and-windows-server-2019.yml b/windows/release-information/status-windows-10-1809-and-windows-server-2019.yml index 9be5808d94..4c3dfc4364 100644 --- a/windows/release-information/status-windows-10-1809-and-windows-server-2019.yml +++ b/windows/release-information/status-windows-10-1809-and-windows-server-2019.yml @@ -64,11 +64,11 @@ 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.

+ - @@ -98,9 +98,9 @@ sections: - type: markdown text: "
SummaryOriginating updateStatusLast updated
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 17763.557

June 11, 2019
KB4503327
Resolved
KB4512534
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 17763.678

August 13, 2019
KB4511553
Resolved
KB4512534
August 17, 2019
02:00 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after updating.

See details >
OS Build 17763.652

July 22, 2019
KB4505658
Resolved
KB4511553
August 13, 2019
10:00 AM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
OS Build 17763.557

June 11, 2019
KB4503327
Resolved External
August 09, 2019
07:03 PM PT
Apps and scripts using the NetQueryDisplayInformation API may fail with error
Applications and scripts that call the NetQueryDisplayInformation API or the WinNT provider equivalent may fail to return results after the first page of data.

See details >
OS Build 17763.55

October 09, 2018
KB4464330
Investigating
August 01, 2019
05:00 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 17763.557

June 11, 2019
KB4503327
Mitigated
July 10, 2019
07:09 PM PT
Startup to a black screen after installing updates
Your device may startup to a black screen during the first logon after installing updates.

See details >
OS Build 17763.557

June 11, 2019
KB4503327
Mitigated
June 14, 2019
04:41 PM PT
Devices with some Asian language packs installed may receive an error
After installing the KB4493509 devices with some Asian language packs installed may receive the error, \"0x800f0982 - PSFX_E_MATCHING_COMPONENT_NOT_F

See details >
OS Build 17763.437

April 09, 2019
KB4493509
Mitigated
May 03, 2019
10:59 AM PT
Certain operations performed on a Cluster Shared Volume may fail
Certain operations, such as rename, performed on files or folders on a Cluster Shared Volume (CSV) may fail with the error, \"STATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)\".

See details >
OS Build 17763.253

January 08, 2019
KB4480116
Mitigated
April 09, 2019
10:00 AM PT
+ -
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503327 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512534.

Back to top
OS Build 17763.557

June 11, 2019
KB4503327
Resolved
KB4512534
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after installation of KB4505658. Devices that are domain controllers or domain members are both affected.

To safeguard your update experience, we have applied a compatibility hold on devices configured to use MIT Kerberos realm from being offered Windows 10, version 1903 or Windows Server, version 1903.

Note If you are not sure if your device is affected, contact your administrator. Advanced users can check for “Define interoperable Kerberos v5 realm settings” policy under Computer Configuration -> Policies -> Administrative Templates > System -> Kerberos or check if this registry key exists:
HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\Kerberos\\MitRealms
 

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016
Resolution: This issue was resolved in KB4511553. To safeguard your upgrade experience, the compatibility hold on devices from being offered Windows 10, version 1903 or Windows Server, version 1903 is still in place. Once the issue is addressed on Windows 10, version 1903, this safeguard hold will be removed for all affected platforms. Check the Windows 10, version 1903 section of the release information dashboard for the most up to date information on this and other safeguard holds.

Note We recommend that you do not attempt to manually update using the Update now button or the Media Creation Tool until this issue has been resolved.

Back to top
OS Build 17763.652

July 22, 2019
KB4505658
Resolved
KB4511553
Resolved:
August 13, 2019
10:00 AM PT

Opened:
July 25, 2019
06:10 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503327 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Workaround:
To mitigate this issue on an SCCM server:
  1. Verify Variable Window Extension is enabled.
  2. Set the values of TFTP block size to 4096 and TFTP window size to 1. For guidance on how to configure them, see Customize the RamDisk TFTP block and window sizes on PXE-enabled distribution points.
Note Try the default values for TFTP block size and TFTP window size first but depending on your environment and overall settings, you may need to adjust them for your setup. You can also try the Enable a PXE responder without Windows Deployment Service setting. For more information on this setting, see Install and configure distribution points in Configuration Manager.

To mitigate this issue on a WDS server without SCCM:
  1. In WDS TFTP settings, verify Variable Window Extension is enabled.
  2. In the Boot Configuration Data (BCD) of the imported image, set RamDiskTFTPBlockSize to 1456.
  3. In the BCD of the imported image, set RamDiskTFTPWindowSize to 4.
Note Try the default values for RamDiskTFTPBlockSize and RamDiskTFTPWindowSize first but depending on your environment and overall settings, you may need to adjust them for your setup.

Next steps: We are working on a resolution and will provide an update in an upcoming release.

Back to top
OS Build 17763.557

June 11, 2019
KB4503327
Mitigated
Last updated:
July 10, 2019
07:09 PM PT

Opened:
July 10, 2019
02:51 PM PT
" diff --git a/windows/release-information/status-windows-10-1903.yml b/windows/release-information/status-windows-10-1903.yml index 1039a0f7f1..1d23df7da7 100644 --- a/windows/release-information/status-windows-10-1903.yml +++ b/windows/release-information/status-windows-10-1903.yml @@ -65,7 +65,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.

- + @@ -96,7 +96,7 @@ sections: - type: markdown text: "
SummaryOriginating updateStatusLast updated
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 18362.295

August 13, 2019
KB4512508
Investigating
August 17, 2019
01:38 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 18362.295

August 13, 2019
KB4512508
Investigating
August 17, 2019
01:49 PM PT
Updates may fail to install and you may receive Error 0x80073701
Installation of updates may fail and you may receive an error, \"Updates Failed, There were problems installing some updates, but we'll try again later\" and \"Error 0x80073701.\"

See details >
OS Build 18362.145

May 29, 2019
KB4497935
Investigating
August 16, 2019
04:28 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after updating.

See details >
OS Build 18362.145

May 29, 2019
KB4497935
Investigating
August 13, 2019
06:59 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
OS Build 18362.175

June 11, 2019
KB4503293
Resolved External
August 09, 2019
07:03 PM PT
- +
DetailsOriginating updateStatusHistory
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
After installing KB4512508, applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and scripts or apps using Visual Basic Scripting Edition (VBScript) may stop responding and you may receive an \"invalid procedure call error.\"

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607; Windows 10 Enterprise LTSC 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Next steps: Microsoft is working on a resolution and estimates a solution will be available late August. The ‘optional’ update will be available on Microsoft Update Catalog, Windows Update, Microsoft Update and Windows Server Update Services (WSUS). As with any 'optional' update, you will need to Check for updates to receive the update once it is released.

Note Windows Update for Business customers should apply the update via Microsoft Update Catalog or Windows Server Update Services (WSUS).

Back to top
OS Build 18362.295

August 13, 2019
KB4512508
Investigating
Last updated:
August 17, 2019
01:38 PM PT

Opened:
August 14, 2019
03:34 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
After installing KB4512508, applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and scripts or apps using Visual Basic Scripting Edition (VBScript) may stop responding and you may receive an \"invalid procedure call error.\"

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607; Windows 10 Enterprise LTSC 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Next steps: Microsoft is working on a resolution and estimates a solution will be available late August. The ‘optional’ update will be available on Microsoft Update Catalog, Windows Update, Microsoft Update and Windows Server Update Services (WSUS). As with any 'optional' update, you will need to Check for updates to receive the update once it is released.

Note Windows Update for Business customers should apply the update via Microsoft Update Catalog or Windows Server Update Services (WSUS).

Back to top
OS Build 18362.295

August 13, 2019
KB4512508
Investigating
Last updated:
August 17, 2019
01:49 PM PT

Opened:
August 14, 2019
03:34 PM PT
Updates may fail to install and you may receive Error 0x80073701
Installation of updates may fail and you may receive the error message, \"Updates Failed, There were problems installing some updates, but we'll try again later\" or \"Error 0x80073701\" on the Windows Update dialog or within Update history.

Affected platforms:
  • Client: Windows 10, version 1903
  • Server: Windows Server, version 1903
Next steps: We are working on a resolution and will provide an update in an upcoming release.

Back to top
OS Build 18362.145

May 29, 2019
KB4497935
Investigating
Last updated:
August 16, 2019
04:28 PM PT

Opened:
August 16, 2019
01:41 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on your Apple MacOS device when trying to access network shares via CIFS or SMBv1 on a Windows devices that has installed updates on June 11, 2019 (KB4503293) or later. When you encounter this issue, in MacOS you may receive the error, “There was a problem connecting to the server “{Server Host Name}”. Check the server name or IP address, and then try again. If you continue to have problems, contact your system administrator.”

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607; Windows 10 Enterprise LTSC 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: For guidance on this issue, see the Apple support article If your Mac can't use NTLM to connect to a Windows server. There is no update for Windows needed for this issue.

Back to top
OS Build 18362.175

June 11, 2019
KB4503293
Resolved External
Last updated:
August 09, 2019
07:03 PM PT

Opened:
August 09, 2019
04:25 PM PT
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 32a79ba231..15f5bd4ccc 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,12 +60,12 @@ 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.

+ -
SummaryOriginating updateStatusLast updated
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503292
Resolved
KB4512514
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
August 13, 2019
KB4512506
Resolved
KB4517297
August 16, 2019
02:00 PM PT
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
KB4512506
Mitigated
August 17, 2019
12:59 PM PT
Windows updates that are SHA-2 signed may not be offered for Symantec and Norton AV
Windows udates that are SHA-2 signed are not available with Symantec or Norton antivirus program installed

See details >
August 13, 2019
KB4512506
Investigating
August 16, 2019
04:28 PM PT
System may be unresponsive after restart with certain McAfee antivirus products
Devices with McAfee Endpoint Security Threat Prevention 10.x, Host Intrusion Prevention 8.0, or VirusScan Enterprise 8.8 may be slow or unresponsive at startup.

See details >
April 09, 2019
KB4493472
Resolved External
August 13, 2019
06:59 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
June 11, 2019
KB4503292
Resolved External
August 09, 2019
07:03 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503292
Mitigated
July 10, 2019
02:59 PM PT
" @@ -93,7 +93,7 @@ sections: - type: markdown text: " - +
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503292 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Workaround:
To mitigate this issue on an SCCM server, set the values of TFTP block size to 4096 and TFTP window size to 1. For guidance on how to configure them, see Customize the RamDisk TFTP block and window sizes on PXE-enabled distribution points.

Note Try the default values for TFTP block size and TFTP window size first but depending on your environment and overall settings, you may need to adjust them for your setup. You can also try the Enable a PXE responder without Windows Deployment Service setting. For more information on this setting, see Install and configure distribution points in Configuration Manager.

To mitigate this issue on a WDS server without SCCM:
  1. In the Boot Configuration Data (BCD) of the imported image, set RamDiskTFTPBlockSize to 1456.
  2. In the BCD of the imported image, set RamDiskTFTPWindowSize to 4.
Note Try the default values for RamDiskTFTPBlockSize and RamDiskTFTPWindowSize first but depending on your environment and overall settings, you may need to adjust them for your setup.

Next steps: We are working on a resolution and will provide an update in an upcoming release.

Back to top
June 11, 2019
KB4503292
Mitigated
Last updated:
July 10, 2019
02:59 PM PT

Opened:
July 10, 2019
02:51 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503292 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512514.

Back to top
June 11, 2019
KB4503292
Resolved
KB4512514
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
" diff --git a/windows/release-information/status-windows-8.1-and-windows-server-2012-r2.yml b/windows/release-information/status-windows-8.1-and-windows-server-2012-r2.yml index 9d7b7f6c5a..3efbd362b4 100644 --- a/windows/release-information/status-windows-8.1-and-windows-server-2012-r2.yml +++ b/windows/release-information/status-windows-8.1-and-windows-server-2012-r2.yml @@ -60,10 +60,10 @@ 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.

+ -
SummaryOriginating updateStatusLast updated
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503276
Resolved
KB4512478
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
August 13, 2019
KB4512488
Resolved
KB4517298
August 16, 2019
02:00 PM PT
System may be unresponsive after restart with certain McAfee antivirus products
Devices with McAfee Endpoint Security Threat Prevention 10.x, Host Intrusion Prevention 8.0, or VirusScan Enterprise 8.8 may be slow or unresponsive at startup.

See details >
April 09, 2019
KB4493446
Resolved External
August 13, 2019
06:59 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
June 11, 2019
KB4503276
Resolved External
August 09, 2019
07:03 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503276
Mitigated
July 10, 2019
07:09 PM PT
Japanese IME doesn't show the new Japanese Era name as a text input option
If previous dictionary updates are installed, the Japanese input method editor (IME) doesn't show the new Japanese Era name as a text input option.

See details >
April 25, 2019
KB4493443
Mitigated
May 15, 2019
05:53 PM PT
Certain operations performed on a Cluster Shared Volume may fail
Certain operations, such as rename, performed on files or folders on a Cluster Shared Volume (CSV) may fail with the error, “STATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)”.

See details >
January 08, 2019
KB4480963
Mitigated
April 25, 2019
02:00 PM PT
@@ -91,7 +91,7 @@ sections: - type: markdown text: " - +
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503276 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Workaround:
To mitigate this issue on an SCCM server:
  1. Verify Variable Window Extension is enabled.
  2. Set the values of TFTP block size to 4096 and TFTP window size to 1. For guidance on how to configure them, see Customize the RamDisk TFTP block and window sizes on PXE-enabled distribution points.
Note Try the default values for TFTP block size and TFTP window size first but depending on your environment and overall settings, you may need to adjust them for your setup. You can also try the Enable a PXE responder without Windows Deployment Service setting. For more information on this setting, see Install and configure distribution points in Configuration Manager.

To mitigate this issue on a WDS server without SCCM:
  1. In WDS TFTP settings, verify Variable Window Extension is enabled.
  2. In the Boot Configuration Data (BCD) of the imported image, set RamDiskTFTPBlockSize to 1456.
  3. In the BCD of the imported image, set RamDiskTFTPWindowSize to 4.
Note Try the default values for RamDiskTFTPBlockSize and RamDiskTFTPWindowSize first but depending on your environment and overall settings, you may need to adjust them for your setup.

Next steps: We are working on a resolution and will provide an update in an upcoming release.

Back to top
June 11, 2019
KB4503276
Mitigated
Last updated:
July 10, 2019
07:09 PM PT

Opened:
July 10, 2019
02:51 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503276 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512478.

Back to top
June 11, 2019
KB4503276
Resolved
KB4512478
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
" diff --git a/windows/release-information/status-windows-server-2008-sp2.yml b/windows/release-information/status-windows-server-2008-sp2.yml index b8b9bb20a0..d1010bdae7 100644 --- a/windows/release-information/status-windows-server-2008-sp2.yml +++ b/windows/release-information/status-windows-server-2008-sp2.yml @@ -60,9 +60,9 @@ 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.

+ -
SummaryOriginating updateStatusLast updated
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503273
Resolved
KB4512499
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
August 13, 2019
KB4512476
Resolved
KB4517301
August 16, 2019
02:00 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
June 11, 2019
KB4503273
Resolved External
August 09, 2019
07:03 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503273
Mitigated
July 10, 2019
02:59 PM PT
" @@ -88,6 +88,6 @@ sections: - type: markdown text: " - +
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503273 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Workaround:
To mitigate this issue on an SCCM server, set the values of TFTP block size to 4096 and TFTP window size to 1. For guidance on how to configure them, see Customize the RamDisk TFTP block and window sizes on PXE-enabled distribution points.

Note Try the default values for TFTP block size and TFTP window size first but depending on your environment and overall settings, you may need to adjust them for your setup. You can also try the Enable a PXE responder without Windows Deployment Service setting. For more information on this setting, see Install and configure distribution points in Configuration Manager.

To mitigate this issue on a WDS server without SCCM:
  1. In the Boot Configuration Data (BCD) of the imported image, set RamDiskTFTPBlockSize to 1456.
  2. In the BCD of the imported image, set RamDiskTFTPWindowSize to 4.
Note Try the default values for RamDiskTFTPBlockSize and RamDiskTFTPWindowSize first but depending on your environment and overall settings, you may need to adjust them for your setup.

Next steps: We are working on a resolution and will provide an update in an upcoming release.

Back to top
June 11, 2019
KB4503273
Mitigated
Last updated:
July 10, 2019
02:59 PM PT

Opened:
July 10, 2019
02:51 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503273 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512499.

Back to top
June 11, 2019
KB4503273
Resolved
KB4512499
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
" diff --git a/windows/release-information/status-windows-server-2012.yml b/windows/release-information/status-windows-server-2012.yml index df2dfdfbe6..055acb57ff 100644 --- a/windows/release-information/status-windows-server-2012.yml +++ b/windows/release-information/status-windows-server-2012.yml @@ -60,9 +60,9 @@ 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.

+ -
SummaryOriginating updateStatusLast updated
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503285
Resolved
KB4512512
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
August 13, 2019
KB4512518
Resolved
KB4517302
August 16, 2019
02:00 PM PT
MacOS may be unable to access network shares via CIFS or SMBv1 on Windows devices
You may receive an error on MacOS when trying to access network shares via CIFS or SMBv1 on Windows devices that installed updates on June 11, 2019 or later.

See details >
June 11, 2019
KB4503285
Resolved External
August 09, 2019
07:03 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
June 11, 2019
KB4503285
Mitigated
July 10, 2019
07:09 PM PT
Japanese IME doesn't show the new Japanese Era name as a text input option
If previous dictionary updates are installed, the Japanese input method editor (IME) doesn't show the new Japanese Era name as a text input option.

See details >
April 25, 2019
KB4493462
Mitigated
May 15, 2019
05:53 PM PT
Certain operations performed on a Cluster Shared Volume may fail
Certain operations, such as rename, performed on files or folders on a Cluster Shared Volume (CSV) may fail with the error, “STATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)”.

See details >
January 08, 2019
KB4480975
Mitigated
April 25, 2019
02:00 PM PT
@@ -90,7 +90,7 @@ sections: - type: markdown text: " - +
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503285 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Workaround:
To mitigate this issue on an SCCM server:
  1. Verify Variable Window Extension is enabled.
  2. Set the values of TFTP block size to 4096 and TFTP window size to 1. For guidance on how to configure them, see Customize the RamDisk TFTP block and window sizes on PXE-enabled distribution points.
Note Try the default values for TFTP block size and TFTP window size first but depending on your environment and overall settings, you may need to adjust them for your setup. You can also try the Enable a PXE responder without Windows Deployment Service setting. For more information on this setting, see Install and configure distribution points in Configuration Manager.

To mitigate this issue on a WDS server without SCCM:
  1. In WDS TFTP settings, verify Variable Window Extension is enabled.
  2. In the Boot Configuration Data (BCD) of the imported image, set RamDiskTFTPBlockSize to 1456.
  3. In the BCD of the imported image, set RamDiskTFTPWindowSize to 4.
Note Try the default values for RamDiskTFTPBlockSize and RamDiskTFTPWindowSize first but depending on your environment and overall settings, you may need to adjust them for your setup.

Next steps: We are working on a resolution and will provide an update in an upcoming release.

Back to top
June 11, 2019
KB4503285
Mitigated
Last updated:
July 10, 2019
07:09 PM PT

Opened:
July 10, 2019
02:51 PM PT
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503285 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512512.

Back to top
June 11, 2019
KB4503285
Resolved
KB4512512
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
" From c60ebe4b1ed5e13c50a8b77d60d4b637c5887afd Mon Sep 17 00:00:00 2001 From: lomayor Date: Mon, 19 Aug 2019 14:28:25 -0700 Subject: [PATCH 19/19] Update microsoft-defender-atp-mac-install-manually.md --- .../microsoft-defender-atp-mac-install-manually.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/security/threat-protection/windows-defender-antivirus/microsoft-defender-atp-mac-install-manually.md b/windows/security/threat-protection/windows-defender-antivirus/microsoft-defender-atp-mac-install-manually.md index 872f7f0588..e3142e03ef 100644 --- a/windows/security/threat-protection/windows-defender-antivirus/microsoft-defender-atp-mac-install-manually.md +++ b/windows/security/threat-protection/windows-defender-antivirus/microsoft-defender-atp-mac-install-manually.md @@ -148,7 +148,7 @@ realTimeProtectionEnabled : true mdatp --health orgId ``` -2. Install the configuration file on a client machine: +2. Run the Python script to install the configuration file: ```bash /usr/bin/python WindowsDefenderATPOnboarding.py

LHo1(t6U!_YPE&!2nxNqeh$Cj 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Π&D`t(Xe`a`?T0$AV49`Uj% z@d6-)@?*-@Fc#AX=s_9k^SMm?Mts;*v9aoSoEMz@g8sG=w;ZKK@Z!H_hTfH3=(PG} zKOEtD7`66E)QQrbyKNVqNi4)B)ec>;N$GP6FVWPlxgl+f!|LH-`LL9rD!mqXWNb`F zks@nn^F|H@IYjkeG|>ds?5-VghXP@1sJ||TSLzB+u;pm~&t~Z`+2yGt5ggqc8S?JY zPPH!n^a`86Jf8XkIZ{u!kY<^xC7C1L2&ID$c$$FX`DOj2W{OaGJ1LmoZJOeanHsV)7@6zN7G_dJS z;z*P%-SSuK*gqUTb|ND1ns)|`vyH+alazk@RNcrrQMA8Klc>5!^9`t~m51k$=zFy+ zMM6)E?bB!OxtkN2i6m20vRv5OR^pH{;D%RdE9}B4u6!`(|mcr z4&lZX>#FIebZ4N)l!Z2OnJOCE`4-swrZsTSa+OwbK zESuCNdE?v^)xnIqmgl$$QdlmqC!`Q%6~&P!-4eOo?CvEdg3;!9Vc@rh5pu>J0$6vx z%!=I&($0UW-xoTvPxmeEX@?qgdd9|sv4+lFILlf48hIbKYrU3YBVbW8ZONcqNjZut z`}sfpM6@_06VQ{dMEM#DnR?RJL5loUJa;T6jj_cP+wj&tnJ zuy2qwCjHNsAS3sj4htMC#9j$5wd(QINtw01WnD(4`{Ma}%TZ}beOg6gQ8~6lA7Emu z?WJ%SOac)}y@@%%sIinn-Yrs_HfK+U6UpnN3VIN;!^c#J#zL(iAn?xY^q^*R6-qPAUBrcwFkp2I`jEzMv}9fix9wl z5S?tle7N%@Po92XX!+sl&!!g6hS6>2u|SsTiqjJ60DqT#61jt$HWbDfcwVHNd|%WD zn!I`xr)nHOc@wkP?~AIdGezo#%5IcV)A0KJ0Tc6+1(P>7+L+7D@dx5S#To+cq68&z z8qPpd$tS7*vv^{U!vuW_?b15TMmm=Ij2$qd{5;?#eAX*c93$qzpT*y#&`lP zFWLfzJPvB>JfyJ7ouXMrTas{VD{KgAzREcoDkvfGlIelNf1P>fDoh~~C~YlW_X90K zWVa5*E@JVzi2yLhG#6Fr#~Wvw}W z3oq;>VUC42J!vdmji|GkTSI+su%u2)>2_pU{ae;mgKs1!tsttJHr$tIE&LzjNK=>z zoJYsQj(XJnZpy>Wrq=8r8>_iUUEF?+>*u_@vLqk>>9z=CHg4BXlD9wpl$ESZk-pTO`KGZ&Q7^kE)I>P%MDddfi-r~H@3el^$LEQ*40p{@ttB} zCSdR1c+a6>)E&IwBCkJROJ)7=eD<11FN>0i zI4GDg=K!t<>KhyN#GaV9zj>ZIxb5Dolhed%$#yE=sZLn+ot6ZFCmE7&$k|N*piDiB z2;}c>&B@9`RK{nVG_WUqPfBx{b}l^XC2d>woVWbUA+Z-#OQcUPR^X{P6QWo&>q8jn zdBw6;&NtOKda7r|EHpn2CPCdAcVdB6sw3F56KpnuZT4V?)GrWnNT!xM|1Fkj(|7j6 zlC_$fFw}+o@2d96?&+8bb5@Igi0Jj(v^y2Nd7l2-Xz9j3vgdV(oJeD#sBd?7ASgl) z?2yDnju*kI^j;rdoi1K4u$On7Ath$E9Kym$B^1Qop8ta6h1R^)BD>Y{Nxu* z?gS6As-y6lnDMr`RzGnueW#TgQCCict$+uf0DJw5Vr=4w2-I?;8<~KzeTym7R zl-WqehA28nS?}3czeCKC^bp5~Z9W{vGDT;p)8gjk5CG+IdBmw4wyJak!g5Be&WpB&;4EZ|PMoR(U9x(Y>UV+UY5zDlXu@j;ABx}g(a zu6I#VJgX@acgsnvq~CQbO9F)TYlJEIn=`8wVov%;Xl9k&l$1<+c5$cUiDNCaN;X@V zP$x+Xzrh<5l(De;_`H`FVwLpwWXWo*sJ?1p;Z?$;w?&Gbbhj2(#lE)rawC2PzonIZ zT}(;NM_?UJO0Aq_F1Q=Ss#D(IhQRNB`O7*4+<5pg(VlXkHfd96Ky49R!Xm#$DsO%| z-$&qp^S35@tISG9?kx&v9jxHPRFGngkYX8RJ57l?`2lE3`V%u0DYLS3Rg?-|v>K)D zSqf^f&6_=YdKHRX9pIZZ`hoLnhdo#ic(L zv+Vv^!A$K&C2CBA)j>md6f-qmsw` zxwa zCa4Og8>&3PxD<2SvHo3Pa*5Z4@u>8eTOnJbfwR(|dld6!3AIPVJWp)yLq^nd887rj z6Blz}x4G3iBC6^cs4w0c5!>&smUQVM0m~<6V33Mk(Sjz67SF616w3p_|0cF>yCK{f zUMNQxZE`5Uj z1dlj2%|GqJZk78l4JIUv(oNDVR>8iW0aEknQB8&PN31THY{c;wn@_tW!}>_{pID1s z@MPzl$&zg=$AiQ?1W#*Nh+Khf((x?kFan0AD-@O|#63mMsGfEo7F46t>+sk=c#0jS zhnxKbr}X&(O;im`S^lV!I578bX0VFT(1E4Cq>{6ZF=6?QIJ+^ z5^5T0eQAUlUFkn6&YG4d@uUa{w||@nK7jb?1+$x5;5v?|7M92e1w3YArR1=QgHX$ z1CCTa2j|8p-wu@)`(DiO^%ErMK0HdM*;uZs2I#~RNtu2LRJ)eG`_7Bx_xROnCP|VCyET+@@60C)^mw!Qzd#hM*<59i!s%fYz))0}W`HYll%gn~e~6Va?IKjl2+8!?I=agvi$PoKKz9$PK#M6}cvN78pDhr0vk9-|gle`BXBayV=3 zd+YTEsB!0a%@Ryuu6^mM4)#5Q*$96fmQhZ!Z^>Gh>@Hg`G;4(3O;LQc>e&bY*xc8n zg((9R&!B%LjRLSlcH<=Yj?A{ON`JF(3EvewH}yr_?FDYMu7bM>-f$~O1Mz$>PhRUn zHNFbwr^YF`fdLKD@V|W{2r_(@ur_-Hr#=o~Yd}(3%$=N7l&{Uw3*mXrmx?&7hk!eL zT`{&{6dCs1^`b-J7dZzN=15(e)`-4aF(n9sFg+A+wFR0@;Gp9D!PA`7giKH&?SlH; z0a*@$2)8{W<_;PtLWB7fNif%9Mpo}z#S65f+XF>WWUbM}I>+3@J+8m{)1|o3)LllP zw*mPNMi`I1h_l4Pj}24ZG2Q z)pZbMQn9zDSnk+91o1G0Lor2Lz7K6s4^l zE=pQXg=S-_v6piN%4A%_t-c_3zENA_?k@!iKY&cXn~|ORnS|U{{TZH@8pkzQO8Q1O z=Fis2FkfBj|U zwW$_%fpKY|6U~DANn6f2M=t)tN5^vhtSwFpHC9}=9_*fS^qZwD{@BzD428zE#yBk3$-r^dh9S-Z!Ok)uG>;qwl0yqdf)v6e&5Q5&39|V zzZrC4lb_~9EMyFw4ey4E{d9ninCP{(C{9$}K?m*6@dHuDcMPSLSbP1=8?~t)8>{!N zJ&@<qRG75`@V%<%rB2~1oLNp!GTk^~4}w0p7P!Z z)Y|VIEFMl6I~!ox;mNuXuC2~bzu2ajT~`VE@$3+R6ocPvUYuP-CnD^Puuv3V)3_#F zVc(dMw~V`MaMEQ?H<;Fo({$K$scSVERocQeP>{0@=d4!^HvNtB(FflxKX&V>UDmak z#uv7;_X+)gF(cupLmR#LX*&^27b)9_O~c1DvA~r@8F9>BBj%J|^{b1Fn(`5v1L~Tk zc|C6XqP_V=AZ_(D(Qks3W1ol99GPak`2@GWo%z%5j~h-~G#w?RMrTI!&M(P2ZWy=b zP^cfk#pb7ybSl;TZf^ErnTpiBh(&Aq6BMzUJ0o(-sf*R2SXme%1EwNC{r zok9ER6OOS#d;hhOHMQQd__1gwqk47EwF_oOjAI~u?f9{N$SG2aH21tq2p=>7i!M&T zwFUI%fDkZbN}k}9X;~`PE_gEXgKk924LwKIq2+&H-M?TRN`z%4)|ZJuIf&4R_C4?j zkPXMa7={{$*iM-j({ntDu9P@v{6pe%Q(9f4;5zdpI=j=BxVsGff=9?BV~#O!0~fd! zJry2`?vG5|HxVOwA)gvBZgs!RO`_%=ysOl@B{0h7+yuVFTp$aCUwfc6em6L~!^BGr z9kb8I`Pqn1y-V3opE9v@*|}@fRccVj(@gfBA)|fr7yt;=wdu`mfv1`dka@x zlaIe;f82iikU`vsw7V&sA>Wlw1<8mn=;+m?I1EtJxMAb$Zqn2)><^qR{6lv$-^)$qZmHxr zVr6H(N_+x=0+iQekEDu3T<(WY{ITI*^g_}N>3`V@9%o|*iw|-nx%YD11J>@K?iA5Q zc1XkWTu3&2k70R{Bf}1HK*6}3dXaG_Rkof5VU2zsI-QiG`!T73>}P!`uIWDferBJ6 z=#aBc(6luttZuT3XEK(Vk9QRPJE8fa&OEj*pJdWJcz-UV;V9lZv*`UYnbM~N$lJM z^sb%g1E4ccxYg$MUOpo^NQWfexb#5cmfC5& zlf@9C?&lax^CO*{^>>DV*FDfj1G!GFti~5tWC?udt)~ z>LwK}MhV%j>oQt2qd1()-?~eKHCwRHrpyNf%GCpwDyWq@mMUALlD{^ef6mU5YXWYM8?3*_}EjbNl&tncyL9! zC`LI>$PfIh?)m4~S^d3$<%3mx~-W}5$Lu}D<+6mxF<*C`K_J>or-U_>Si1{}sQJ>yaQJw=BD{@V9!=-`B)d9YuuSoeB8(N>+(ug9?R};tqB<0UY(G z^W#(ZshRQT1xog$M-Q%Mrp424p&aJs%zFrdRC(0tZqHWt?N~q&W z@>|fzHsy5mTs&ELT^sd2WR^?9mV~Enfm19Hi0Ns&)jLDvK;GH<&s|&RKi>HJ?xyPH zQ=1cB#twS1IfmsSAv;+*l80>LrE1=xQaRX0Mr^u4vb(*o=v0+zdq&Xmm~PC?o#5|R zi_R0f4aC54=$&A2P!oR30g2e(Vna1l_X?h@?_WQ`3Uy&ui-s!n@Hc}Mbr2E8+ODtV9M8-FQ*l^x-}{pQPS2S#vc^o~EWdW%c<@43a8X=qy@p`si3G3DoHa;b ztMO>sZ&IkGymOD6YMffex)+q8__6+>eZ~f`!Us7kt!P2|25pQBY8eGn(X`>&WGheY z2LtgA7n{@FGh4;2-%$KG^w{VKhDXz;YGax1y3kJulHC-#ytSK}jG__bh*;!f3gHVD;suM4B>*^bpU^Z{m`E#{r#O&jp`*Iox+>zV)0kyURw8Gm=k6fp z&7C?a-f#m3Zt-5bQSVkd+O+l$+fdBf>yQ{nH-dmiuOx)Op_DHLoKg0F3Mw5YXm5CM zEgc<{?rPui*-m2Saupw>4m4OGyV;|aFKnj&UQD!7oR3%j)sm__)hf%Jv1=FP%{`Ku5e550nw|{QzeziV$Gy^@ zA}+&pXKZ$Yq<9@Q5l}~Pmxu(*=7Xr6j{Td23}6iF7vZDN#9uj-Gc>~-@r@1&?^ga4 zJQ$#=5&$-r#ZBqvv50qaHe_JoGyU^e2;+Tr@+6_c7Q*zqn{p<>xFVH%Tr)c0RM$uI zUqPKzuwLrtT(6OSffZ1^&)}G(%d|?AqX*RPW|L2`?-F&NVo|W4NT#UjUYKC^pqvbj z%1U6e|AaePEo*B@2ZY^be|Xzy)#qr(w4;#mR#)MPLICU81^p{PebiwI+NK25D%>U3 zyeo>2Cr*8e?UMa77mdgAprsqN=#Y`@C`V`ZbIqI_s%o+GM84oyJ692T8qL4o7%7hf z+-<_DI8oEXX0JZdkjx=#Rq{Lqf>jIw!1_RmudHsx)N3hc(b_&ii@!q=1TCZpq)Go0 z)1rpF(1Nr+l+FK{KF#ud6fSJvu6yy#Tig3j9L~2LR-9SrUfI<{wV%$IOnhMDQb0Q_ zHDyxu40Tj5k9VMRgBfrB2`P%qXk1K(N@wDbAh4uA(5Iu@!6o7h0Xu9w5SGI z)i}<8$vg9&keaUB^)@vmlcC5vL-*sAg{ldaY$ps8_0oHB?@iAK=dEx+QI4bvI&3;2 zNej5FKGFDSL_Gl}tHX&GL_fvVQ>%jE#Uj5hG=39Y@XVX>-5qxDcOr$2$jhfv?W%^h zB6nf263kZ8&CBDuIE1_4?O%nh^}E$gSf2^iIjlNqfqIOLMiv%o9y0N)*ZFv$tP(y% zc9lCyURw^8x^unQno$n8_Ov+}|4l<>hx%axjpC~we1>Ij1;kc z439~hhh7HAz~IGeyq%F%z>IN%xRfz1!;xkI_W5)!PPsc<>A>kjf$KR>Y)MV@V?f&GzWpJm7S%234}%3_b)=P zTyyoU@t_Q^&zxzo#Oq6BdQJF&PN8iJXrR`c@2KRaPpb{sCpdd>epV@AYdR0c1_<(5 z;jm`-EMj_VBi?r@qAs5FRad)%-Z(ie{6r$C>&J*@J;Lg+qgTF{M|j5cGuA)wGWwl> zmIvZnA1i|ohc~x6;u~_?pG7GP5@Xy|lKc(1rwTt^GJ(PI+>xmZO!R_aI0KKeuBCXZ zkDv@W<8UGjJ8W#%c6E45rk=OkD#bo^tDi$Xs@h?xJh$8&~i}YpBtP(oV3;z5UZ!d*3zenRP zYmdner;}`C0T(Kb(Ry*O~MH>`U#waGh@WGk%NUkF7s6*rK56yi9d79 zKGjX_`6rlG%X)^ktVy{bxhk$NGhWE=;GBI!eJQM9O@^rb$aP)N8Yc zW`>Ab>so?VYF#wdj0*(Q3jbF&{*<1xeq_}WF6QglshjW!f?dXl&Sc6S)OWEU9pDl*=bsI4M0CGJ zW$i?c3t^$dvi~UN(Lh&42@le13O!pEaYEsgpE%CGj_CMV>)mw}E1Xv($ePOc-|PySzAW#qVc z+oY}E!i#N{$11L6m9E!Y<}%T7v}X>?%d##S0x@8yEy8Diw=DU|Rag3+Z z;oP0Tng${a8T$|e5F?^s2h16m13ju^MO@W*oi+Q&R&5MH7FkeehtRLDo-4-;Qj0dE#8M&rF`Grb0F_UfYd_}o+g&>}W z=c{R-wv#TiaGMDoOW>w1Lp5}wJQMDGvW?*0EP0a+rrluT)Mtk;L_7E6oPRQX(>4`k zvg$k}06GBRfPp3B%e?ppIyVvG54sPZ*x3I4_-W>?r9-msVmZINl-c8boZHoS5WP`8 z=sRuFU{Z!VwKR;n?azFOwV$&0E=wd07hjIpv{YAig*J?k(je~8P){ezm0>l0*ocfS zvJ;I6PJE<+bckheWqp%i0a2@bZq{|d(KH9>czfnBsBz5^Z!xy7pJ=US0H4c+n8+OA z6vR7{_s3re^KW{herTg8L9^h7q*7qa2yldnJaW^QSl;T%R>-3iiBT^4zdNi`f z#_18`cUz?`wbb#a@PVt{k%1iiMim@P*DC%3O0!+a_=lXCFp>3o0j(@Q&e1EpwtNV> z0aOGui)|Hd-CA@lmY;FIP!Uo1?#s`TRrw}H8i03=k9=1x#{6fNWDC>~hvw-fwrtbW5 z7@Puda3`;q1!~BwI#b0E8Qa&oR&IZceWV{$Q%S2o`{=4yPzfgPK=`RVs^caJQ?S0} zpDIiiN{3Z^E}DoQzuQ{s-A|j2C=9kvY}`807+!4k!Qi-``6WtCJSTM z=&wNuBjA(=FB+UOd3BncCt$?;^z0d-9`IyGFE(Q)8!Oxg3`MAsdKpMa*;`S8Xy2s& zyT}a2V5AN!%Y&?6rd}NWO~)cPy=W1=mi&3>cPqJ12Nw^H`cZRP)RYpC@Sbfry|$@6 z$MD3oZLVm4=1yG-cnU$VZtY1PMV;oZK#;zf7><=S(mqDS`XyLRUU%Y^eB@e}Cf1^y zUlh47zYS~j8F=9-Zb2F-j03R)zBUp5M-=dS>d(eVp14T-6GON0`fuX9j;ggL>EAPnwM2hxjIumB&R>?@_jh*lFlv z9PCR3ragiD2YH^=@#~$L0I48x4d&_uOxcFmvlnoZNOVu3RHTi{AGx5Mr{=Mef6tuO zfYhM#ieI$lrsx($MX?=jv0P>{m3=hVq>v7KiLF==h-G~sq6tFs;b7-Lx%Pr=RGudh z2sG&iH6*IDN4`>33)9GRPQ-%0R{#9bmURedsh-`{I=R|S|9YEIy_7QoPY=7659ztz zYs)d@Jf|U+R)%2kP*(OG@@__yi7aOfLC6S8$hp!WtRZ4J-ym1O`Lp2HZ)=O-K)y{_ zBXsQ9r#F++^qD!O3jpYrN=D?}dmhY zWRnZSgS}Nr_43(pssa6f@5@Msww_A9XKbHeB5AlfJi{CcX5ZW`@RJu~o(jm4@IyU7 zya$=fLiJ1({&aEfO`bxbBS^e7ZL6>O-OM6x?977H4_KCT<&-=ms$>=MYIoY=4|Qep z7*hXf?YsLR|LPs&#hQ%gu!!UK}6KDbHg#E7&$sW|>g-n17-cMgEx)Wr{K#oYlYQ zpO)szuc@L{%Fwn{@MNUKl|RdRf#OXvr<1AviZN z@%NFVd$=QCZA|Uj=8RR6XXkSwTJM8fbF%BljKWW5WIGI+8X8nva=js;`L5hl`+HkC z(IWwv``0trRu(<2tKEu!+}!3$U0n`SD@`j2mRTu)8=eT7qfu$He1*I44AC=P!Be>i z%$2dMrDn&nR6#9U{hF-sB)_{JcNV)-4)0fcnf>v*^fgOzqIu$MA+KWb>dvfeS?h*= zmAg$r?{!hmeP9!&R9w~~-5avEY2k5Nob#IM_2L@+>2;giHd-2a&C}jTFc;>rw(!)( zPxIeQkruD=`+7~sE`t1@sZQ7NQ9cw|Gd|H;>Q^93x4rFrJ@br{N7kJsD{gm2!6J4NpUeK)bNFf9(}y2nUa3F${wW zXzquFnbv*j+O3v{pF8Z*yZbBHrChlk0LFY7W(*uCVdnr)r!{-CzM zOS-FSi`_aox*NA~+83hJ8*CHJfEeVlR#2u5oWWuobR-2)^su+ogH-Uz#i0MIS+;&{-n* z^kTzDcHz{*4=JQggv5MMQzGFH>Lb``7lrWom-2#?{O24=yy?qg&e`&`%L@QzkmX!f zMJK5|WNcVPAAZ^KEAYWvcI&V1{=>bv2?okvncpI9%M0P54RjlqyvcV0M}&LKX zjl=C3_sc3@ofuX-y!15{OLy~_68*~5Yo+u%$_ledm&SP&i` zbGCP}(&+zi50 zq-QrK2HbmA!S_Ey-4?f}g`P;w*KQ87u;93wPAw8oiiaY>z0RG`u{ zQ*l95RInz)OoUVfLB&dilr0xP!R7b-{^W2Dhx71o-}iG}*Z1>D!%9O2g!}4yevF(D zfH$kki!*#Y;IT`hZUp#3J--kYfKQq_YJYKScgTidGUF)@ecK&b0_6*QDGS>hdhZv> z(D#%e^Nr<&&~NlywjmJ-ZXnN}p66SSD9cZi*R&T7R1U{Ae421-#J{1J&Kz5vkBm%K zP-y`bVKVtElD;&Sn(-Litylu4=LQ63fw)9*SMu1T>V)2RJ{>DOLLU)Q1tHjXR0`^q6|~MWDU8- z;f~KeOBr!38JtWt*Arvn=OJx1_7@xCdY)G`N#a^xk!#}e4=1m!T^(Yl4<#k_PySnN z(@0xFm`T|cNjCv}#|CP^IhjxkQ9c`f)Y3pW!f)i$2I8a}e}NC9YS!xlMlg3Xx=j#m z>EIw4`{#t^%97-Myy(JfRnc)jm7qgZ4HlI1Qh|z`L(mAXMT=pBTs+AihttcOJZ>1X zKI9e&4xGgKY&Lfk?ifKFvx5Eg#eOOJLDnB0Z!$upZPqFWJ9r4zOYXzG97Wt7GSPp} z$3q!RFMx9n^5|5+_I#59P37bfd(Rx;T&~3OxNZ92y-61<9mQ>WSiZXYxVoWeEvrya zmIwB_0I0Iz(GTrDKYxhM2a#|{v>~(FOB}eT!Ue#s6q}H1U1kny8VWIc*VSJMs$?fu z&Ns~zB>GO@N*|+FM@bHMLnD++N8oSWP)>CHWoy`o>Kd_3`~6bEg4%qRI9Zi-*S=t~ zs&d76urk_hq->!x*bYz}-HuR}5%W83ta0L5<8%oGmD}2__Zgf`%mEi)iekoa+-{0I z#hy$*AuD4)AKPGj8N!$52N<6I@_qk7ei8JX z$4p55kSpBiU(Co3jj^Hd5NTI@f2z^-1)iR+QE2A9ol^hnzFnQ1{CS}w1xx{tZrm+F(PLVB`BJ#r6jSr=uxD+2v z=1v^(QvP9-!{(z1xbk8X$2p-o`BDij`2jK^T=PK37`;1Y{#DqxnU6B26+Cru+J`bK z6M=YW35izn;}w5ka98nLe_d@PPyyI=-EaEa>l|a0brdkV;VbpCZ+0ua?uP`NLoY=4 z-1z~PHAE017$6_iuji2#9Q({v_r>J?ni*QAbmcwk~q*zIj<~}=RawdTJ+qDd_3Lv<@DS?yZpgON3C(dd2i{_ zffePC?YxC@e)-KQ9C^s6jcT_{58v8*5PLgot0Z~lX(S}KotUo|&#BrKQ4hJbd$Y%o z#}*oqDUTQp^&a!?sKz(%ot|WSi()wSnNoWR#D5W?NbP^2pRn~qQ+^mO*gTsHWcmxe z%iXpX1fuU;^QxkP{cv&9pA~J3Q<7ue=$NkFswnICE~7IG$LhLATc%~Yq)0rwa!>dD zdCCj9z%{tL*-2tB8^6h&umv6g$-|fFZrwQNK=fFs{k&w2__ewO;jb-7f863a{kw;T z8#?E!tsQR|#aSje)vvaP_q%YoEwWls+~q*+?h1uue+{T=6r2umUyAs9&&=GrEhgD# z-1e_dJ4>Gf?+XcN%YfdnwI$C67jXirtQ2Cc7$p52U(8*a#+oVX4`H@j1WzsI^eG~SEsSKMb z6pFhXI;7(=enh@s7GMljcx)xcnR1cCMi!zS zrfR-C{T^cMb_*5}4#M#c@RKWIfrEi zuw_pW_@$P)$5F&xBTA^GM!t5;q11i~(Ta&5jau=~S{Xq^N*=3b0(UxG<=?KE1l+*RWx5 za&_#44V+@#8O(>6$nY&H#O^TPJbz$v4jXGWaB2JNWskqUMtjbq*v`=e>@YLWqH4MA z7MNml(4r#jUm+bzeRKZ=5I!P7E;BNUT|-|Jzv+cj^-r2THEgT(Zw^fGd(LcA_O}^b+eOvHw6SygYC032y-)KskU*0Cqsg!zwtch3~(J_7rn_lpMHwg6z4^atAO26Z;$ zMno#-*jf@n4o((gm0@|qrHB)3vrN2HNYShfp$H*{HME&0avqA8VgTIcn3H7Xw#t&9 zvkw^dnIZ^%J$b&9n#wQ&oMb$)w$GR!Jw5lSg3WK|m7NSfsu5)q4J|foB;?nxP0#)} z=Y!w7IJrx$d00-7UFauasTKU?I(HAQ*q-?ewsJX3SSh!>1LsU4qIu-x|Kc*du0!0O zmuLaVs?oZ74!U6=J-1J`-GT4E!4kI{cGH9*@Q&&AV>f%LL4&kIHPkn_#Ar&OPj3}| z$$H}6X3`yq4^K3YV21{|c!SH77gNq4{dGOH42le1W#u+f$riEbA?mfyHz12T6!el#m+ z>n44ce4F5lRRk}dNQhU=9!O@Uv;MJ~mzvb~5TH^PiRUvBtoe$@u1pw`{b5HVD!}{) zCNyF^UKUzE^CbCVid&vr)h_SF-FTi$hb`$qoWb=>EjD1}QL1@G`-;C~S!@B(xIy+l zeH-Fa{y-PRlRWp9iK+d_kPn>Sz1((NJy+Rg3wN_i_UZ2;5_ewjp&+kp6$SM-g{)o7 zt{tYjsv80wu4-tqWn`f6k*g0+y4skC@y>s-l6`- zW>wgGKc!~yQN z;;f|+zEsv@x}ogVG|kywZ^*R7qQF^aJTLUlc7y~pA+Ueyxb`-x7Q*lXF~|jhnQnQP zZ8mjDF-#lk4wO@bL;s}LY~m4Rm36%%eT;g|KLO(Pk7)$dghM|SMSg?xI3|k*e2|}v zwD{4K0=pDhsN_uxlc*(^sNLMgbC9}s2RvVqIZaYXwzpFawk}xj$r*ALJ7`4C z`q8gRYX<7X`XhBI78J(~R4I3zAPppohqH&z<$@tikhk@M^WE*0W z%=Ub|x!@-(BmHJqmksOe_&NJ>%DS2R;kCT(To9y)gJ1~eK2a3p&F||_mIav1pSa~G zIXo9v$;^tcVrJ5+vN3QHFaZJ!7uqyMB^5`13k{DOp6)mDAEt&t~|bNgW}L zv$L)=9dR{rp_XjFdhHR5l0FY<*0>8`3pbJRpWYs_o&iD??UknTS+h5HHUbubk<}ns zqQu2i7gB^vW9Y2%f2@;qA>DuYT%)#yRFt}mrVMj}wg-(po@KfS?-XRNGe8k>f;%<$NF^@j$FXt*49g|fql-;$^$ z1;LXca7cGF3`hTs^$n`!S!DD15@+Q>-45)(MEg9MZSt%Gr8FX^D{)0|iy9W&OG|SM z%I7}SOxjFU_$}7i(GWxDP)pw;ImJd*O{nO1B|LC0F$5H%2?hEQTgDgkCaYdi1|V@M zP|aVfT$XBKvM-KPH;f2$tr@0;t1}8h&V!OKRi5^!`p)pAgmgk0pH|xD zNq(Z)$MkC{EFtOUL;sUH4{+~h7#W4H&*vNdW@tDtY)*6uWKP<^Y9>Kz_2mgEjqF?P z{`RfQ19&6*w1r!*IQi1qM|5d{PfezGiQ`u2aKp6{g8CPaWMj9X4<7eNcF=R#N*BRe z+?=nQ^yjOs-5lD?wOym6?pTF_b9H|5TX-7SvOHYdWfvHk{dLo5m1k<_{J(7%S@@4T z%lzXiXAO%s+t&70)zDbX`gx%7y?DgevfA>_qJBR#FNT>yuI9}STJ|;chmmNZIn=Zr zC$PJdWyX(p-AQ;}N^6k6qHBqkU*M=XI%|8pY<`fQLk~F$i_K59O$e^qP~_+2Ewa=* zAim<$Qe#poVTP`U(xFJeY2I!CB2_ze%qn9G4?e=mIe`i#FiU5~H`kjgHA_&gKgFr= zXR~$1qSrsna1M2Lq!Ino&>@y`&U?s_ZirOm)X^8X*4#Sydx`3uKD{*3OgaUGu;D6W zUrhE2{^hhs?YFwNM&8l)u(@;T8bMKeHzMs6=^NKzR#jI2Y}P{WOvwOn?D3tnoLhmq z2qg$Wqn@j>-HgCyC-@c+`M)TCV&gnK-a@2|!pXok5yTA9x%V zR-WFdT-o8p-Rk43xD{y=EQLnCJ46j zEq10%e)-4J+1!du9k_t1*WA4WPJOc7xatuFd~jxO?C=E+{rTVdR8MPDzxKPACb`NV z_>P*!3f)8VYrE*A6Y=*V=QL|e%c;LfE?6aB^jO9A{#S(|m<-u6M3w}=&|NKlQOY}X z^+%m^oA_!C zEsAfdULCMifgXkWQ>|T@bfE#Ya&&jYD@b*(k_ASIXQA@hQNwnHFYC>58Z$Rw6J|PY z`dSu7$XhO;szebI?g_7M&6C@Ry)$?BsS^*E_zO$H#h}y@`6J;FTS+%dIE;|GNHQ8q zCofd2Us|_y-9__Wn*{10$tLMfNJMq5I*lg0qIi^4QP#X zVQ>YIncz(%C^7{~vgnvR~`~(o# z1c9H-1Z9-qFycPrZmc*~w&M5Utzn-TBzw5jzI%1{r}QOXwZ~dIZHcR!-unFD&fK6r zENp8dEyjGLH;-pc+pmM)uw!)A zH%*1a+cVb;%qMUyy=Rm@qZ^RlQm*)M;Q#7M>o#B5D3|iQ)Kyzag&nPS%9t!U~(;JGjNWV@G$FkSMIT&k(&dqgZX3}!wLH6`A zDaMs^o*u4Lk-U~HuF^+0{T}q{D%+Zr9UE@8&Pz@g*A>PcO-gT%UR`WF5SF zlG%KdlGeNp%OCaqZpC+Jm1Tj6OGSTq5tZu`9(7hY{Hk{M2iTCowY>CdXf(+1f+s1= zfUhn48@=$%aJ-3_6DIZpj}#IP3{h65?mBvj@*SlUN3Q^k1)R8*oIQrK62*zO5kGs`VPplahCNV zxxbKmc7z92?+%?BydL#AlW(rSfl?nn=f-KNPgnPNLjpG+ssol&7Y5$t(y?Kx|17MK zvb)U=i9Z{dQ>554x*)nSKfB;{fF-*!*uA96R?mx$6jk^C0(m3BV zzJksO`F`!+N&$p0-^Iz;JEgG%r9KvzarMuoGw-5*3&q~pVdrx3G>lvc1ScO+b#0PK z@X9SZzz|Wq>QQ(%+jBwu|tg@osYUrLIU%&&c=8DTi*S;0mi({d=UR`X$1s(MPV|mgDU9 zg@$**%07LK+qkF*m4P@X1##)*!`P>RYHu8dI7S1YR>XE@`NgSA`P@*I?-0XuWhAY= z7l3{xn-4_H;N?~`p@G7qEcxbmlVUdS_+x^r7|l`dbd%@#HV1AH<@>lde>Q}vE6v6h zEnbc*ocO%?Wis1Pj0Nn+F50--oeS52lykf&lHB<7YL|M&y^AwNIo~TKzUh7>3rf3BB$LQO+0LV;?K4Q@I+^&_h0B%p3l7~^+iJ<>WaAa;NOK{D~$|a~9(PMym@lH42#DVTJZZ4<;2x@I-q{0@0NYeDUy~dm1x6W<+ zx!56|`fkHRX;A3Mp&z#1+_N`lx^I6`*0D zS>k)J%&ITIE>1?BgM0};C+C4ZsD$m^R=Q!YW4OcPgl>x~=|NT+=3PgL;t1G?#}=%xVEJ7apy1AJwcPPoBFxBL#HlZl!TYe?-+fWKuQ>}xtIWI9P7W)*#^BQ4t$>8M;NdcN8>*8FSrqtD4)sW2_>5QPuwozdFDD{Q~DKvUz&Uj|CakFJEYn;t!5nao<@4 zZF~iVr-KXFarrXUb4ecLPb~udkpR@u;t*~(jW$kGVO_W1vVU}^al#cMSBk*hc zQLaF7>2B8tJOOxxdqi1Vkw3WPu2$@84pd!OzT@LGPh?-w(9$ON?!1_(DU)SB7U3-l z6yLQH7rlj%y))^YXfza@AF0Yh_A=X|7CIFc#dXR{$BanmV8rkLztab7e9NG8F&o+6 zgd#^Gr(j~Lm%=6}3yHQg=VYmRzM$8C39{ah#Vpy3(vNs!2Ds863X{>~g6TJ8XOy*b zRsB|y;T6lV6t)`sh(aeXkQa=ng`5{#+Dxfe;Q^O+Qk|2Wk<*`d+BC+Q`6C@5j7>_HmzLHa@N`YG;^37sw3 z?ydU~!A>0vO}RVuggukRygK(p+o23!DPWg}H3V~3q3LNgoc@gc^%2qliOc9{A2}#d z!A8}j^+!zmop5)kDamQ+h-UoptWe;t5qGjDS$gsO3_L^jSr6W_uO4O^S74vGor0XX z=Fv#8lZlOIaQ|_HeK18GHTnvW^@ni4fckymQQb}sSF`s#T z-ikBt3O7G7e|VgGgdM>b|GDNilo#l59BxhE`F&|jJbZN5wM8_&&Tt+x8O&5=jW{p) z>L#0HfW^v3nf`nZapTij~{fg;5)4*Xfpe!Uqq6z&|}G*etF+G5l%Zxlv_UAQTLygpFz1M=fB z#xE~wvQQ&CnD(vhj{2*6CQbF3b@IGMG>GYuXSCja;KKcnLT!T5IiVu;F@e#VrQJ7U zv-Q7yKwucm>6PIDaQCidvp=T~gm{T47^a43Y-*(318;aTbZB0mUk8rq1;DV4vCqdC zcYn4{CKm#~OzWvR_CjxW=W+BTo#ou7w2mto=0L$5CY&Cw(+EKZeby42| zNSU$wodn;QR@a1pkebu?H&5e8W?`@v1`u>MA zXTJaK{15-VD=xhE``yQPHh+-4+R=CO-q~|LUw>cm^*`fJV{^P(PPZINdw%5dwC2&H zFagI^=c0k6FpW@bDi8YX;quEr@)p5LO};%Jnl74S)Ur74Ns90s>e{M<-AuD2W6~5J zCC28df*dz!4hP2LQSe`D}$v zRhEOL?9g&_4ZO#w_UeMEcOH`3e0dje?n|&L5V(@>4)Z^oj+L+}*3E2sOTxb7Mx}@$ z*jIsW%*h8HhKvcjAhHbQgADc8k#-VZhN6gBWt}w6bO50%9{qu z;X+Z=knPf1)Sr+>#T98p^yW|PSkpHROBGx=!3DeYWQLq!vBK!;g(RscV=zg2AXYgS zrnOM>rcl{O8^fo!ELij1S1mqK!1W!fq85_HeGwK`3D*w^~30+tyd&Ow32=o=R@>n1&3RPW$;)7A^ewN zblH6>1Qdd3Vl(wX*kqynTX(~1FZP4A#G2jB!JKj9I{JZYJ^KVzaMn+0fzTV|o~CN_ zBxeb5I86hp!NaN$4ly-0KU6s+>NKuj4=o%ZVkk!PaI^ynouzO~uRaqn(eg}@#~SSN zHXgHVSxA_xAh;R7X*j`9o>EW3JPR^DcLg*yl(rPNIJEkxE5RKnO;Ml}75>H@&O0LX z41t}nA=;TykD>HHo=x>pWS3M zmf*$c&Mt;b8!j2HZz1c%>3*-)If5ac}0`g zRgs(dk5aFcHF>}@2Dsi08!gHM2H;mF3zr*G$0HE#<2gq4mR<48FRe|5V1~OMR7JSB z^BT$C91(dvRBw@)=FTARGL}we`M7l|!(w6lVr^AeGKH-1kTwnU#8JI_m6z`W^Y4X` z(!K9Z2y0hJAhLY%?eh321;bMFAZ!d#(1BsO$5L|R(YHf4tkJ_03xVp-O8MzLP7m)h z$Z}0Kq%{^GTEb^RIb)&iC!ot=9<(-z?~)gUb-k^kBsH9qa=nzY{Q7Llk0g3t;&$nZ z`5LQ8@_;9*>bU0v8FpN1bT03>H%MGwf1jZpFiwDK&dP>;4dV_XVYiQ!|7oD^)BXF8 zD_fhFZb+Dk^0y}%&Gc2WfI>1bbBg8vnY^Erq3zqOoXJH9w|{Uijqv0XWN zkQU~6|4+4?KdSXVgVHw7(}Dj0NM~C%Rg^?XH^ifop-BmO>q3jAwc|%9?4L5q&u`pB5R}AiTd%!Ozg{X^Xe@kl17~c9 zuY!e46e42&P~?s2kN1@JkXXUN=6q(lVU+-r7=PR|5?Ffxdke>G*=XKIzap!dxF)=X z_l*`G~98^1u5auEVpJ|{~Dm8R#Hi-21_bXM5 z#Zqp!ID>U+c@T$<#iu1#SyBB>T(qh=_T); zS=aX#Z$sk5;}xm1H+HMItf-e}h!|2Td&sYUy}drcV&mrG2f?HsHal2If6ljp@69Z> z59J#vhoNKO+c9|`Y@pOow>(6$`5%P#^OEI?(3UEwRiPz7q4lA1cC_owr#j72r{JxnQ~l90=R=P85zs?~+AU#T=)k zC9gigwzRu2Z)J!>46%tX`fqY?=27f;H|?-(`WvwpADnm_XLE{NX-?L!`!III! zSE$WF1D8H$^_-ICDF7RJ7 z)hFwB*2ytHl8mNRk2T*eR=OYy&u$D?p5xe$4z2f~60)U9@-tWwT;wg);3$DxK?Gxb zVGUaSnXG8hJ>(7n_MKIO0v_$J;S8-YMdNZgnNRSLh6@V=_`c5x=m|r$)1Q+pCE`78 z0RgLDokV1cVZKBcU1@{czsoZ=9vUC1QOA$dZR}$KBP0zkgM!mIy|aYa7{9R*Z5>Nl z!T;l4*sO7hhkXcr*~3<1C|bN`>q_O8GSc4U+|5r0YJ<$RYv0kVyaGJ5Skx{ni^2cn6)+xJJOPp39OPz&4BZl}Ekf9`NXZSP(b6r$gt z#h8HGU5Q31)5VL?=H7`RJKbho@+F|Bw;^|=E57}8$Xy%4Be(}hBSN}eRoJ&!l?uJ_ zyEG z@*1y4A*r{!T&DL*>+Ar@Eu(s-GG?p;aTTjPgXO5lHmJSJaVuseY-DfJ+|YZE?m}p3 z(%1w5vY*xq!}q(YEHk3MtasdgK(TYM;2Fb!znT086M9IC`fna2Z{Y)a_OWpsP-pL7(pYrE3x21}lKERWE%3q2imS0h!$}_FR8y;*ce~mnc+W{MJ&r}Qz zj7M-j3$fQ;YJKqxrMfElQXxdu);;Yj-cFm^lDR)v+h}Nyk0xxWEiiWD z=2dPZPM)y-YTQE)SHtUeP)(anWR>c$9A8C8#%%#713{JJLCXpX<2-IY^KB1nh-x%J zzqzL7>b-qsDC~3Ih|Ui!EC%mW3lQoll=inFF7;81b`3>a_P*|?(9EWL%-%qVHKDFH zKHbvc$UA8gF58T!erUvbpOQ7<=CL8ZDP6hmIKO#|YM+ohS^p68fgyKz@$*W#THq>8 zGykL|mv?vU{)*Uh5a#v6+pmnB_HlL`fe#~;_fM3seU;N>h^L>Bymd!_sc3`iq*a*} zA7UdL_OX@5Coh*#^fgQ)Nrq~!GR^{BlGmZ(v9Ms~Esk?Co?|o&ox#6B3;QB6we)Eb z=b++myUdSkeoV3XDPm+^Oj?S2a~cWx2V?|ADDzm7m}DpZE>%T&(fs*rGYzp&uo~+B z9wGWEXyQ4s(u(J6s4vmXSv%@*`P|wa2B5F%9%^y0O^+24j*fB!fIMpvK z)w~AI=FC}o{4RBDK`J@_4d>jxGHL~BgL1VOc@5$eXKSzDa9NHVAL%@^i*~seGJTIB zsRq1nNrck!6PPrGhIg}lT6;W>n>~W1)sVu8mwl0F2_8EuSRq7UiB?oi^FueO6Nief zv1(b(7u=)&HH_f7PM*Dlx1_d{^f!`)p7*i~*cf zMOh9bZvO_+8@0O@>nn@0M8icGtfC!1CXI;o!t`}8zgH81MgKj|#2eg!vAOyqe+G*T}F62*ICXHpusC!VoKwBb{b*GgGE=~J%F_5&j z@LkKM{$H^T$b(I&#-g~&*PGq|BNf)g)m$J@-SilfRp5I$3`;3|uxH(Tx@P(P*Kz~Q zJJDDyA@$E`Be`(N;{*I$VbNMN!-#X16lQL>@QI^~<%uQC5V3pshz?n%THh0K0r{wE zpOxTcez8<{p()FlO6u${Ul&fys*F8YCT^02AUSA58xoC>IGwzIsZ@S$0wnMvC zzIcvA=h15drf-F@XpA4N8huqAOYs}9Fgw~Cgrpd1(R*@q+gAp#=WT*YyMsbp>N~Mu z-|J(u&u%|=YE3|#)913v#S6=CF6>I~tM3p_OvZ?f4Dub8vu{ZE9Tc=->F@@rB#Ue)vC49PZIIobs6L&f8~a6!MeL_&2N@L zMQ}Xilrk%`4P%d`V+Dzp`O}`7?vC5(-54(`Ej~|yR8Mky#k91-a7b-7XRX~xwRti- zt9$b~38^?h9-1DMi2$o})eDW?-i_QIf5Bf_aC7E70vMv3H#`)^ns@TT#mcs~(e@|t z;vH{O)2NL=JpS!~z+G(+E64$$MJ)+~q1$?8!{lOIo`IXrS$v&Kv=+)RWLGcxSNZ1q$BIgK^SWL zK$mwrzTG?x(PSZiX&7^8!oG85&b=g}^HDo`Q-e$$n9j;FNSOF8`erB7-QLSoYyMi~ zye>zLS6u0@naXO>OXJTEqE3l?pWzi*s)L=$CnlD(wvH#(hOW!rteZCuneI z#d|=m*+i$Ava!o|TJE-tWF0I#T}i!rk%KC)Z}REg!0(Lo?5cTQ^(afjV&|c79`N^2v_ncY9j!he89G<)G-zJ52=GIKWpyAazsu$EOt6Ho7UXhbsdmW2L*^5N zBY&=BM<&dhs`SFcs?5s9D#!3G3qH2+AktA(Yg1A3nBYp%8F{ltYh};v+a8!jj<;P75G}ys`w(j#_dTlu8w^uztOa0`n(L z@M|P#=2fdH9-K{dKz#c=oER1Y_5Cw^tY*#($4ZfSH_KT{_`okFqAMX z>8Drkm^E>AoFC63YJ;`dD+K8Do$~~q@ldjFtLUxW(OvUp1w$LGes`=jfugSp+ZSf1 z=|fBv_|xfHt5z@eOHB2!2Y_dhQEH1|5w%yvvFRS8F=?zT(=rN_l5W_TJ8j`*4}7a} zUrFOa%mijX^Rp=d3_fKUr?~SlFte(ML`=B}wmXz%)ljJCka@oKTXBTWL66zW7oSQ>YqUV%09?*yQ)dD;gy(l>p~-hOx!j-oZ9fp`R!yM zJ@pfm+L!gJYkaRPaooG0ZPDY@R}K5Hw;M>QTzhtuS#;BCPCZ_(7 zKATn0=U6X1I)zO9_gMDzCht=k9_f25VZK1dC+dZz*B4r?Y+zH8Ni9xScdT`ER*8j- zAcK@C&o724_bL1B#+=pj{k0wyHoGe_BOB{HZ*hG$rL1r&^DW)= zUyEIwU7`}u1CmyJlNJg(&tH{!JCIzkFZ+8#;tJAIhmv}*&5qHOTrP_mO)1^ny0U6# zJoA-*dXI46G`ezfg;nqYfFk^*1)nSfXvaC#Lbxw zZ@eN##5!pTl;Ip4O zXv7DIcl}hGY(+2P==>*}vF!)& zz2zeq*%KL?mM0FYa$=Oe`k?EcC=i{i8k%KePcz`>a=g{YLDDAPKBylgzSi zYgc7}G&)l1WKl-f|MXYL4z=uVs5vS#gG$zGc$mQ!Z_7Fdl8-y|8)b^WP0K~&Uxlu+FGlZ4Qm2-8t|!wEi7v!Wjw+`3>t{D01KIu1(bXrG6nEh(yp8*^)3IAle_)zbjTS?%gN zC=0!XdvRzAg^X)h!IxdE1#b^WN{pj}?z`hCpn{brU<9tqTEu9+TsU9Ceb9yu)O36Q zYG8Vu^v#O>L>|y`eDh_W+dHZ~Z=5hHwy*^zQM>IQP%n6fYw>qePij#^teqCs`^WEN z$W%>lgtJ5Lp$5oNdjmBy&YhCw)0>vO``RhoTQ{(E?uUw7JB*Z->0Z#(ss5jK01_r~ zrNog`lzx>QozqU?mtOam)Tm6>t0I!a*L)T_*`k(wwiCR1yEmp-W{Ve;G-66u^mx|U zD|sa{6o+7bImIHCH$8E&cx@nPV+9qQ*qqk8AUT_D)vk5BW{r)q9~rD%DO`|2nv6W8 z8FSNJ72kVn2T>_1r%%P3>OWQr_FaSU8+ykgOS0Rbi&jHG;Z=nSWdEcr?j{mOF`z9A ztpSAsan2LX|Z|D)^iRj=)8pzNu4gsLd|f8<** zxTidHFA-)G1~;8^g>Ec+WOzRn`W~?xw5NVouOoP}Lu7z18!(-VE?o&v zIis=0VvtLjE}XX}SgnHS%BIYAVXsUSp)REGDAMyozGuy;-Fz~ogDebRl-EMjKhV=X zu-d^cS^)P+z@}fp!5zEcUYMh;rGG(QQyf=Y?Ph}G)_M4wW#nlvAyP_GL1KTXXTJy> zU%Ho>&quW*=q|)rQ&-toc!J3U zOGXJ9CZTv7G%~-qC zaec1_wB={%Ry9NEFeX?f#t%jK@{Go$jCRbsa$10pSe{U;_$eE>jy#WFi9hZFW1;`@ zKw+opdGlItP2!yULd-MJJ$*UhD5b~P*dsh077lh0sebB5c=>tslJTJGt-ag}wJNU- z78L#-bJG@kyXdxyF{iSH0=-;+we{JN`sLz^EM7R;dt7g=DogkX%cqnn`c-E=-7gBg z+rQUhA5Au80tG85=aC1$^w(YJux#cp@zUcYH;HJc(Qn01zq@goB|K%ixc1dU|I3-e z0o9wkU}$bwqMI=OYAj?Xf8WLfM!RnB4naL?Aw83M;y1Tw8>sYGrnDoVSml+<)|PcM z)ZF;ScG|yTyX1Xt%`|H^_%S%A=RA2W`n@$4|tMwI2fV1 zRv%@lWgW$_)2bOQ88-FnMar`fXOrxoDUzPQGpg3dIBbzy<`r3LiboZw@lz9Ig1GKW zGI#Hrl9=Z!kSf|0vdhH1DoNHIY}f7FuF}6iurP^mlT25#d$IR#aQ9d;HgAr|-ii;g z21<+6K8f~}TH|XDJmcQ3zL<22u@gL4@QK^_7z-1{AypsjZnIN!FuVn>r~5ahaw84` z-;28CjC9*(+8k_n&2j%V0u+lPt%*!OaG+l%oRHw51K81kfK6?{^xrMxr%heVOEpXj z2SayL3iL!UMA!KPwwNarrlk6$5K1)YqwU(RHgS+hq;tNI?Tea)&Fg3-=d*-fVMlS9 z+_OQ8{u<3W87|0MFrjPYlt~1x;e1ioGH^-Od5DJ41RHN+3{x>yYK4yG;HdEmZ&ks{ ziTeuoO1@Dim(c0T{E5LvRk4+@bY<~H7llqD(anat)x@i*2Pm8`_rg7Leyk6}>N;oH zY99UXs8%P1i8>R|ac0|QT6&4OdpE?*2!M2nc&|^!M_#NzFHi&2rPDIZ@ud*mgD(k`fJCXr zG+bGw{Km5SIC5E)L;nn7(;02wmtY=1Z16L#sOCBe1N+XM$844yUxJ<8)>!RvU=|qR z?usU3|L~6x3%!}veN;Q_a^=maV#ay92VoS8o1I)elsDryn5LhR{A+;P(NkVvK39`m zLwEJ2)Ovi0x`?gsRaoJwB)Q34-RCS#WvWu}8179IEH9wa{(&H#MDb4AD3j2l#^t=v zl?6(McltQaccNV@4Lb@e?lSIo#Z_sWJFfOO0;8V8^lfTI(;+X9Wxx6X=jE0JC7N^; zYqG|AmBbZJ=qt5OZ*dh`>{ks1rt~S_Z$~YD~+V9@wz05_Y1pJxb32gWW(s+q+er%C>YU7;itD2fTMk>2|fbyv- zUIgPOY%qzZ>7fDY7(!d59)<$i)_%!9xnrT$<>^FA)nv~MUM;imN`fFxbVwRJTEQUL z1cGjHdCYgTMWI<4vF}*$_~)lS}gv1*5ZEl-uHc9``Xu4@6?Paoc`cgT?LK(hQi93OuvJtu22ih=U#JP zkoI5iTI3kL&>;=}@M~$+RlvvLn3OJ9WV#3s{6vbN-K8gy!WAz^@JC=~YnAC(j3^Ea z`d7)PTRk+oH#S9N=pC=9{9T}L*4M_DBKYoHn{)9oBfna6mfquB)dj4PKF2U0U0X< zuBKEP6CLdB@9(iIil&P6YKoFiWy}I#jn?Q#~9^B%1Qa!~H#M$0PX6x@qes)V_l$4Q~U> zP(4s3Q3;{kfbBx1V#ex4-h+4IyUSez^t+a8UqRwg4&$SNBZCxlt>fhb?K`ga!EVxJ zw^L|-Y|U{bufUgL8Vr9pXm_}KV%qOtqytY3Fk2Y5N3yOWns8heihLt~e zuAhM19dwK4Zeds5xN#939qQ8CQpo^LoH{e9zXi(Kz1++ldle$Fz1!bVPCB7`<@X0f3^70x{IXW-JP??)6|RHTJDVE3>w26we#NrnJyw=fLCm9LA88}azHF|TC>)DS`(j31DG#lJZmVVnpsCaPQ`n6j$ZlyD}mEjL~H>#v_4 z+gj+p__r@hozW~NJf(RN#!eW?b!l_ts}tATpryCN(B&5o+emMZ-^A|ba~b$G(yo_@ zC9IL(dA&#PdMw{!p$XBx^PIpa__k|OSVT-Vd3ax1h~$P9ULJlJu2C1D{!19R-~}8) z?Z1A4*9WZ)ICoKPrB9*NCvJEC4Ety|5?s>wLyf*s+yPiEZXOx0Z(OiaKhWg5#y-|i zYM@qBYf_dg^Ox z#WmPup8sUy(kk|0QuAwmkyEm~#YiYHq+NuuT?cFz=>0_L+m@3P$)D__UL> z4~wOb$3=bP?h}487{GC32J1|@51JV$@Q{<}^NLNnO1xZqJ7Z8xdHB=zxwVLu@E54S zh%L2LM(QE%jxQ;~&NzXP9O%T*ax)mykI@A5ArU+5#dnK#a_?Sd5@*XHo1udC$mr6P z0Jlfcj$gG$(>(YSy<+eDx~{NEgK~lDl_bzMTc|s3LCT*)q6K{+(gFdT0l!QeFwNBT z0KW+9W`?}Z2DIQ7@c;~(Go{@NJI=4OlqTe)Bi>O>2Vw0EoTZuBsooddN)KRtls-3O zpFd}5`9uChz>>qLz+MiEH%Q0hIgZ9rtv{43z`EgM9!of%)Ft#-{|n9$>RW=saJT)3 z1Eyi#l#z*l^@RjvPV#+6Ov-8QjZIZmz^Jhwrj5xvDYY~B+2K8&O{dtz0>|rf4NG;h zqfo*dmhDlWSC&zc(=|6P&10Kv`0$;{C2yJNw*@O!cs0>?8yb7gnSbcd-i(x@LGDe$ zxFuS8&#Nn|xdQ?Lw^6?dZ)EGr61OJ|3<5xEL(&Y9bzVOT2K})2shE>g60dJ~Nqe4P zIe9?JV4TrV)?r^yH+aB)>LO8^tL^JTEq&)`)EyMYJ*_}T!jB{=C{ zwiDJK0tCo+d4YTcDD)vZabg0`)|8=;^348>Nxw6ANE?qV@? zoojsZr{XD#VrDr4KRC0avdXgABTDJcITwNN{?c8Is-gB}T$2A}wIX!)d4>2?cYG#O zr+poI*|pZj@&;VZ_1oq{w0yCf*Fi(ijjTCRH8%w%Z;1V*cyb+qSnk>@4k8cBOKy~w ztG3oR8lpKbQXhJ4spb9HK1N2v_+N@bo%{jIWad)YZeZ$f3zpP5eBtf4mW{fS(V+Mp z6aAP{E*9|BaT<{M7a~kB@{#%!r$q1^GyN3$$*@0L3gI(ol96|-U#|wF-7j&QnW+k?_a_OJx#`Hk7O4ZopD5uj zZ3_m33n;4)RmW<$G!PTwhu1x<2ae<%s&IBDnM;oG*sZ6Yi%7>%{onodTQ%WZ>9F9! zYP?RkE?qtMWGwgKpl`gfa+n6O1wbASfN^?|v_IZ!CVPISg!rqot8nBDEixWytG9B< zrP)a{nd_1&E0k^pyA`&vOhhH6+aAyzhZtyqas$dP- zMJi@Mnfy<}j5Z6_5(*Urr&qYzwRDt!jFH&U!}gXZLYMce%l;M6#_&{wAZw` zhlY2I4>yWtLU!Ok*<7eb^>ZK`WsqdqW zhaY_399+MWU+`dV)6TC%8&(hhv6-#o4tO-!R@SM0K>3!ryAZmD*o4~+dr}}x`Mc2U(3i^{(r z-HJK|CA)W1&)U>(@`xFA_D~IZd{4?Goan+i;uW9ZZ&W{lyz}%b3p8P7GduxrJ~Vum zj(^u`|HNNkM<>Qqn#c@(ee*s{JvS^`evACKQdHs$T>dE&hWFq?HGIHnYBGX`3W>nO z&+XcmvQt+Q;DO=~>Gu#`4l1NOL9(1Kg!ZAxe`W*dXjgPh4g10z=*L0KqN-qk1lV;s z3X&+*`MZl_S4BT`pWQFnOGxF7GoooK&IBkYcit&r`63ki^uB(47+nCW2cL43yd;iUIx4|u(w4@2+q1w=P z#r@Q<{+tfv2G?uk%C$n2TSwjY)hcvsSC=#}Yk5cI=sVN7P;$yXYSCIR`ZWCF zL&1de!QR`{)Gx1}M|I>W{tc13*88U>YRA*QZ6V4+nf-z07v{zkrmOMmfb<^^ zz8t*)fc>P1k-Tc$UuR6Na8y9L_k?+`F+BFhOvHmnc(^DaOf{uGFNLmpsTpnO=N>t7 zm@2Q3bg`r<961pR;LhVZLuQ_}9FzTH&Qt%-WFq^g3xYv4Z zRkPZ%n#TrE7&2TcEWd-sGa73{{5Y9;*2U`Zoj0rsff9l^$owO=yfkg*?!?F!nq!fo zJ!4yAx5d_?V1bFXE{mdWPHpf2r4XVsUx}t$K=1)NY$;I#@qTSL?pt=5tS0yFc-4}7 z#uts9kg@bbbeMt>uK~OC`<}$P7F*~H`kD0ayj#mP zg_fIT{h~qt*r?yyglLvf444f-FiA@xrCndNHodoYWFPZGZfC4JJKTOuUqrA=&PwU& zt}a-)l?_d8*e!{#Tv_sRNrSt0t#YAvnar`*tgnT1#}zeoEVpF~?c~Jh8Mf-99V&4^ zh#V`s4R}X`Q*dBQ)azvNjwSauIvJ!IA2Y50WM)VR}`Ly6)q%>uGcT`AO!a=7F}0uoR{81R|3A?+a8&w=A1@tVU)|G zHq96Dyr5VAc>P0ZENXmIK@7OTHXewq5HP`Jxi-}6CBo;SF;zZLH|<8gR>k-~^b6?H zhAb#CBz7ct2=!w;D!kN^nUe&BjYj092h>*ox{q{yZ)~HiqNtQE`Ed#7THgjbC%+dg zCH;cCyiP9|iqxWTwf9>`y5FV!`mvU5!}|CK-D&l<(@}ydl%x{dvp(3LMtpKcBoC1%IO_%5jKGamdoi&^qj^im!h)V zaaLG_%UtbR{2g@9QTbPes7aR={Jv$bWO4?r;mmxA;-i?nBfN}2 z!q4qv&toW=aKxowBLGWahq!SQ$~af6q0 zeCm}bKG-AeS8_%L`0)w6u&p)xlsu~P>OpvbEG`Z;c3;nOGM<#|k)d$Ix`9ScTs;CB zAy~~RTF&k#Kwdoq8R;iUyr7%UN0zA3|D`n=4nRwNhQ5%BvD2xG%rX4TI8W3j#|1O< za>#H-bdDC&`{MIiV^hv4n>{d=unjG>uizzoRWr6I9QORzqt6)9^jz6%%dOj~uLBh9L`>PvEz{NA_L zZ+6>d83wG41LDu|dphdV-l$|^lJQ?R!@t9!8J(de;Ia^xl;Jd0INjRt#@g5TIqAhU zW?hYwNH;{WnccM6tpSX50bZwyGOLF98U6ecxcDJlY&hkiMwsRhaC5a16oo^VN{A~q zq!n$a!G|^H!dbY1HhnXoAn|AQ}{zMrcUc{jrBDh zXHZ5*aZ4Zo$4a-&ErjNlf6v`62(k1VIzD5ue0#I3Xml%KI#$C4z2=?(UsQtEmS#$0 z9j=S}D@<{``YqEV{S-n35Pq9xG#pg28vdB-AT0GA2pOZh(o!HxeBhYy*~|;lBAgtH zT$prge`F`0@QQ7-zb18vsEkoAOu;5I)x20tuU!933c$;$Kfn@rY3<_DqN&MhD5n&0gC;r+QMod}poG zieqkcj&}tz3)EuBNG&a9id|T9$pV%Mvh{HMjn4=ARL6x2==0ke)rY+?yiw7$={#ar zIZgFHH!&d=(_tqm!Ob@Ni?-=GzC{abSZWcmpjh1&8zwdulgu=@QDJKLVZRlBQ)BC? zYsBaq=@^p`184S6w)KlESW6YBX=W{rr28BJicN0p>Xlxap_d+PRt6)OtDSDdjKu>3 zX!r;TEd43EYPqg@xR|Xirp+i|0)^57^U*>?xqO85(USDB&HOoMhCkOr8p+{zRjzR? zw{*rhEifvfLBu_s){Cm#ceWacU0sg|JoFq=h9JRR%L?J+tI_x(OMUGcrrREl_ zfP(75BMzMjl9`LS$?Ky;D5~Te2T0#Ze1gXJdx5m5??=Bz>I#|Z)#VN(Ts-S^us`S( z;^gED|4D!MQ)q7T;nVSTy&;?)_W8aPQ%NrML!irUloIs^=TkkZpZ6P=M&NEWM7SUN zGkifTDI6u%%U0tToWT2hhw(?qc#FW*m`8f{67v^@p(M&hmrn3{QXaxhUINiTApt z^@=0dstCYs-s#hBr)1q2_zs6H2?Lg;@YPJjs?t%u;wXyhU;Uh(!{BSHDT(?Ep=TiU zhEp1A^G9nMQG_FklpCTxZlLF`X5}6=esD5<(1!kKk^&~F(u=0>qHBn94cxpV3-+5^ z%&k(SxD|1Q$+bJ%t@y%Sdd}vs1^HaJzR&j>r<#!~-9Xa4L9Lz0TBoke25%A`lP>sA zg{tGCa)3F%!xaEYkNSb<)#yPB^+r2qyG_lQD8_9^6V_FKAE|!_xU9Z7FPg z^ZDt}^XC1H=`H0VG`HDBvpcpp$h%$y8q@EZe!9As-Kc&RdDfHG>!&72 zM0KIy3{h)2-PucnIhSjC(*1rzJ7ufTGwq?L7s**uD$tgSC=;JU*PEb!P11|c!57YP z1xqZMge4Pi7JS?cupN(YxqD`R6z`1@VQ5E`kQOr8giJ~V(Ks7ynh)l(os8hCY7k-m z8vMZDe@oZ)IFo&6B_5-Wr-KiCjbOLUiHa9M7os0T#F@qHnZ?Na6lt#RMXoo2)1AQ) zyAWqx93^Xan6A5h+zjz}jQi-g*onOqn|R=gCld5K@fj%aR{N1vCFfkQ;lnuYl zor|$IJ^a77g7bwh)=m6=K^87SjRlw|{)4+ExNz(moHjB-@4AwDii(FGBOQLVe0(}c z5x}YcWW^uw=BtS(O|EjZ^$30fT61Yc!hUYj{8|AhpgWf@?S~tUZR(MCB|%ip|46@( zFxeax@F^acmNsXSvN_z8c{>@iIPWG11}zSkw}G@-o|mqx*PF#&xWAZ~|C+fU2ExWf^{187lI@A=SGs1++tXrIV(H+?Q= ziat-R;q(!0n=Q%6CmFR7Xkz!HD8YNH42JPOd-Z;B#zsZu8^1Re>hByjb;K&JX}_w& z`Ic|)KfjrfurL#ztsZ>*)BT`_xPPk4;Yr$Y z``ZY8A~R_09JccvsY;#2@p?o$30vW6qDzA$4*l|`Aj!Yb=3f&{jt8sq5SW0TwjikK z*+X1f)jO28+7**bS9&?|b*P0?M!@WB1sjBvJ0w<+J z?DunQ?XwyK#!2$lFdk}YykZg zOJP3inzfPSWz^r%Xs2`o$<<(nzo+LY;o(|!@-NPFpx)YjYVLqBT~j7nr`4{Si|%He z4%R~s&F-ct{782kb*6)2^CKz;c2;vGw_-J~22j)^7!j%#QJL}jLSG)%DQ(~4R&<8E z7zQkE%~59T*&ecjuMcr|)6(1&&$OL5w+i#>iCs2x_cz*f^hv?9l3NMs)NGYNR|Syp z7H+Q%kA8QH?mGM50g1&}Szq6OQd!@{*9xB%6k+lQ|L@LC!)oCm9pshl&0+7&G{60u z!j#5|Y~qnZEz~;U$=jgj%faIyhwnEBvS;-iVt*%PZ)&eU-16cErAp+;tk4Z8;4?p`C#fshA&V76+6&Vvg8R+?! zKI78blp=lHoub>Pk}(;qqifl(j_)MJIj|?E1VleRXvPg&vMWw^0HMNaja}KDc5hC8 z!yf1{TIwD1_iuZ=g=;44EY)i|QpwtkEpKkdkS$}XDoV#QmN`%Rk8kE59_oVG>upU?$>W2+Z~fyP~DR!@2}bYpKL=gzvt4zVbeMUpeFMJo1P?zEp~ z0}t&~hR-D9`rAfnvb&yvTb1W2Bn%%`2~lv3BKtyFYf`yNt}&ZZG_>={ryu{5jI&nPa1}xm&&?-9ymu zkw3grVcT|O*r_}x+S#dfU2Wn2si%P0h$Ct8s z9cO5U6F!+?aQpWT^nxoceBI;H58=0M6NPpt0&l$7ecaN+UpJkJ8&(#f^i@ZT#>D~2 zr7L68sG6%7fAyJ+CGR)L_?3YbF@$uV7j^vFlA4G)HRsLJsGq}tR?C=k48Yr`Rph-D z@pM@&5dD-x{dz<~MG;a6v!Lv~9bXmw{Gob~8K@7btNn)Ed4Pn5e@}yH7$_J6Sb7c9 zmrfg>0hdp7J;3i_13wz1+@XUPt^JdRR+s>BFiBqG(F3ha7e_8KIkOkoddj%NW$6Kn z_$2jU^R)bh%K+=0%RU93WTFkSqTnBnDet}6MPNy5yQwU4FLZMPWG2#r7=OrZ*=qS| z>4*C}(X|1e&aEqn$R%vKl(^*u$_nC<@Vqo-OU%b{`$m6PzR;Zk4n!{1-WfUNiqap- z@xqQ^vUa;+r*o6fo~unEoXoELgBd$s@eC1rE~;2lsCF*2EQ?IoXE)56Y473Pn1*@T zJw)9acPM57(s zqj)*KxW?&kJO*rvI=X6o-cYR7oaSKI&+EwBpmnNSIk-e8?pU~fd39sTiq9MPILe9v zcfSj1*~c9xuC%%wOc^V#C>(10fw7D z?a3MEhD+s`nzGhMc{>;x8ub)&j~I2@SRcfH*V@~(XSu8pCZb(+fs|HFsTskpJnArW zF^D|*PtZXc{Y)e;O#Gff?0)j33QxV7BTZwCIui_AM6@tgKTixu$l``_Dz@vo zs^Bu`01~fD>nihZMvnFkmKy_s3a@}6b)|^*r5J$P3UGNV1ER1_pBHjqYkAj|L}WhV z{s0;{Iuy$_a3poFJePrq2gIev>D+BC(S9g>Ydp{i@K4n?W38k*M9S9 zZ+B3~^>z*t2{?beeM(8HT?nEQ=bk{vMM1mKv7a7{)bdB7fu0MMiZs3T!E?R1I9C1?)5H=W}%LS?0VfJOyb|c*d4Fg|b8QbfY;*mAGp~JlNE^$z8oK>xh zfMS$(W|*9hnbqVWlJ@SkQ1fa9f2X36Sc{X{u1xhXM32VXuKZ)ruHoKTHl~^! znZ6pT&)A=Kqme3iNwesi2zUIE{2*=_goL%Q9rU28M7t=>^-oY^8&WRn@(j0HJ>~mI~>uxX#CzuS_Yu5aPPr!cQf1p!| zr`>DH-)bsBhz|)@wfq3jgei^OMaO^}oF8!*66KZXwD>Lj`XCS(3oyUbj*BYk5z2J5 zniwC-1TrWY>c+82`I+f&O59Y9^^?JXwMyzX%4&4tE_&(PULTbd_!GB8)+DQm*Q+~Q z$FPdR4JyJ&)i|!{FC|k4Ohre58kR`P35KY1HSGwyXlN4 zZ|{T%54Cc=h3=>WU!fc?YDhC%Asq>*QR~*m; z(a5m%1fJWbZ1$jB65Oh>bYC_4Bc-=(#SM5#JRzFK@Up`OoyB3Y$%^oc--DvwOiJ}K zR%~?GEnnU4n@!zI>bm~6fr%p$Q!y#s6lK%9s{&Wqdmga2=qkROjFuoS zn|t@t?xAV?1{6c&%*3cx2S^@K|27~j`Lif(KG2f|2e8efMV(>v(z_ij`xyC}7;@~Y zd0#N1DS+~J<|x!q8v}7H-qE#~IdXDjeMSP^UnIuDmaywnV|PJ!18Y_T5bJq&$aU7y z@nONOVJ^#+gFSF>>$AgaIjfvf@mLM(1e4R}6X*aU#?SZZ9d)BA%Z_9$Yj3#d+cZg7qvO%EoFC|jA{)9M@_#t5+|B65^!F>zcOC%f(vY}3M{g{4Z ziq9QGQ240*U_*SvU_+>WI|#<)Qt5M{8b%6If8_dq5sbvEE)|gLrKk>RPQcVZ!B?5i zsN%X5%Vxnj5@!1Asr}lSI*Dt}RG+J@c(Ogj4P-iJe-n}Z^6$DC_qjl3{9lueu0|N{ z3-u;&m%d^iR9x?zqp2Qh4pfQYiX7_8BGtN!q+FgO6P+%j=5y`EN*Eo9u1VP3yovPI z#Rv$}7f8ljH`b(K+o-G({&RCRX5Jw!$)^K>Mh}* zHVa`h3bw@+0Jzx&0TC{g@0?vMd|?tqaDF3cqKFHB%N3X?y;5WDxPOBEOD&u9vR&EX z!{p*~96I<2V;BnM) zrq%Z=`=96Q-a9l=!w{tB--((;?0XrN*13wXsqu4&W_}Y!ITPZoap!48B;h2gR8xqB zqo?>@C-U@SxG>Mm#UXvET$2le1fbzx%!Mz)#b+=X&fKV9azu9j|4+wupqU_EWi}46 dy^K-rACGPgzB0aJ4fr|v!|4;%-$(!U{{SkM0I&c6 From d7befb5dab855ed53872933ddd5cb28ca03cc195 Mon Sep 17 00:00:00 2001 From: ImranHabib <47118050+joinimran@users.noreply.github.com> Date: Wed, 14 Aug 2019 10:13:14 +0500 Subject: [PATCH 08/19] Update windows-analytics-FAQ-troubleshooting.md --- .../update/windows-analytics-FAQ-troubleshooting.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/windows/deployment/update/windows-analytics-FAQ-troubleshooting.md b/windows/deployment/update/windows-analytics-FAQ-troubleshooting.md index 423c82f71c..9ec14560e7 100644 --- a/windows/deployment/update/windows-analytics-FAQ-troubleshooting.md +++ b/windows/deployment/update/windows-analytics-FAQ-troubleshooting.md @@ -53,12 +53,12 @@ If you've followed the steps in the [Enrolling devices in Windows Analytics](win ### Devices not appearing in Upgrade Readiness -In Log Analytics, go to **Settings > Connected sources > Windows telemetry** and verify that you are subscribed to the Windows Analytics solutions you intend to use. +In Log Analytics, go to **Solutions** and verify that you are subscribed to the Windows Analytics solutions you intend to use. Even though devices can take 2-3 days after enrollment to show up due to latency in the system, you can now verify the status of your devices within a few hours of running the deployment script as described in [You can now check on the status of your computers within hours of running the deployment script](https://techcommunity.microsoft.com/t5/Windows-Analytics-Blog/You-can-now-check-on-the-status-of-your-computers-within-hours/ba-p/187213) on the Tech Community Blog. >[!NOTE] -> If you generate the status report and get an error message saying "Sorry! We’re not recognizing your Commercial Id," go to **Settings > Connected sources > Windows telemetry** remove the Upgrade Readiness solution, and then re-add it. +> If you generate the status report and get an error message saying "Sorry! We’re not recognizing your Commercial Id, See[Enrolling devices in Windows Analytics.](https://docs.microsoft.com/windows/deployment/update/windows-analytics-get-started) If devices are not showing up as expected, find a representative device and follow these steps to run the latest pilot version of the Upgrade Readiness deployment script on it to troubleshoot issues: @@ -230,9 +230,7 @@ We have identified an incompatibility between AbnormalShutdownCount and the Limi If you want to stop using Upgrade Readiness and stop sending diagnostic data to Microsoft, follow these steps: -1. Unsubscribe from the Upgrade Readiness solution in Azure Portal. In Azure Portal, go to **Settings** > **Connected Sources** > **Windows Telemetry** and choose the **Unsubscribe** option. - - ![Upgrade Readiness unsubscribe](images/upgrade-analytics-unsubscribe.png) +1. Delete the Upgrade Readiness Solution in Log Analytics Workspace. In Log Analytics Workspace, go to **Solutions > Compatibility Assessment > Delete** 2. Disable the Commercial Data Opt-in Key on computers running Windows 7 SP1 or 8.1. On computers running Windows 10, set the diagnostic data level to **Security**: From 3c6bd84c01818ca5c92fe2fd32978dd7eb3bc46e Mon Sep 17 00:00:00 2001 From: ImranHabib <47118050+joinimran@users.noreply.github.com> Date: Wed, 14 Aug 2019 10:20:40 +0500 Subject: [PATCH 09/19] Revert "Update windows-analytics-FAQ-troubleshooting.md" This reverts commit d7befb5dab855ed53872933ddd5cb28ca03cc195. --- .../update/windows-analytics-FAQ-troubleshooting.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/windows/deployment/update/windows-analytics-FAQ-troubleshooting.md b/windows/deployment/update/windows-analytics-FAQ-troubleshooting.md index 9ec14560e7..423c82f71c 100644 --- a/windows/deployment/update/windows-analytics-FAQ-troubleshooting.md +++ b/windows/deployment/update/windows-analytics-FAQ-troubleshooting.md @@ -53,12 +53,12 @@ If you've followed the steps in the [Enrolling devices in Windows Analytics](win ### Devices not appearing in Upgrade Readiness -In Log Analytics, go to **Solutions** and verify that you are subscribed to the Windows Analytics solutions you intend to use. +In Log Analytics, go to **Settings > Connected sources > Windows telemetry** and verify that you are subscribed to the Windows Analytics solutions you intend to use. Even though devices can take 2-3 days after enrollment to show up due to latency in the system, you can now verify the status of your devices within a few hours of running the deployment script as described in [You can now check on the status of your computers within hours of running the deployment script](https://techcommunity.microsoft.com/t5/Windows-Analytics-Blog/You-can-now-check-on-the-status-of-your-computers-within-hours/ba-p/187213) on the Tech Community Blog. >[!NOTE] -> If you generate the status report and get an error message saying "Sorry! We’re not recognizing your Commercial Id, See[Enrolling devices in Windows Analytics.](https://docs.microsoft.com/windows/deployment/update/windows-analytics-get-started) +> If you generate the status report and get an error message saying "Sorry! We’re not recognizing your Commercial Id," go to **Settings > Connected sources > Windows telemetry** remove the Upgrade Readiness solution, and then re-add it. If devices are not showing up as expected, find a representative device and follow these steps to run the latest pilot version of the Upgrade Readiness deployment script on it to troubleshoot issues: @@ -230,7 +230,9 @@ We have identified an incompatibility between AbnormalShutdownCount and the Limi If you want to stop using Upgrade Readiness and stop sending diagnostic data to Microsoft, follow these steps: -1. Delete the Upgrade Readiness Solution in Log Analytics Workspace. In Log Analytics Workspace, go to **Solutions > Compatibility Assessment > Delete** +1. Unsubscribe from the Upgrade Readiness solution in Azure Portal. In Azure Portal, go to **Settings** > **Connected Sources** > **Windows Telemetry** and choose the **Unsubscribe** option. + + ![Upgrade Readiness unsubscribe](images/upgrade-analytics-unsubscribe.png) 2. Disable the Commercial Data Opt-in Key on computers running Windows 7 SP1 or 8.1. On computers running Windows 10, set the diagnostic data level to **Security**: From 560ca12b3a7a96a76995fac6a531a0bc914cc728 Mon Sep 17 00:00:00 2001 From: Andrew Baker Date: Wed, 14 Aug 2019 16:29:15 +0100 Subject: [PATCH 10/19] Fixed typo on command line 93 --- devices/surface-hub/surface-hub-2s-account.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devices/surface-hub/surface-hub-2s-account.md b/devices/surface-hub/surface-hub-2s-account.md index 025b2b8320..b3e9822a05 100644 --- a/devices/surface-hub/surface-hub-2s-account.md +++ b/devices/surface-hub/surface-hub-2s-account.md @@ -90,5 +90,5 @@ Import-Module LyncOnlineConnector $SfBSession = New-CsOnlineSession -Credential (Get-Credential) Import-PSSession $SfBSession -AllowClobber Enable the Skype for Business meeting room -Enable-CsMeetingRoom -Identity account@YourDomain.com -RegistrarPoo(Get-CsTenant).Registrarpool -SipAddressType EmailAddress +Enable-CsMeetingRoom -Identity account@YourDomain.com -RegistrarPool(Get-CsTenant).Registrarpool -SipAddressType EmailAddress ``` From ebc54f31c6e63de503fc222bc2e538ad06544983 Mon Sep 17 00:00:00 2001 From: Joe Bartlett Date: Wed, 14 Aug 2019 16:50:15 +0100 Subject: [PATCH 11/19] Fix Intune "Cloud-delivered protection" setting Changed guidance on Intune's "Cloud-delivered protection" toggle to "Not configured" as per the Intune documentation. --- .../enable-cloud-protection-windows-defender-antivirus.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/security/threat-protection/windows-defender-antivirus/enable-cloud-protection-windows-defender-antivirus.md b/windows/security/threat-protection/windows-defender-antivirus/enable-cloud-protection-windows-defender-antivirus.md index 69fc95abeb..c9aca52f0d 100644 --- a/windows/security/threat-protection/windows-defender-antivirus/enable-cloud-protection-windows-defender-antivirus.md +++ b/windows/security/threat-protection/windows-defender-antivirus/enable-cloud-protection-windows-defender-antivirus.md @@ -42,7 +42,7 @@ There are specific network-connectivity requirements to ensure your endpoints ca 2. Select **All services > Intune**. 3. In the **Intune** pane, select **Device configuration > Profiles**, and then select the **Device restrictions** profile type you want to configure. If you haven't yet created a **Device restrictions** profile type, or if you want to create a new one, see [Configure device restriction settings in Microsoft Intune](https://docs.microsoft.com/intune/device-restrictions-configure). 4. Select **Properties**, select **Settings: Configure**, and then select **Windows Defender Antivirus**. -5. On the **Cloud-delivered protection** switch, select **Enable**. +5. On the **Cloud-delivered protection** switch, select **Not configured**. 6. In the **Prompt users before sample submission** dropdown, select **Send all data without prompting**. 7. In the **Submit samples consent** dropdown, select one of the following: From 1f8ecd37e0b10fe326446db3c5e5a0e958808fd4 Mon Sep 17 00:00:00 2001 From: SeanKahle Date: Fri, 16 Aug 2019 02:33:19 -0400 Subject: [PATCH 12/19] Small typo Extra s on the word "devices" in the second paragraph under the Quality updates header. --- windows/deployment/update/waas-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/deployment/update/waas-overview.md b/windows/deployment/update/waas-overview.md index 4396b9d4b7..49efd6e3b2 100644 --- a/windows/deployment/update/waas-overview.md +++ b/windows/deployment/update/waas-overview.md @@ -90,7 +90,7 @@ With Windows 10, Microsoft will package new features into feature updates that c Monthly updates in previous Windows versions were often overwhelming because of the sheer number of updates available each month. Many organizations selectively chose which updates they wanted to install and which they didn’t, and this created countless scenarios in which organizations deployed essential security updates but picked only a subset of non-security fixes. -In Windows 10, rather than receiving several updates each month and trying to figure out which the organization needs, which ultimately causes platform fragmentation, administrators will see one cumulative monthly update that supersedes the previous month’s update, containing both security and non-security fixes. This approach makes patching simpler and ensures that customers’ devices are more closely aligned with the testing done at Microsoft, reducing unexpected issues resulting from patching. The left side of Figure 1 provides an example of Windows 7 devices in an enterprise and what their current patch level might look like. On the right is what Microsoft’s test environment devicess contain. This drastic difference is the basis for many compatibility issues and system anomalies related to Windows updates. +In Windows 10, rather than receiving several updates each month and trying to figure out which the organization needs, which ultimately causes platform fragmentation, administrators will see one cumulative monthly update that supersedes the previous month’s update, containing both security and non-security fixes. This approach makes patching simpler and ensures that customers’ devices are more closely aligned with the testing done at Microsoft, reducing unexpected issues resulting from patching. The left side of Figure 1 provides an example of Windows 7 devices in an enterprise and what their current patch level might look like. On the right is what Microsoft’s test environment devices contain. This drastic difference is the basis for many compatibility issues and system anomalies related to Windows updates. **Figure 1** From ed253077a6c11a2b8e28b4a553842a9d83ef0d0b Mon Sep 17 00:00:00 2001 From: Zachariusz Karwacki Date: Fri, 16 Aug 2019 14:43:25 -0700 Subject: [PATCH 13/19] Fix typo on Microsoft Defender ATP for Mac page --- .../windows-defender-antivirus/microsoft-defender-atp-mac.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/security/threat-protection/windows-defender-antivirus/microsoft-defender-atp-mac.md b/windows/security/threat-protection/windows-defender-antivirus/microsoft-defender-atp-mac.md index b9d60523ba..8fe52e371e 100644 --- a/windows/security/threat-protection/windows-defender-antivirus/microsoft-defender-atp-mac.md +++ b/windows/security/threat-protection/windows-defender-antivirus/microsoft-defender-atp-mac.md @@ -55,7 +55,7 @@ The following table lists the services and their associated URLs that your netwo | ---------------------------------------- | ----------------------- | | Common URLs for all locations | x.cp.wd.microsoft.com
cdn.x.cp.wd.microsoft.com
eu-cdn.x.cp.wd.microsoft.com
wu-cdn.x.cp.wd.microsoft.com
*.blob.core.windows.net
officecdn-microsoft-com.akamaized.net | | European Union | europe.x.cp.wd.microsoft.com | -| United Kingdon | unitedkingdom.x.cp.wd.microsoft.com | +| United Kingdom | unitedkingdom.x.cp.wd.microsoft.com | | United States | unitedstates.x.cp.wd.microsoft.com | Microsoft Defender ATP can discover a proxy server by using the following discovery methods: From 416f7751448a04bf1c16689fa326b6bd99ab6ee7 Mon Sep 17 00:00:00 2001 From: Baard Hermansen Date: Sat, 17 Aug 2019 20:11:06 +0200 Subject: [PATCH 14/19] Update applocker-csp.md Corrected Note field markup. Removed a duplicate Note section. --- windows/client-management/mdm/applocker-csp.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/windows/client-management/mdm/applocker-csp.md b/windows/client-management/mdm/applocker-csp.md index 356fa67a5f..a9b1b89487 100644 --- a/windows/client-management/mdm/applocker-csp.md +++ b/windows/client-management/mdm/applocker-csp.md @@ -17,14 +17,6 @@ ms.date: 07/25/2019 The AppLocker configuration service provider is used to specify which applications are allowed or disallowed. There is no user interface shown for apps that are blocked. -> **Note** -> When you create a list of allowed apps, all [inbox apps](#inboxappsandcomponents) are also blocked, and you must include them in your list of allowed apps. Don't forget to add the inbox apps for Phone, Messaging, Settings, Start, Email and accounts, Work and school, and other apps that you need. -> -> In Windows 10 Mobile, when you create a list of allowed apps, the [settings app that rely on splash apps](#settingssplashapps) are blocked. To unblock these apps, you must include them in your list of allowed apps. -> -> Delete/unenrollment is not properly supported unless Grouping values are unique across enrollments. If multiple enrollments use the same Grouping value, then unenrollment will not work as expected since there are duplicate URIs that get deleted by the resource manager. To prevent this problem, the Grouping value should include some randomness. The best practice is to use a randomly generated GUID. However, there is no requirement on the exact value of the node. - - The following diagram shows the AppLocker configuration service provider in tree format. ![applocker csp](images/provisioning-csp-applocker.png) @@ -39,6 +31,9 @@ Defines restrictions for applications. > When you create a list of allowed apps, all [inbox apps](#inboxappsandcomponents) are also blocked, and you must include them in your list of allowed apps. Don't forget to add the inbox apps for Phone, Messaging, Settings, Start, Email and accounts, Work and school, and other apps that you need. > > In Windows 10 Mobile, when you create a list of allowed apps, the [settings app that rely on splash apps](#settingssplashapps) are blocked. To unblock these apps, you must include them in your list of allowed apps. +> +> Delete/unenrollment is not properly supported unless Grouping values are unique across enrollments. If multiple enrollments use the same Grouping value, then unenrollment will not work as expected since there are duplicate URIs that get deleted by the resource manager. To prevent this problem, the Grouping value should include some randomness. The best practice is to use a randomly generated GUID. However, there is no requirement on the exact value of the node. + Additional information: @@ -363,7 +358,8 @@ The product name is first part of the PackageFullName followed by the version nu The following list shows the apps that may be included in the inbox. -> **Note** This list identifies system apps that ship as part of Windows that you can add to your AppLocker policy to ensure proper functioning of the operating system. If you decide to block some of these apps, we recommend a thorough testing before deploying to your production environment. Failure to do so may result in unexpected failures and can significantly degrade the user experience. +> [!NOTE] +> This list identifies system apps that ship as part of Windows that you can add to your AppLocker policy to ensure proper functioning of the operating system. If you decide to block some of these apps, we recommend a thorough testing before deploying to your production environment. Failure to do so may result in unexpected failures and can significantly degrade the user experience. From a6d9bf6f692172227a2e25f66889714252fda2e6 Mon Sep 17 00:00:00 2001 From: arcarley <52137849+arcarley@users.noreply.github.com> Date: Sun, 18 Aug 2019 12:06:03 -0700 Subject: [PATCH 15/19] Update policy-csp-update.md We have MDMs who need to be aware that the value of 32 has been deprecated as a supported value for branch readiness level on Win. 10 version 1903 and beyond. Please update ASAP. --- windows/client-management/mdm/policy-csp-update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/client-management/mdm/policy-csp-update.md b/windows/client-management/mdm/policy-csp-update.md index b0de2a2be1..ed619bd257 100644 --- a/windows/client-management/mdm/policy-csp-update.md +++ b/windows/client-management/mdm/policy-csp-update.md @@ -1072,7 +1072,7 @@ The following list shows the supported values: - 4 {0x4} - Windows Insider build - Slow (added in Windows 10, version 1709) - 8 {0x8} - Release Windows Insider build (added in Windows 10, version 1709) - 16 {0x10} - (default) Semi-annual Channel (Targeted). Device gets all applicable feature updates from Semi-annual Channel (Targeted). -- 32 {0x20} - Semi-annual Channel. Device gets feature updates from Semi-annual Channel. (*Only applicable to releases prior to 1903) +- 32 {0x20} - Semi-annual Channel. Device gets feature updates from Semi-annual Channel. (*Only applicable to releases prior to 1903, for all releases 1903 and after the Semi-annual Channel and Semi-annual Channel (Targeted) into a single Semi-annual Channel with a value of 16) From 7c704e6272a53c7a8a5d38b124e29d6d33fe8567 Mon Sep 17 00:00:00 2001 From: VLG17 <41186174+VLG17@users.noreply.github.com> Date: Mon, 19 Aug 2019 10:46:47 +0300 Subject: [PATCH 16/19] removed/added info https://github.com/MicrosoftDocs/windows-itpro-docs/issues/4536 --- .../attack-surface-reduction-exploit-guard.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/windows/security/threat-protection/windows-defender-exploit-guard/attack-surface-reduction-exploit-guard.md b/windows/security/threat-protection/windows-defender-exploit-guard/attack-surface-reduction-exploit-guard.md index e78eb77ef5..d4108e91a2 100644 --- a/windows/security/threat-protection/windows-defender-exploit-guard/attack-surface-reduction-exploit-guard.md +++ b/windows/security/threat-protection/windows-defender-exploit-guard/attack-surface-reduction-exploit-guard.md @@ -267,7 +267,7 @@ This rule blocks processes through PsExec and WMI commands from running, to prev >[!WARNING] >Only use this rule if you're managing your devices with [Intune](https://docs.microsoft.com/intune) or another MDM solution. This rule is incompatible with management through [System Center Configuration Manager](https://docs.microsoft.com/sccm) because this rule blocks WMI commands the SCCM client uses to function correctly. -This rule was introduced in: Windows 10 1803, Windows Server 1809, Windows Server 2019, SCCM CB 1802 +This rule was introduced in: Windows 10 1803, Windows Server 1809, Windows Server 2019 Intune name: Process creation from PSExec and WMI commands @@ -297,7 +297,7 @@ This rule prevents Outlook from creating child processes. It protects against so >[!NOTE] >This rule applies to Outlook and Outlook.com only. -This rule was introduced in: Windows 10 1809, Windows Server 1809, Windows Server 2019, SCCM CB 1810 +This rule was introduced in: Windows 10 1809, Windows Server 1809, Windows Server 2019 Intune name: Process creation from Office communication products (beta) @@ -309,11 +309,11 @@ GUID: 26190899-1602-49e8-8b27-eb1d0a1ce869 Through social engineering or exploits, malware can download and launch additional payloads and break out of Adobe Reader. This rule prevents attacks like this by blocking Adobe Reader from creating additional processes. -This rule was introduced in: Windows 10 1809, Windows Server 1809, Windows Server 2019, SCCM CB 1810 +This rule was introduced in: Windows 10 1809, Windows Server 1809, Windows Server 2019 Intune name: Process creation from Adobe Reader (beta) -SCCM name: Not applicable +SCCM name: Not yet available GUID: 7674ba52-37eb-4a4f-a9a1-f0f9a1619a2c @@ -321,6 +321,8 @@ GUID: 7674ba52-37eb-4a4f-a9a1-f0f9a1619a2c Fileless threats employ various tactics to stay hidden, to avoid being seen in the file system, and to gain periodic execution control. Some threats can abuse the WMI repository and event model to stay hidden. With this rule, admins can prevent threats that abuse WMI to persist and stay hidden in WMI repository. +This rule was introduced in: Windows 10 1903, Windows Server 1903 + Intune name: Block persistence through WMI event subscription SCCM name: Not yet available From f0bc757c831247bff3837f4ab64ea68c6547579d Mon Sep 17 00:00:00 2001 From: Jake Mowrer <28117568+docbrown1981@users.noreply.github.com> Date: Mon, 19 Aug 2019 14:22:46 -0500 Subject: [PATCH 17/19] Update custom-detection-rules.md Adding verbiage about the requirement that the query must return specific fields for each row for it to work. Line 29 --- .../microsoft-defender-atp/custom-detection-rules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/security/threat-protection/microsoft-defender-atp/custom-detection-rules.md b/windows/security/threat-protection/microsoft-defender-atp/custom-detection-rules.md index 55180b158c..9561fe831c 100644 --- a/windows/security/threat-protection/microsoft-defender-atp/custom-detection-rules.md +++ b/windows/security/threat-protection/microsoft-defender-atp/custom-detection-rules.md @@ -26,7 +26,7 @@ ms.topic: article Create custom detection rules from [Advanced hunting](overview-hunting.md) queries to automatically check for threat indicators and generate alerts whenever these indicators are found. >[!NOTE] ->To create and manage custom detections, [your role](user-roles.md#create-roles-and-assign-the-role-to-an-azure-active-directory-group) needs to have the **manage security settings** permission. +>To create and manage custom detections, [your role](user-roles.md#create-roles-and-assign-the-role-to-an-azure-active-directory-group) needs to have the **manage security settings** permission. For the detection rule to work properly and create alerts, the query must return in each row a set of MachineId, ReportId, EventTime which match to an actual event in advanced hunting. 1. In the navigation pane, select **Advanced hunting**. From 68ce895041b14e652e61b48478b2c224d747a187 Mon Sep 17 00:00:00 2001 From: DocsPreview <49669258+DocsPreview@users.noreply.github.com> Date: Mon, 19 Aug 2019 14:23:31 -0700 Subject: [PATCH 18/19] Latest changes for publish today (#949) --- .../resolved-issues-windows-10-1607.yml | 8 ++------ .../resolved-issues-windows-10-1703.yml | 6 ------ .../resolved-issues-windows-10-1709.yml | 8 ++------ .../resolved-issues-windows-10-1803.yml | 18 ++++-------------- ...indows-10-1809-and-windows-server-2019.yml | 2 ++ ...ndows-7-and-windows-server-2008-r2-sp1.yml | 19 +++++++++++-------- ...windows-8.1-and-windows-server-2012-r2.yml | 16 ++++++++++------ ...esolved-issues-windows-server-2008-sp2.yml | 14 ++++++++++---- .../resolved-issues-windows-server-2012.yml | 16 ++++++++++------ ...indows-10-1607-and-windows-server-2016.yml | 4 ++-- .../status-windows-10-1709.yml | 4 ++-- .../status-windows-10-1803.yml | 8 ++++---- ...indows-10-1809-and-windows-server-2019.yml | 4 ++-- .../status-windows-10-1903.yml | 4 ++-- ...ndows-7-and-windows-server-2008-r2-sp1.yml | 4 ++-- ...windows-8.1-and-windows-server-2012-r2.yml | 4 ++-- .../status-windows-server-2008-sp2.yml | 4 ++-- .../status-windows-server-2012.yml | 4 ++-- 18 files changed, 71 insertions(+), 76 deletions(-) diff --git a/windows/release-information/resolved-issues-windows-10-1607.yml b/windows/release-information/resolved-issues-windows-10-1607.yml index bf1e899bff..08b49123c4 100644 --- a/windows/release-information/resolved-issues-windows-10-1607.yml +++ b/windows/release-information/resolved-issues-windows-10-1607.yml @@ -32,6 +32,7 @@ sections: - type: markdown text: " + @@ -52,10 +53,7 @@ sections: - - -
SummaryOriginating updateStatusDate resolved
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) may fail to start with error \"0xc0000001.\"

See details >
OS Build 14393.3025

June 11, 2019
KB4503267
Resolved
KB4512495
August 17, 2019
02:00 PM PT
Apps using Visual Basic 6 (VB6), VBA, and VBScript may stop responding with error
Applications that were made using Visual Basic 6 (VB6), macros using Visual Basic for Applications (VBA), and VBScript may stop responding and you may receive an error.

See details >
OS Build 14393.3144

August 13, 2019
KB4512517
Resolved
KB4512495
August 17, 2019
02:00 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after updating.

See details >
OS Build 14393.3115

July 16, 2019
KB4507459
Resolved
KB4512517
August 13, 2019
10:00 AM PT
Internet Explorer 11 and apps using the WebBrowser control may fail to render
JavaScript may fail to render as expected in Internet Explorer 11 and in apps using JavaScript or the WebBrowser control.

See details >
OS Build 14393.3085

July 09, 2019
KB4507460
Resolved
KB4512517
August 13, 2019
10:00 AM PT
End-user-defined characters (EUDC) may cause blue screen at startup
If you enable per font end-user-defined characters (EUDC), the system will stop working and a blue screen may appear at startup.

See details >
OS Build 14393.2879

March 19, 2019
KB4489889
Resolved
KB4493470
April 09, 2019
10:00 AM PT
MSXML6 may cause applications to stop responding
MSXML6 may cause applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

See details >
OS Build 14393.2724

January 08, 2019
KB4480961
Resolved
KB4493470
April 09, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
Users may receive “Error 1309” while installing or uninstalling certain types of MSI and MSP files.

See details >
OS Build 14393.2791

February 12, 2019
KB4487026
Resolved
KB4489882
March 12, 2019
10:00 AM PT
Internet Explorer may fail to load images
Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

See details >
OS Build 14393.2791

February 12, 2019
KB4487026
Resolved
KB4487006
February 19, 2019
02:00 PM PT
First character of the Japanese era name not recognized as an abbreviation
The first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

See details >
OS Build 14393.2759

January 17, 2019
KB4480977
Resolved
KB4487006
February 19, 2019
02:00 PM PT
Custom URI schemes may not start corresponding application
Custom URI schemes for application protocol handlers may not start the corresponding application for local intranet and trusted sites in Internet Explorer.

See details >
OS Build 14393.2848

March 12, 2019
KB4489882
Resolved
KB4493473
April 25, 2019
02:00 PM PT
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

See details >
OS Build 14393.2791

February 12, 2019
KB4487026
Resolved
KB4487006
February 19, 2019
02:00 PM PT
Issue hosting multiple terminal server sessions and a user logs off on Windows Server
In some cases, Windows Server will stop working and restart when hosting multiple terminal server sessions and a user logs off.

See details >
OS Build 14393.2828

February 19, 2019
KB4487006
Resolved
KB4489882
March 12, 2019
10:00 AM PT
" @@ -82,6 +80,7 @@ sections: - type: markdown text: " + @@ -139,8 +138,6 @@ sections:
DetailsOriginating updateStatusHistory
Devices starting using PXE from a WDS or SCCM servers may fail to start
Devices that start up using Preboot Execution Environment (PXE) images from Windows Deployment Services (WDS) or System Center Configuration Manager (SCCM) may fail to start with the error \"Status: 0xc0000001, Info: A required device isn't connected or can't be accessed\" after installing KB4503267 on a WDS server.

Affected platforms:
  • Server: Windows Server 2008 SP2; Windows Server 2008 R2 SP1; Windows Server 2012; Windows Server 2012 R2; Windows Server 2016; Windows Server, version 1803; Windows Server 2019; Windows Server, version 1809; Windows Server, version 1903
Resolution: This issue was resolved in KB4512495.

Back to top
OS Build 14393.3025

June 11, 2019
KB4503267
Resolved
KB4512495
Resolved:
August 17, 2019
02:00 PM PT

Opened:
July 10, 2019
02:51 PM PT
Domain connected devices that use MIT Kerberos realms will not start up
Devices connected to a domain that is configured to use MIT Kerberos realms will not start up or may continue to restart after installation of KB4507459. Devices that are domain controllers or domain members are both affected.

To safeguard your update experience, we have applied a compatibility hold on devices configured to use MIT Kerberos realm from being offered Windows 10, version 1903 or Windows Server, version 1903.

Note If you are not sure if your device is affected, contact your administrator. Advanced users can check for “Define interoperable Kerberos v5 realm settings” policy under Computer Configuration -> Policies -> Administrative Templates > System -> Kerberos or check if this registry key exists:
HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\Kerberos\\MitRealms
 

Affected platforms:
  • Client: Windows 10, version 1903; Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10 Enterprise LTSC 2016; Windows 10, version 1607
  • Server: Windows Server, version 1903; Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709 ; Windows Server 2016
Resolution: This issue was resolved in KB4512517. To safeguard your upgrade experience, the compatibility hold on devices from being offered Windows 10, version 1903 or Windows Server, version 1903 is still in place. Once the issue is addressed on Windows 10, version 1903, this safeguard hold will be removed for all affected platforms. Check the Windows 10, version 1903 section of the release information dashboard for the most up to date information on this and other safeguard holds.

Note We recommend that you do not attempt to manually update using the Update now button or the Media Creation Tool until this issue has been resolved.

Back to top
OS Build 14393.3115

July 16, 2019
KB4507459
Resolved
KB4512517
Resolved:
August 13, 2019
10:00 AM PT

Opened:
July 25, 2019
06:10 PM PT
Internet Explorer 11 and apps using the WebBrowser control may fail to render
Internet Explorer 11 may fail to render some JavaScript after installing KB4507460. You may also have issues with apps using JavaScript or the WebBrowser control, such as the present PowerPoint feature of Skype Meeting Broadcast.

Affected platforms:
  • Client: Windows 10 Enterprise LTSC 2016; Windows 10, version 1607
  • Server: Windows Server 2016
Resolution: This issue was resolved in KB4512517.

Back to top
OS Build 14393.3085

July 09, 2019
KB4507460
Resolved
KB4512517
Resolved:
August 13, 2019
10:00 AM PT

Opened:
July 26, 2019
04:58 PM PT
- -
DetailsOriginating updateStatusHistory
Embedded objects may display incorrectly
Any compound document (OLE) server application that places embedded objects into the Windows Metafile (WMF) using the PatBlt API may display embedded objects incorrectly. 
 
For example, if you paste a Microsoft Excel worksheet object into a Microsoft Word document, the cells may render with a different background color. 
 
Affected platforms:  
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1 
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2 
Resolution: This issue is resolved in KB4493470

Back to top
OS Build 14393.2791

February 12, 2019
KB4487026
Resolved
KB4493470
Resolved:
April 09, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
Error 1309 when installing/uninstalling MSI or MSP files
After installing KB4487026, users may receive “Error 1309” while installing or uninstalling certain types of MSI and MSP files.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue is resolved in KB4489882.

Back to top
OS Build 14393.2791

February 12, 2019
KB4487026
Resolved
KB4489882
Resolved:
March 12, 2019
10:00 AM PT

Opened:
February 12, 2019
10:00 AM PT
Internet Explorer may fail to load images
After installing KB4487026, Internet Explorer may fail to load images with a backslash (\\) in their relative source path.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2008 R2 SP1
Resolution: This issue is resolved in KB4487006.

Back to top
OS Build 14393.2791

February 12, 2019
KB4487026
Resolved
KB4487006
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
Applications using Microsoft Jet database and Access 95 file format stop working
Applications that use a Microsoft Jet database with the Microsoft Access 95 file format may randomly stop working.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4487006.

Back to top
OS Build 14393.2791

February 12, 2019
KB4487026
Resolved
KB4487006
Resolved:
February 19, 2019
02:00 PM PT

Opened:
February 12, 2019
10:00 AM PT
Issue hosting multiple terminal server sessions and a user logs off on Windows Server
In some cases, Windows Server will stop working and restart when hosting multiple terminal server sessions and a user logs off. The faulting driver is win32kbase.sys.

Affected platforms:
  • Client: Windows 10, version 1607; Windows 10 Enterprise LTSC 2016
  • Server: Windows Server 2016
Resolution: This issue is resolved in KB4489882.

Back to top
OS Build 14393.2828

February 19, 2019
KB4487006
Resolved
KB4489882
Resolved:
March 12, 2019
10:00 AM PT

Opened:
February 19, 2019
02:00 PM PT
" @@ -152,7 +149,6 @@ sections: -
DetailsOriginating updateStatusHistory
Internet Explorer 11 authentication issue with multiple concurrent logons
After installing KB4480961, Internet Explorer 11 and other applications that use WININET.DLL may have authentication issues. This occurs when two or more people use the same user account for multiple, concurrent login sessions on the same Windows Server machine, including Remote Desktop Protocol (RDP) and Terminal Server logons. Symptoms reported by customers include, but may not be limited to:
  • Cache size and location show zero or empty.
  • Keyboard shortcuts may not work properly.
  • Webpages may intermittently fail to load or render correctly.
  • Issues with credential prompts.
  • Issues when downloading files.
Affected platforms: 
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1
Resolution: This issue was resolved in KB4493470.

Back to top
OS Build 14393.2724

January 08, 2019
KB4480961
Resolved
KB4493470
Resolved:
April 09, 2019
10:00 AM PT

Opened:
January 08, 2019
10:00 AM PT
MSXML6 may cause applications to stop responding
After installing KB4480961, MSXML6 causes applications to stop responding if an exception was thrown during node operations, such as appendChild(), insertBefore(), and moveNode().

The Group Policy editor may stop responding when editing a Group Policy Object (GPO) that contains Group Policy Preferences (GPP) for Internet Explorer 10 settings.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012
Resolution: This issue was resolved in KB4493470.

Back to top
OS Build 14393.2724

January 08, 2019
KB4480961
Resolved
KB4493470
Resolved:
April 09, 2019
10:00 AM PT

Opened:
January 08, 2019
10:00 AM PT
First character of the Japanese era name not recognized as an abbreviation
After installing KB4480977, the first character of the Japanese era name is not recognized as an abbreviation and may cause date parsing issues.

Affected platforms:
  • Client: Windows 10, version 1809; Windows 10 Enterprise LTSC 2019; Windows 10, version 1803; Windows 10, version 1709; Windows 10, version 1703; Windows 10, version 1607; Windows 10 Enterprise LTSC 2016; Windows 10, version 1507; Windows 10 Enterprise LTSB 2015; Windows 8.1; Windows 7 SP1
  • Server: Windows Server, version 1809; Windows Server 2019; Windows Server, version 1803; Windows Server, version 1709; Windows Server 2016; Windows Server 2012 R2; Windows Server 2012; Windows Server 2008 R2 SP1; Windows Server 2008 SP2
Resolution: This issue is resolved in KB4487006.

Back to top
OS Build 14393.2759

January 17, 2019
KB4480977
Resolved
KB4487006
Resolved:
February 19, 2019
02:00 PM PT

Opened:
January 17, 2019
02:00 PM PT
" diff --git a/windows/release-information/resolved-issues-windows-10-1703.yml b/windows/release-information/resolved-issues-windows-10-1703.yml index 89d2b4a9f4..22ddb295df 100644 --- a/windows/release-information/resolved-issues-windows-10-1703.yml +++ b/windows/release-information/resolved-issues-windows-10-1703.yml @@ -45,10 +45,7 @@ sections: