Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Applies to:

Microsoft .NET Framework 4.8

IMPORTANT Verify that you have installed the required updates listed in the How to get this update section before installing this update. 

IMPORTANT Some customers who use Windows Server 2008 R2 SP1 and have activated their ESU multiple activation key (MAK) add-on before installing the January 14, 2020 updates might need to re-activate their key. Re-activation on the affected devices should only be required once.  For information on activation, see this blog post.

IMPORTANT WSUS scan cab files will continue to be available for Windows 7 SP1 and Windows Server 2008 R2 SP1. If you have a subset of devices running these operating systems without ESU, they might show as non-compliant in your patch management and compliance toolsets.

IMPORTANT Customers who have purchased the Extended Security Update (ESU) for on-premises versions of these operating systems must follow the procedures in KB4522133 to continue receiving security updates after extended support ends on January 14, 2020. For more information on ESU and which editions are supported, see KB4497181.

IMPORTANT Starting on January 15, 2020, a full-screen notification will appear that describes the risk of continuing to use Windows 7 Service Pack 1 after it reaches end of support on January 14, 2020. The notification will remain on the screen until you interact with it. This notification will only appear on the following editions of Windows 7 Service Pack 1:

Note The notification will not appear on domain-joined machines or machines in kiosk mode.

IMPORTANT Starting in August, 2019, updates to .NET Framework 4.6 and above, for Windows Server 2008 R2 SP1, and Windows 7SP1, require SHA-2 Code signing support. Please make sure that you have all the latest Windows Updates before applying this update to avoid installation issues. For more detailed information about SHA-2 code signing support updates, please see KB 4474419.

Summary

Security improvements

An elevation of privilege vulnerability exists when ASP.NET or .NET Framework web applications running on IIS improperly allow access to cached files. An attacker who successfully exploited this vulnerability could gain access to restricted files. To exploit this vulnerability, an attacker would need to send a specially crafted request to an affected server. The update addresses the vulnerability by changing how ASP.NET and .NET Framework handle requests.

To learn more about the vulnerabilities, go to the following Common Vulnerabilities and Exposures (CVE).

 

Quality and reliability improvements

CLR1

- A change in .NET Framework 4.8 regressed certain EnterpriseServices scenarios where a single-thread apartment object may be treated as a multi-thread apartment and lead to a blocking failure. This change now correctly identifies single-thread apartment objects as such and avoids this failure.

- Addresses an issue in assemblies with IBC profile data causing Ngen worker processes to crash and fall back to full native images.

- Addresses rare crashes that could occur during thread abort delivery.

SQL

- SqlBulkCopy.WriteToServer can cause transactions to in-memory SQL tables, to fail. The client may see an exception with message "Execution Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not responding." SqlBulkCopy.WriteToServer was sending an Attention token (cancellation message) after sending data to SQL Server, causing the server to abort the transaction for in-memory tables.

ASP.NET

- Use FIPS-compliant hashes in ASP.Net telemetry data.

- Addresses an issue where "Unspecified" was not an allowed value in config for the 'cookieSameSite' attribute of the forms authentication and session state configuration sections.

WPF2

- Addresses an issue when spell-checking is enabled in WPF TextBox or RichTextBox, words like “etc.”, “e.g.” are identified as spelling errors incorrectly.

- Addresses an issue when some Per-Monitor Aware WPF applications that run on .NET 4.8 may occasionally encounter a crash with exceptionSystem.ComponentModel.Win32Exception.

- Addresses an issue where TextBlock reflows (makes different line-breaking decisions) during render and hit-test, vs. during measure. The symptoms include missing text, and FailFast crashes during programmatic text processing.

- Addresses an issue with a render thread failure caused by HostVisual disconnecting its target on the wrong thread.

- Addresses an issue with a hang while scrolling a TreeView whose tree is non-uniform, in the sense that a given node's children govern subtrees whose sizes are quite different.

- Addresses an issue with a crash that can occur when closing a tooltip that is re-entrantly closed by user code.

- When an HwndHost leaves the visual tree, a stack trace is created. This is expensive, and usually unnecessary. The logic is now changed to create the stack trace only when the anomalous condition occurs.

- Addresses a memory leak in System.Speech.SpeechSynthesizer.

- DataGrid's Copy command throws an exception if the system clipboard is locked by another process. This crashes, as there is usually no app code on the stack to catch the exception. The behavior of TextBox (and other apps like Notepad, Word, browsers) in this situation is to fail silently - nothing is copied to the clipboard, but no exception. A WPF app can now opt-in to this behavior by setting the following in the app.config file:

<appSettings>

<add key="ShouldThrowOnDataGridCopyOrCutFailure" value="false"/>

</appSettings>

- Addresses an issue in constructing the internal model for a FixedPage document. Some text was appearing in the wrong order for the purposes of editing operations such as selection and copy/paste.

WCF3

- When using a UPN Windows username with the format similar to username@dns.domain in the username property of a NetworkCredential when using NetTcpBinding or NetNamedPipeBinding, WCF would incorrectly split the username and dns.domain placing them into the UserName and Domain properties. This is invalid in some scenarios and would result in failing to authenticate. This fix removes the credential modification when using a UPN username. The modification can be re-enabled by setting the AppSetting "wcf:enableLegacyUpnUsernameFix" to true.

Net Libraries

- Addresses a memory leak in HttpListener.

Winforms

- Addresses an issue with DataGridView IsReadOnlyaccessibility state: Narrator and other accessible tool announces read-only cell status accordingly.

- Addresses a regression in .NET Framework 4.8 when applications using the DataGridView ComboBox cell type and have opted into Level 3 Accessibility, may experience intermittent crashes while editing the cell.

- Addresses an issue in ClickOnce RFC3161 timestamp verification code.

Winforms Accessibility Improvements

In this release we are adding new accessibility improvements that your application can opt-in into. By default these changes are disabled. Applications that opt-in into accessibility features introduced in .NET 4.8 and earlier, can add the following compatibility switch to the application's config file:

"Switch.UseLegacyAccessibilityFeatures.4=false"

Specifically, if an application targets .NET 4.8, add the following AppContextSwitchOverrides section:

<?xml version="1.0" encoding+"utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Versionv4.8"/;
</startup>
<runtime>
<!-- AppContextSwitchOverrides value attribute is in the form of 'key1=true|false;key2=true|false -->
<AppContextSwitchOverrides value="Switch.UseLegacyAccessibilityFeatures.4=false" />
</runtime>
</configuration>

If an application targets an earlier version of the framework and opts in into the previously release sets of accessibility features, then add a single "Switch.UseLegacyAccessibilityFeatures.4=false" switch to the existing AppContextSwitchOverrides section:

<?xml version="1.0" encoding+"utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Versionv4.7"/;
</startup>
<runtime>
<!-- AppContextSwitchOverrides value attribute is in the form of 'key1=true|false;key2=true|false -->
<AppContextSwitchOverrides value=Switch.UseLegacyAccessibilityFeatures=false|Switch.UseLegacyAccessibilityFeatures.2=false|Switch.UseLegacyAccessibilityFeatures.3=false|Switch.UseLegacyAccessibilityFeatures.4=false"/>
</runtime>
</configuration>

Winforms accessibility improvements included in this release are:

- Addresses an issue with announcing PropertyGrid control items and categories expanded/collapsed state by Screen Readers.

- Updated the accessible patterns of Property Grid control and its inner elements.

- Updated the accessible names of Property Grid control inner elements to correctly announce these by screen reader.

- Addressesbounding rectangle accessible properties for the PropertyGridView controls

- Enables screen readers to announce DataGridView ComboBox cell expanded/collapsed state correctly.


1 Common Language Runtime (CLR)
2 Windows Presentation Foundation (WPF)
3 Windows Communication Foundation

Known issues in this update

Symptom

Windows Presentation Framework (WPF) applications that use two or more HostVisual elements belonging to a common thread, where both HostVisual elements are asked to disconnect from their visual target at roughly the same time, mail fail with the following error:

Exception type:  System.COMException
Message:  UCEERR_RENDERTHREADFAILURE (HRESULT 0x88980406)
Callstack:  top frame is System.Windows.Media.Composition.DUCE+Channel.SyncFlush()

Workaround

You can disable the problematic fix by setting the AppContext switch “Switch.System.Windows.Media.HostVisual.DisconnectsOnWrongThread” to true, using one of the methods described here.  This exposes your app to the original bug, so you should remove the switch once a fix is published through an upcoming update.

Workaround 1


•    Add the following entry to the app.config file to disable the problematic fix in a single application.


<runtime>
    <AppContextSwitchOverrides value="Switch.System.Windows.Media.HostVisual.DisconnectsOnWrongThread=true"/>
</runtime>

Note that if your application configuration already has an entry for <AppContextSwitchOverrides>, you need to add the new setting within that entry, separated from other switches by a semicolon:

   <AppContextSwitchOverrides value="Switch.SomeOtherSwitch=true; Switch.System.Windows.Media.HostVisual.DisconnectsOnWrongThread=true"/>

Workaround 2


•    Apply the following registry subkey to disable the problematic fix for all WPF applications on the machine.
 Warning
Serious problems might occur if you modify the registry incorrectly by using Registry Editor or by using another method. These problems might require that you reinstall the operating system. Microsoft can't guarantee that these problems can be solved. Modify the registry at your own risk.


Location: HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AppContext\
Name: Switch.System.Media.HostVisual.DisconnectsOnWrongThread
Type: String
Value: true

Note that on 64-bit operating systems, you also need to apply a registry subkey with the same name, type, and value at the location:   HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\.NETFramework\AppContext\

Symptom

This update does not install, and it returns either or both of the following error messages:

  • -2146762495

  • A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file.

Workaround

This issue has been corrected in the latest Security and Quality Rollup for .NET Framework. 

Additional information about this update

The following articles contain additional information about this update as it relates to individual product versions.

  • 4570506 Description of the Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 for Windows 7 SP1 and Windows Server 2008 R2 SP1 (KB4570506)

How to obtain and install the update

Before installing this update

Prerequisite:

To apply this update, you must have .NET Framework 4.8 installed.

You must install the updates listed below and restart your device before installing the latest Rollup. Installing these updates improves the reliability of the update process and mitigates potential issues while installing the Rollup and applying Microsoft security fixes.

  1. The March 12, 2019 servicing stack update (SSU) (KB4490628). To get the standalone package for this SSU, search for it in the Microsoft Update Catalog. This update is required to install updates that are only SHA-2 signed.

  2. The latest SHA-2 update (KB4474419) released September 10, 2019. If you are using Windows Update, the latest SHA-2 update will be offered to you automatically. This update is required to install updates that are only SHA-2 signed. For more information on SHA-2 updates, see 2019 SHA-2 Code Signing Support requirement for Windows and WSUS.

  3. The Extended Security Updates (ESU) Licensing Preparation Package (KB4538483) released February 11, 2020. The ESU licensing preparation package will be offered to you from WSUS. To get the standalone package for ESU licensing preparation package, search for it in the Microsoft Update Catalog.

Install this update

Release Channel

Available

Next Step

Windows Update and Microsoft Update

Yes

None. This update will be downloaded and installed automatically from Windows Update if you are an ESU customer.

Microsoft Update Catalog

Yes

To get the standalone package for this update, go to the Microsoft Update Catalog website.

Windows Server Update Services (WSUS)

Yes

This update will automatically sync with WSUS if you configure Products and Classifications as follows:

Product: Windows 7 Service Pack 1, Windows Server 2008 R2 Service Pack 1,Windows Embedded Standard 7 Service Pack 1, Windows Embedded POSReady 7

Classification: Security Updates

Restart requirement

You must restart the computer after you apply this update if any affected files are being used. We recommend that you exit all .NET Framework-based applications before you apply this update.

Update deployment information

For deployment details for this security update, go to the following article in the Microsoft Knowledge Base:

20200811 Security update deployment information: August 11, 2020

Update removal information

Note We do not recommend that you remove any security update. To remove this update, use the Programs and Features item in Control Panel.

Update restart information

This update does not require a system restart after you apply it unless files that are being updated are locked or are being used.

Update replacement information

This update replaces previously released updates 4566517.

File information

The English (United States) version of this software update installs files that have the attributes that are listed in the following tables.

x86

File name

File version

File size

Date

Time

Aspnet_perf.dll

4.8.4210.0

36,224

22-Jul-2020

00:28

aspnet_wp.exe

4.8.4210.0

39,816

22-Jul-2020

00:28

clr.dll

4.8.4210.0

8,037,248

22-Jul-2020

00:28

clrjit.dll

4.8.4210.0

553,848

22-Jul-2020

00:28

dfdll.dll

4.8.4210.0

178,056

22-Jul-2020

00:28

mscordacwks.dll

4.8.4210.0

1,307,528

22-Jul-2020

00:28

mscordbi.dll

4.8.4210.0

1,188,736

22-Jul-2020

00:28

mscoreei.dll

4.8.4180.0

581,920

22-Jul-2020

00:28

mscorlib.dll

4.8.4210.0

5,670,792

22-Jul-2020

00:28

Placeholder.dll

4.8.4210.0

18,312

22-Jul-2020

00:28

VsVersion.dll

14.8.4210.0

11,648

22-Jul-2020

00:28

PenIMC2_v0400.dll

4.8.4210.0

99,720

22-Jul-2020

00:28

peverify.dll

4.8.4210.0

182,656

22-Jul-2020

00:28

PresentationCore.dll

4.8.4210.0

3,671,424

22-Jul-2020

00:28

PresentationFramework.dll

4.8.4210.0

6,269,816

22-Jul-2020

00:28

PresentationFramework-SystemData.dll

4.8.4210.0

17,800

22-Jul-2020

00:28

PresentationHost_v0400.dll

4.8.4210.0

233,856

22-Jul-2020

00:28

PresentationHost_v0400.dll.mui

4.8.4210.0

77,704

22-Jul-2020

00:28

PresentationNative_v0400.dll

4.8.4210.0

923,008

22-Jul-2020

00:28

ReachFramework.dll

4.8.4110.0

677,656

22-Jul-2020

00:28

ServiceMonikerSupport.dll

4.8.4210.0

24,448

22-Jul-2020

00:28

SMDiagnostics.dll

4.8.4210.0

66,312

22-Jul-2020

00:28

SOS.dll

4.8.4210.0

767,352

22-Jul-2020

00:28

System.Speech.dll

4.8.4210.0

676,736

22-Jul-2020

00:28

System.Activities.dll

4.8.4210.0

1,526,536

22-Jul-2020

00:28

System.Activities.Presentation.dll

4.8.4180.0

2,127,136

22-Jul-2020

00:28

System.Core.dll

4.8.4210.0

1,549,080

22-Jul-2020

00:28

System.IdentityModel.dll

4.8.4210.0

1,086,720

22-Jul-2020

00:28

System.IdentityModel.Services.dll

4.8.4210.0

191,352

22-Jul-2020

00:28

System.Printing.dll

4.8.4110.0

399,640

22-Jul-2020

00:28

System.Runtime.Serialization.dll

4.8.4210.0

1,047,296

22-Jul-2020

00:28

System.ServiceModel.Channels.dll

4.8.4210.0

150,920

22-Jul-2020

00:28

System.ServiceModel.Discovery.dll

4.8.4210.0

301,448

22-Jul-2020

00:28

System.ServiceModel.dll

4.8.4210.0

6,381,832

22-Jul-2020

00:28

System.ServiceModel.Internals.dll

4.8.4210.0

246,536

22-Jul-2020

00:28

System.ServiceModel.WasHosting.dll

4.8.4210.0

33,160

22-Jul-2020

00:28

System.Web.ApplicationServices.dll

4.8.4210.0

63,752

22-Jul-2020

00:28

System.Web.Extensions.dll

4.8.4210.0

1,842,440

22-Jul-2020

00:28

System.Windows.Forms.DataVisualization.dll

4.8.4210.0

1,712,512

22-Jul-2020

00:28

System.Workflow.Activities.dll

4.8.4110.0

1,051,112

22-Jul-2020

00:28

System.Workflow.ComponentModel.dll

4.8.4110.0

1,557,272

22-Jul-2020

00:28

System.Workflow.Runtime.dll

4.8.4110.0

503,064

22-Jul-2020

00:28

System.Configuration.dll

4.8.4190.0

421,536

22-Jul-2020

00:28

System.Data.dll

4.8.4210.0

3,475,320

22-Jul-2020

00:28

System.Deployment.dll

4.8.4210.0

1,594,120

22-Jul-2020

00:28

System.dll

4.8.4210.0

3,552,520

22-Jul-2020

00:28

System.Drawing.Design.dll

4.8.4210.0

125,192

22-Jul-2020

00:28

System.Web.dll

4.8.4210.0

5,409,152

22-Jul-2020

00:28

System.Windows.Controls.Ribbon.dll

4.8.4210.0

743,808

22-Jul-2020

00:28

System.Windows.Forms.dll

4.8.4210.0

5,915,912

22-Jul-2020

00:28

System.Xaml.dll

4.8.4210.0

632,072

22-Jul-2020

00:28

UIAutomationClient.dll

4.8.4210.0

170,872

22-Jul-2020

00:28

UIAutomationClientsideProviders.dll

4.8.4210.0

354,176

22-Jul-2020

00:28

UIAutomationProvider.dll

4.8.4210.0

41,856

22-Jul-2020

00:28

UIAutomationTypes.dll

4.8.4210.0

215,928

22-Jul-2020

00:28

webengine.dll

4.8.4210.0

19,320

22-Jul-2020

00:28

webengine4.dll

4.8.4210.0

564,616

22-Jul-2020

00:28

WindowsBase.dll

4.8.4210.0

1,298,808

22-Jul-2020

00:28

WindowsFormsIntegration.dll

4.8.4180.0

105,248

22-Jul-2020

00:28

WorkflowServiceHostPerformanceCounters.dll

4.8.4110.0

89,368

22-Jul-2020

00:28

WPFFontCache_v0400.exe.mui

4.8.4210.0

12,160

22-Jul-2020

00:28

WPFFontCache_v0400.exe

4.8.4210.0

19,864

22-Jul-2020

00:28

wpfgfx_v0400.dll

4.8.4210.0

1,618,824

22-Jul-2020

00:28

x64

File name

File version

File size

Date

Time

Aspnet_perf.dll

4.8.4210.0

41,864

22-Jul-2020

00:41

Aspnet_perf.dll

4.8.4210.0

36,224

22-Jul-2020

00:28

aspnet_wp.exe

4.8.4210.0

45,448

22-Jul-2020

00:41

aspnet_wp.exe

4.8.4210.0

39,816

22-Jul-2020

00:28

clr.dll

4.8.4210.0

11,243,904

22-Jul-2020

00:41

clr.dll

4.8.4210.0

8,037,248

22-Jul-2020

00:28

clrjit.dll

4.8.4210.0

1,357,696

22-Jul-2020

00:41

clrjit.dll

4.8.4210.0

553,848

22-Jul-2020

00:28

compatjit.dll

4.8.4210.0

1,273,224

22-Jul-2020

00:41

dfdll.dll

4.8.4210.0

214,912

22-Jul-2020

00:41

dfdll.dll

4.8.4210.0

178,056

22-Jul-2020

00:28

mscordacwks.dll

4.8.4210.0

1,801,088

22-Jul-2020

00:41

mscordacwks.dll

4.8.4210.0

1,307,528

22-Jul-2020

00:28

mscordbi.dll

4.8.4210.0

1,655,176

22-Jul-2020

00:41

mscordbi.dll

4.8.4210.0

1,188,736

22-Jul-2020

00:28

mscoreei.dll

4.8.4180.0

689,952

22-Jul-2020

00:28

mscoreei.dll

4.8.4180.0

581,920

22-Jul-2020

00:28

mscorlib.dll

4.8.4210.0

5,431,672

22-Jul-2020

00:41

mscorlib.dll

4.8.4210.0

5,670,792

22-Jul-2020

00:28

VsVersion.dll

14.8.4210.0

11,648

22-Jul-2020

00:41

Placeholder.dll

4.8.4210.0

20,360

22-Jul-2020

00:41

Placeholder.dll

4.8.4210.0

18,312

22-Jul-2020

00:28

VsVersion.dll

14.8.4210.0

11,648

22-Jul-2020

00:28

PenIMC2_v0400.dll

4.8.4210.0

120,712

22-Jul-2020

00:41

PenIMC2_v0400.dll

4.8.4210.0

99,720

22-Jul-2020

00:28

peverify.dll

4.8.4210.0

265,592

22-Jul-2020

00:41

peverify.dll

4.8.4210.0

182,656

22-Jul-2020

00:28

PresentationCore.dll

4.8.4210.0

3,648,384

22-Jul-2020

00:41

PresentationCore.dll

4.8.4210.0

3,671,424

22-Jul-2020

00:28

PresentationFramework.dll

4.8.4210.0

6,269,816

22-Jul-2020

00:28

PresentationFramework-SystemData.dll

4.8.4210.0

17,800

22-Jul-2020

00:28

PresentationHost_v0400.dll

4.8.4210.0

302,464

22-Jul-2020

00:41

PresentationHost_v0400.dll.mui

4.8.4210.0

77,696

22-Jul-2020

00:41

PresentationHost_v0400.dll

4.8.4210.0

233,856

22-Jul-2020

00:28

PresentationHost_v0400.dll.mui

4.8.4210.0

77,704

22-Jul-2020

00:28

PresentationNative_v0400.dll

4.8.4210.0

1,164,168

22-Jul-2020

00:41

PresentationNative_v0400.dll

4.8.4210.0

923,008

22-Jul-2020

00:28

ReachFramework.dll

4.8.4110.0

677,656

22-Jul-2020

00:28

ServiceMonikerSupport.dll

4.8.4210.0

27,528

22-Jul-2020

00:41

ServiceMonikerSupport.dll

4.8.4210.0

24,448

22-Jul-2020

00:28

SMDiagnostics.dll

4.8.4210.0

66,312

22-Jul-2020

00:28

SOS.dll

4.8.4210.0

921,472

22-Jul-2020

00:41

SOS.dll

4.8.4210.0

767,352

22-Jul-2020

00:28

System.Speech.dll

4.8.4210.0

676,736

22-Jul-2020

00:28

System.Activities.dll

4.8.4210.0

1,526,536

22-Jul-2020

00:28

System.Activities.Presentation.dll

4.8.4180.0

2,127,136

22-Jul-2020

00:28

System.Core.dll

4.8.4210.0

1,549,080

22-Jul-2020

00:28

System.IdentityModel.dll

4.8.4210.0

1,086,720

22-Jul-2020

00:28

System.IdentityModel.Services.dll

4.8.4210.0

191,352

22-Jul-2020

00:28

System.Printing.dll

4.8.4110.0

400,152

22-Jul-2020

00:28

System.Printing.dll

4.8.4110.0

399,640

22-Jul-2020

00:28

System.Runtime.Serialization.dll

4.8.4210.0

1,047,296

22-Jul-2020

00:28

System.ServiceModel.Channels.dll

4.8.4210.0

150,920

22-Jul-2020

00:28

System.ServiceModel.Discovery.dll

4.8.4210.0

301,448

22-Jul-2020

00:28

System.ServiceModel.dll

4.8.4210.0

6,381,832

22-Jul-2020

00:28

System.ServiceModel.Internals.dll

4.8.4210.0

246,536

22-Jul-2020

00:28

System.ServiceModel.WasHosting.dll

4.8.4210.0

33,160

22-Jul-2020

00:28

System.Web.ApplicationServices.dll

4.8.4210.0

63,752

22-Jul-2020

00:28

System.Web.Extensions.dll

4.8.4210.0

1,842,440

22-Jul-2020

00:28

System.Windows.Forms.DataVisualization.dll

4.8.4210.0

1,712,512

22-Jul-2020

00:28

System.Workflow.Activities.dll

4.8.4110.0

1,051,112

22-Jul-2020

00:28

System.Workflow.ComponentModel.dll

4.8.4110.0

1,557,272

22-Jul-2020

00:28

System.Workflow.Runtime.dll

4.8.4110.0

503,064

22-Jul-2020

00:28

System.configuration.dll

4.8.4190.0

421,536

22-Jul-2020

00:28

System.Data.dll

4.8.4210.0

3,542,400

22-Jul-2020

00:41

System.Data.dll

4.8.4210.0

3,475,320

22-Jul-2020

00:28

System.Deployment.dll

4.8.4210.0

1,594,120

22-Jul-2020

00:28

System.dll

4.8.4210.0

3,552,520

22-Jul-2020

00:28

System.Drawing.Design.dll

4.8.4210.0

125,192

22-Jul-2020

00:28

System.Web.dll

4.8.4210.0

5,396,864

22-Jul-2020

00:41

System.Web.dll

4.8.4210.0

5,409,152

22-Jul-2020

00:28

System.Windows.Controls.Ribbon.dll

4.8.4210.0

743,808

22-Jul-2020

00:28

System.Windows.Forms.dll

4.8.4210.0

5,915,912

22-Jul-2020

00:28

System.Xaml.dll

4.8.4210.0

632,072

22-Jul-2020

00:28

UIAutomationClient.dll

4.8.4210.0

170,872

22-Jul-2020

00:28

UIAutomationClientsideProviders.dll

4.8.4210.0

354,176

22-Jul-2020

00:28

UIAutomationProvider.dll

4.8.4210.0

41,856

22-Jul-2020

00:28

UIAutomationTypes.dll

4.8.4210.0

215,928

22-Jul-2020

00:28

webengine.dll

4.8.4210.0

21,384

22-Jul-2020

00:41

webengine.dll

4.8.4210.0

19,320

22-Jul-2020

00:28

webengine4.dll

4.8.4210.0

675,200

22-Jul-2020

00:41

webengine4.dll

4.8.4210.0

564,616

22-Jul-2020

00:28

WindowsBase.dll

4.8.4210.0

1,298,808

22-Jul-2020

00:28

WindowsFormsIntegration.dll

4.8.4180.0

105,248

22-Jul-2020

00:28

WorkflowServiceHostPerformanceCounters.dll

4.8.4110.0

102,672

22-Jul-2020

00:28

WorkflowServiceHostPerformanceCounters.dll

4.8.4110.0

89,368

22-Jul-2020

00:28

WPFFontCache_v0400.exe.mui

4.8.4210.0

12,160

22-Jul-2020

00:41

WPFFontCache_v0400.exe.mui

4.8.4210.0

12,160

22-Jul-2020

00:28

WPFFontCache_v0400.exe

4.8.4210.0

21,920

22-Jul-2020

00:41

WPFFontCache_v0400.exe

4.8.4210.0

19,864

22-Jul-2020

00:28

wpfgfx_v0400.dll

4.8.4210.0

2,050,424

22-Jul-2020

00:41

wpfgfx_v0400.dll

4.8.4210.0

1,618,824

22-Jul-2020

00:28

Information about protection and security

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×