Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Update 4.0.3 for Microsoft .NET Framework 4 – Runtime Update


Introduction

Update 4.0.3 for Microsoft .NET Framework 4 is now available. This update includes a set of new features and fixes some bugs, based on top customer requests and the .NET Framework scenarios.

Notes
  • This update release updates only the runtime files for the Microsoft .NET Framework 4. For more information about the details of this update, see the "More Information" section.
  • This update contains all the runtime changes from the following updates:
    • 2544514 Update 4.0.2 for Microsoft .NET Framework 4 - Runtime Update
    • 2478063 Update 4.0.1 for Microsoft .NET Framework 4 - Runtime Update
    Therefore, this update is a cumulative update. Any application built for the .NET Framework 4.0.1 or the .NET Framework 4.0.2 can run on a computer that has the .NET Framework 4 and the .NET Framework 4.0.3 runtime installed.
  • We do not support any application that this update was used to build on any prerelease version of the .NET Framework 4, such as a Beta. Additionally, we recommend that any such application be upgraded to at least the Microsoft .NET Framework 4 RTM.


Download information

The update is available for download from the following Microsoft Download Center website:
Download Download the update package now.
For more information about how to download Microsoft support files, click the following article number to view the article in the Microsoft Knowledge Base:
119591 How to obtain Microsoft support files from online services
Microsoft scanned this file for viruses. Microsoft used the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help prevent any unauthorized changes to the file.

Prerequisites

To install this update, you must have the following software installed:
  • Windows Installer 3.1 or a later version of Windows Installer

    To obtain the latest version of Windows Installer, visit the following Microsoft website:
  • The Microsoft .NET Framework 4 or the Microsoft .NET Framework 4 Client Profile
Note The .NET 4.0.3 – Runtime Update is a targetable framework and is built for the .NET Framework 4. This update is not a fully cumulative framework version.

Command-line switches for this update

For more information about the command-line switches for Windows Installer, visit the following Microsoft website:
KB227091 Command-Line Switches for the Microsoft Windows Installer Tool
For more information about Windows Installer, visit the following Microsoft website:

Restart requirement

You have to restart the computer after you install this update if the files that are being updated are locked or are being used when you install this update.

↑ Back to the top


More Information

Features that are introduced by this update

Click here to view or hide detailed information

Feature 1: SustainedLowLatency added to GCLatencyMode

Some applications perform time-sensitive operations throughout the day, during which interruptions from long full blocking garbage collection could be disruptive. For example, applications that need quick response times because of financial market data changes during trading hours. If an application has a large managed heap in this environment, it could become unresponsive for long periods of time if full blocking garbage collection occurs.

To resolve this issue, a new setting called SustainedLowLatency is added to GCLatencyMode. This new setting minimizes the situations in which a full blocking garbage collection can occur. However, full blocking garbage collection may still occur in other situations, such as low memory or if garbage collection is deliberately induced.

Note The SustainedLowLatency setting is applicable only when concurrent garbage collection is enabled. If concurrent garbage collection is not enabled, SustainedLowLatency does not affect garbage collection behavior.

For more information about Latency Modes, visit the following Microsoft website:

General information about Latency Modes

Feature 2: Support running Workflows in partial trust

Workflows that use Windows Workflow Foundation 4 (WF4) can run only in fully trusted application domains. This update enables WF to run in partially trusted environments. The scope of the change is enabling the core workflow runtime (execution model, activity and data model, tracking, and serialization) to run in partial trust. To enable this change, some WF assemblies are made conditional AllowPartiallyTrustedCallersAttribute (APTCA).

Note SqlWorkflowInstanceStore and Visual Basic expression are not supported by this change. Therefore, they are not available in partial trust.

Feature 3: Enable WF messaging activities across multiple hosts

WF4 messaging activities (Send, Receive, ReceiveReply, SendReply, and so on) use WCF to send and receive messages. This update introduces a new WF extension that is used by these activities to send or receive messages (or both). The extension has to be provided by the host. If the extension is not present, the WF4 behavior and execution is preserved (no changes to current code path). If the extension is present, the activities call the methods in the extension.

The new extension has methods for each of the steps that are involved in different messaging patterns. The host authors can implement those methods to implement the messaging semantics that they want to use with the existing WF4 programing model.

Feature 4: XLinq and DataAnnotations added to .NET Framework 4 Portable Class Libraries

Support for System.Xml.Linq.dll and System.ComponentModel.DataAnnotations.dll has been added to the Portable Class Library project when targeting .NET Framework 4.0.3. For more information about how to install Portable Class Library support, visit the Portable Class Library article on MSDN.

Feature 5: Support for Correlated Connection ID in SqlClient

In Microsoft SQL Server 2012, capability to correlate a connection ID between the client and the server is added. With this update SqlClient will send the connection ID information so that it can be logged on the server side. Additionally, the following capabilities are added to SqlClient to provide ways to retrieve the connection ID on the client side if it is available:
  • ConnectionId property on SqlConnection
  • ConnectionId property on SqlException
  • SqlException.ToString will include the connection ID
General information about SQL Server Extended Eventsand Accessing ClientConnectionID through SqlClient for .NET Framework.

Issues that this update resolves

Click here to view or hide detailed information


Issue 1: Cannot set the WWW-Authenticate HTTP Response header in self-hosted WCF service scenarios

If you have a self-hosted WCF service, you could not send a www-Authenticate HTTP header in the response message. This is required for many custom authentication scenarios, such as enabling OAuth. This limitation was removed.

Issue 2: Self-hosted BasicHttp service that uses https enabled fails in partial trust

If you have a self-hosted WCF service that uses BasicHttpBinding with security mode Transport and ClientCredentialType=None or Certificate, you could not run it in partial trust. The client request fails, and you receive the following exception:

System.Security.SecurityException: Request failed.
at System.Security.CodeAccessSecurityEngine.ThrowSecurityException(RuntimeAssembly asm, PermissionSet granted, PermissionSet refused, RuntimeMethodHandleInternal rmh, SecurityAction action, Object demand, IPermission permThatFailed)
This issue is resolved.

Issue 3: WCF: Identical binding extension elements in machine.config and app.config throws an exception

If identical (names and types) extension elements exist in machine.config and app.config, a ConfigurationErrorsException exception is thrown, and you receive the following error message:
System.Configuration.ConfigurationErrorsException was unhandled
Message=An extension of name 'xyz' already appears in extension collection. Extension names must be unique.
This limitation was removed.

Issue 4

Consider the following scenario:
  • You run a client application to access a Windows Communication Foundation (WCF) duplex service that uses the Microsoft .NET Framework 4.
  • The application calls the OnClose event of a channel on the WCF service.
  • This channel is then ended in another event thread.
In this scenario, the application crashes and you receive one of the following exception messages:
Exception 1
Exception: System.Runtime.CallbackException.

Message: A user callback threw an exception.
Exception 2
Inner exception: System.ObjectDisposedException.

Message: Cannot access a disposed object.

Issue 5

Consider the following scenario:
  • You have some nonstandard bindings that are defined for the following services:
    • Net.Pipe Listener
    • Net.Tcp Listener
    • Net.Tcp Port Sharing Service
    • Net.Msmq Listner Adapter
  • You install a .NET Framework 4.0 Extended Profile update
In this scenario, the Internet Information Services (IIS) configuration is changed to the default value of port 808 instead of your custom port.

Issue 6
When you try to access a hosted webpage created for .NET 4.0.1 or .NET 4.0.2 (that is, the targetFramework property is set to one of these targets), you receive an error message that resembles the following:
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: The 'targetFramework' attribute in the <compilation> element of the Web.config file is used only to target version 4.0 and later of the .NET Framework (for example, '<compilation targetFramework="4.0">'). The 'targetFramework' attribute currently references a version that is later than the installed version of the .NET Framework. Specify a valid target version of the .NET Framework, or install the required version of the .NET Framework.

Source Error:
Line 2: <configuration>
Line 3: <system.web>
Line 4: <compilation debug="false" targetFramework=".NETFramework, version=v4.0.3" />
Line 5: </system.web>Line 6: </configuration>
This issue is now resolved.

Issue 7

Consider the following scenario:
  • A process is running managed code against the Microsoft .NET Framework 4 common language runtime (CLR).
  • At the same time, an update is installed that services Microsoft .NET Framework 4 assemblies.
In this scenario, the process that is running managed code against the Microsoft .NET Framework 4 CLR may end unexpectedly. This issue occurs because of a condition in which servicing of Microsoft .NET Framework 4.0 assemblies could lead to loaded modules, in a process that is running managed code against the Microsoft .NET Framework 4.0 CLR, to enter an inconsistent state. The process ends unexpectedly.

Issue 8

AlwaysOn is the new high-availability solution that is part of SQL Server Code Named "Denali." It enables failure recovery scenarios between multiple sites without specialized hardware. We have introduced a fix that improves the failover reconnection performance in multi-site clusters that are not using a stretch VLAN.

Issue 9

Failover reconnect performance against a SQL Server Denali AlwaysOn Availability Group is not in parity with failover reconnect performance to a SQL Server 2008 R2 database by using DB Mirroring. This issue is resolved, improving the SQL Server Code Named "Denali" AlwaysOn failover reconnection performance, bringing it in parity with traditional Database Mirroring failover.

Issue 10

Consider the following scenario:
  • You host a Microsoft .NET Framework 4-based Windows Communication Foundation (WCF) service. The WCF service uses the TCP protocol.
  • Many client web applications use the WCF service.
  • The service tries to clean up some connections.
In this scenario, the WCF service may encounter the following exceptions and then crash:
  • System.Net.InternalException - An error occurred within Windows Communication Foundation. Applications should not attempt to handle.
  • System.NullReferenceExcption- Object reference not set to an instance of an object.

Issue 11:
Consider the following scenario:
  • A client application opens and closes TCP connections to a Windows Communication Foundation (WCF) service quickly.
  • The way objects are allocated to the Large Object Heap (LOH) for WCF services this may result in memory fragmentation in the generation 0 heap. This can adversely affect the performance of the WCF service.

In this scenario, the performance of the WCF service degrades.

Issue 12:
Consider the following scenario:
  • You use the .NET Framework Data Provider for SQL Server (SqlClient) to connect to an instance of Microsoft SQL Server.
  • Database mirroring is turned on.
  • The primary server is available (it has not failed over to the failover partner), but it is under load and does not respond quickly.
  • You open a new connection to the server.

In this scenario, the connection requests may time out prematurely and a SqlException exception is thrown.


Issue 13:
Consider the following scenario:
  • You use the .NET Framework Data Provider for SQL Server (SqlClient) to connect to an instance of Microsoft SQL Azure or of Microsoft SQL Server.
  • The Encryption option is turned on.
  • Connection request fails during prelogin.

In this scenario, memory leak occurs. Additionally, the GCHandle object is leaked.


Issue 14:
Consider the following scenario:
  • You use the .NET Framework Data Provider for SQL Server (SqlClient) to connect to an instance of Microsoft SQL Azure or of Microsoft SQL Server.
  • Data is retrieved by using the SqlDataReader.
  • You receive an ENV_CHANGE token from the server when the data is retrieved.

In this scenario, no result set or only a partial result set is retrieved even though there is more data available.

Issue 15:

Consider the following scenario:
  • You have a Windows 7 or Windows Server 2008 R2-based computer that is connected to a touch screen.
  • You run a Windows Presentation Foundation (WPF) application in full-screen mode.
  • You run another application in full-screen mode. This application runs at a lower screen resolution than the WPF application.
  • You exit the application, and you switch back to the running WPF application.

In this scenario, touch input is mapped incorrectly on the WPF application.


Issue 16:

With this update, we have made the System.Deployment platform check more flexible for ClickOnce applications.
For guidance about how to set the runtime version in the ClickOnce manifest, visit the following MSDN website:

Guidance on setting the runtime version in the ClickOnce manifest

Visual Studio 2010 support

To use any new feature installed by this update, install the following update, and then develop applications in Microsoft Visual Studio 2010 Service Pack 1 (SP1):
2600214 Visual Studio 2010 SP1 – Design-time Update for Microsoft .NET Framework 4.0.3


Known issues with this update

Click here to view or hide detailed information


Issue 1
Symptoms
Consider the following scenario:
  • You create a .NET 4.0.3 application and deploy it on a computer that has .NET Framework 4 and the 4.0.3 Runtime Update installed.
  • You install the Visual Studio 11 Developer Preview or .NET Framework 4.5 Developer Preview on the same computer.
  • You try to run the application.
In this scenario, you receive the following error message:
This application requires one of the following versions of the .NET Framework:

.NETFramework, Version=v4.0.3,Profile=Client

Do you want to install this .NET Framework version now?

Cause
Because .NET 4.0.3 for .NET 4 was created after Visual Studio 11 Developer Preview was released, it cannot be used together with .NET 4.5 Developer Preview.

Resolution
To resolve this issue, uninstall Visual Studio 11 Developer Preview and .NET 4.5 Developer Preview to make your applications work. Only the next major release of the .NET Framework 4.5 will support .NET 4.0.3.

Update replacement information

This update replaces following update. For more information, click the following article number to view the article in the Microsoft Knowledge Base:
  • 2478063 Update 4.0.1 for Microsoft .NET Framework 4 - Runtime Update
  • 2544514 Update 4.0.2 for Microsoft .NET Framework 4 - Runtime Update
  • 2605597 FIX: Time-out error when a mirrored database connection is created by the .NET Framework data provider for SQLClient
  • 2645081 FIX: A GCHandle leak occurs when you use the .NET Framework data provider for SQL Server to connect to SQL Azure
  • 2645084 FIX: Truncated result is returned without any error message if a connection that contains a pending transaction is disconnected by SQL Server

File information

Click here to view or hide detailed information


The global version of this update uses a Microsoft Windows Installer package to install the update. The dates and the times for these files are listed in Coordinated Universal Time (UTC) in the following table. When you view the file information, the date is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel.

For all supported x86-based versions of Windows for GDR service branch
File nameFile versionFile sizeDateTime
vbc.exe10.0.30319.2762,262,78422-Jan-201201:35
clr.dll4.0.30319.2766,727,42422-Jan-201201:34
mscordacwks.dll4.0.30319.2761,143,56822-Jan-201201:34
mscordbi.dll4.0.30319.276957,20022-Jan-201201:34
mscorlib.dll4.0.30319.2765,201,16822-Jan-201201:34
nlssorting.dll4.0.30319.27657,61622-Jan-201201:34
PresentationCore.dll4.0.30319.2763,790,11222-Jan-201201:38
PresentationFramework.dll4.0.30319.2766,429,99222-Jan-201201:38
ServiceModelReg.exe4.0.30319.276192,79222-Jan-201201:37
SOS.dll4.0.30319.276518,40022-Jan-201201:34
SqlWorkflowInstanceStoreLogic.sql51,06321-Jan-201217:27
SqlWorkflowInstanceStoreSchema.sql23,73921-Jan-201217:27
System.Activities.Core.Presentation.dll4.0.30319.276619,32822-Jan-201201:37
System.Activities.dll4.0.30319.2761,269,53622-Jan-201201:37
System.Activities.DurableInstancing.dll4.0.30319.276126,27222-Jan-201201:37
System.Activities.Presentation.dll4.0.30319.2761,559,86422-Jan-201201:37
System.IdentityModel.dll4.0.30319.276398,12022-Jan-201201:37
System.Net.dll4.0.30319.276237,84022-Jan-201201:36
System.Runtime.DurableInstancing.dll4.0.30319.276357,69622-Jan-201201:37
System.Runtime.Serialization.dll4.0.30319.2761,039,16022-Jan-201201:37
System.ServiceModel.Activities.dll4.0.30319.276537,91222-Jan-201201:37
System.ServiceModel.dll4.0.30319.2766,102,81622-Jan-201201:37
System.Data.dll4.0.30319.2763,027,21622-Jan-201201:35
System.Deployment.dll4.0.30319.276840,99222-Jan-201201:35
System.dll4.0.30319.2763,512,07222-Jan-201201:35
System.XML.dll4.0.30319.2762,208,52822-Jan-201201:36
WindowsBase.dll4.0.30319.2761,369,87222-Jan-201201:38
System.Xml.Serialization.dll4.0.30319.27612,08022-Jan-201201:37
aspnet_wp.exe4.0.30319.27633,55222-Jan-201200:12
Microsoft.Build.Tasks.v4.0.dll4.0.30319.2761,070,89622-Jan-201200:11
Microsoft.CSharp.targets13,03122-Jan-201200:04
Microsoft.VisualBasic.targets13,63022-Jan-201200:04
microsoft.build.commontypes.xsd195,80422-Jan-201200:04
PerfCounters.ini154,22222-Jan-201200:04
System.Web.Extensions.dll4.0.30319.2761,863,46422-Jan-201200:11
System.Web.dll4.0.30319.2765,230,86422-Jan-201200:12
webengine.dll4.0.30319.27615,12022-Jan-201200:12
webengine4.dll4.0.30319.276496,40022-Jan-201200:12
XamlBuildTask.dll4.0.30319.276109,33622-Jan-201200:12
mscorlib.resources.dll4.0.30319.276360,73621-Jan-201223:52
System.Data.resources.dll4.0.30319.276372,00821-Jan-201223:52
System.resources.dll4.0.30319.276257,31221-Jan-201223:52
mscorlib.resources.dll4.0.30319.276366,36821-Jan-201223:34
System.Data.resources.dll4.0.30319.276375,08021-Jan-201223:34
System.resources.dll4.0.30319.276263,45621-Jan-201223:34
mscorlib.resources.dll4.0.30319.276288,54421-Jan-201223:16
System.Data.resources.dll4.0.30319.276326,95221-Jan-201223:17
System.resources.dll4.0.30319.276199,96821-Jan-201223:17
mscorlib.resources.dll4.0.30319.276289,05621-Jan-201222:59
System.Data.resources.dll4.0.30319.276329,51221-Jan-201222:59
System.resources.dll4.0.30319.276202,52821-Jan-201222:59
mscorlib.resources.dll4.0.30319.276314,14421-Jan-201222:44
System.Data.resources.dll4.0.30319.276348,45621-Jan-201222:44
System.resources.dll4.0.30319.276225,05621-Jan-201222:44
mscorlib.resources.dll4.0.30319.276309,02421-Jan-201222:26
System.Data.resources.dll4.0.30319.276344,87221-Jan-201222:26
System.resources.dll4.0.30319.276219,93621-Jan-201222:26
mscorlib.resources.dll4.0.30319.276323,87221-Jan-201222:07
System.Data.resources.dll4.0.30319.276355,11221-Jan-201222:08
System.resources.dll4.0.30319.276231,20021-Jan-201222:08
mscorlib.resources.dll4.0.30319.276438,56021-Jan-201221:50
System.Data.resources.dll4.0.30319.276424,23221-Jan-201221:50
System.resources.dll4.0.30319.276320,80021-Jan-201221:50
mscorlib.resources.dll4.0.30319.276317,21621-Jan-201221:31
System.Data.resources.dll4.0.30319.276348,45621-Jan-201221:31
System.resources.dll4.0.30319.276228,64021-Jan-201221:31
mscorlib.resources.dll4.0.30319.276311,07221-Jan-201221:16
System.Data.resources.dll4.0.30319.276342,31221-Jan-201221:16
System.resources.dll4.0.30319.276219,93621-Jan-201221:16
mscorlib.resources.dll4.0.30319.276322,33621-Jan-201220:58
System.Data.resources.dll4.0.30319.276354,08821-Jan-201220:58
System.resources.dll4.0.30319.276233,76021-Jan-201220:58
mscorlib.resources.dll4.0.30319.276343,32821-Jan-201220:42
System.Data.resources.dll4.0.30319.276367,40021-Jan-201220:42
System.resources.dll4.0.30319.276244,00021-Jan-201220:42
mscorlib.resources.dll4.0.30319.276327,96821-Jan-201220:21
System.Data.resources.dll4.0.30319.276359,20821-Jan-201220:21
System.resources.dll4.0.30319.276236,83221-Jan-201220:21
mscorlib.resources.dll4.0.30319.276315,68021-Jan-201220:02
System.Data.resources.dll4.0.30319.276348,45621-Jan-201220:02
System.resources.dll4.0.30319.276226,08021-Jan-201220:02
mscorlib.resources.dll4.0.30319.276329,50421-Jan-201219:46
System.Data.resources.dll4.0.30319.276356,64821-Jan-201219:47
System.resources.dll4.0.30319.276236,32021-Jan-201219:47
mscorlib.resources.dll4.0.30319.276313,12021-Jan-201219:29
System.Data.resources.dll4.0.30319.276352,04021-Jan-201219:29
System.resources.dll4.0.30319.276226,59221-Jan-201219:29
mscorlib.resources.dll4.0.30319.276301,34421-Jan-201219:12
System.Data.resources.dll4.0.30319.276339,24021-Jan-201219:12
System.resources.dll4.0.30319.276213,79221-Jan-201219:12
mscorlib.resources.dll4.0.30319.276322,84821-Jan-201218:57
System.Data.resources.dll4.0.30319.276355,62421-Jan-201218:57
System.resources.dll4.0.30319.276228,64021-Jan-201218:57
mscorlib.resources.dll4.0.30319.276314,14421-Jan-201218:42
System.Data.resources.dll4.0.30319.276345,89621-Jan-201218:42
System.resources.dll4.0.30319.276227,10421-Jan-201218:42
mscorlib.resources.dll4.0.30319.276316,70421-Jan-201218:26
System.Data.resources.dll4.0.30319.276349,48021-Jan-201218:27
System.resources.dll4.0.30319.276227,61621-Jan-201218:27
mscorlib.resources.dll4.0.30319.276408,86421-Jan-201218:09
System.Data.resources.dll4.0.30319.276408,87221-Jan-201218:09
System.resources.dll4.0.30319.276292,12821-Jan-201218:09
mscorlib.resources.dll4.0.30319.276310,04821-Jan-201217:53
System.Data.resources.dll4.0.30319.276342,31221-Jan-201217:54
System.resources.dll4.0.30319.276218,40021-Jan-201217:54
mscorlib.resources.dll4.0.30319.276307,48821-Jan-201217:34
System.Data.resources.dll4.0.30319.276343,84821-Jan-201217:34
System.resources.dll4.0.30319.276219,93621-Jan-201217:34

For all supported x64-based versions of Windows for GDR service branch
File nameFile versionFile sizeDateTime
vbc.exe10.0.30319.2763,236,60822-Jan-201209:32
vbc.exe10.0.30319.2762,262,78422-Jan-201201:35
clr.dll4.0.30319.2769,793,28022-Jan-201209:31
clr.dll4.0.30319.2766,727,42422-Jan-201201:34
mscordacwks.dll4.0.30319.2761,515,79222-Jan-201209:32
mscordacwks.dll4.0.30319.2761,143,56822-Jan-201201:34
mscordbi.dll4.0.30319.2761,455,37622-Jan-201209:32
mscordbi.dll4.0.30319.276957,20022-Jan-201201:34
mscorlib.dll4.0.30319.2764,970,76822-Jan-201209:32
mscorlib.dll4.0.30319.2765,201,16822-Jan-201201:34
nlssorting.dll4.0.30319.27668,88022-Jan-201209:32
nlssorting.dll4.0.30319.27657,61622-Jan-201201:34
PresentationCore.dll4.0.30319.2763,825,95222-Jan-201209:33
PresentationCore.dll4.0.30319.2763,790,11222-Jan-201201:38
PresentationFramework.dll4.0.30319.2766,429,99222-Jan-201201:38
ServiceModelReg.exe4.0.30319.276261,91222-Jan-201209:33
ServiceModelReg.exe4.0.30319.276192,79222-Jan-201201:37
SOS.dll4.0.30319.276598,78422-Jan-201209:32
SOS.dll4.0.30319.276518,40022-Jan-201201:34
SqlWorkflowInstanceStoreLogic.sql51,06322-Jan-201202:37
SqlWorkflowInstanceStoreLogic.sql51,06321-Jan-201217:27
SqlWorkflowInstanceStoreSchema.sql23,73922-Jan-201202:37
SqlWorkflowInstanceStoreSchema.sql23,73921-Jan-201217:27
System.Activities.Core.Presentation.dll4.0.30319.276619,32822-Jan-201201:37
System.Activities.dll4.0.30319.2761,269,53622-Jan-201201:37
System.Activities.DurableInstancing.dll4.0.30319.276126,27222-Jan-201201:37
System.Activities.Presentation.dll4.0.30319.2761,559,86422-Jan-201201:37
System.IdentityModel.dll4.0.30319.276398,12022-Jan-201201:37
System.Net.dll4.0.30319.276237,84022-Jan-201201:36
System.Runtime.DurableInstancing.dll4.0.30319.276357,69622-Jan-201201:37
System.Runtime.Serialization.dll4.0.30319.2761,039,16022-Jan-201201:37
System.ServiceModel.Activities.dll4.0.30319.276537,91222-Jan-201201:37
System.ServiceModel.dll4.0.30319.2766,102,81622-Jan-201201:37
System.Data.dll4.0.30319.2763,174,16022-Jan-201209:33
System.Data.dll4.0.30319.2763,027,21622-Jan-201201:35
System.Deployment.dll4.0.30319.276840,99222-Jan-201201:35
System.dll4.0.30319.2763,512,07222-Jan-201201:35
System.XML.dll4.0.30319.2762,208,52822-Jan-201201:36
WindowsBase.dll4.0.30319.2761,369,87222-Jan-201201:38
System.Xml.Serialization.dll4.0.30319.27612,08022-Jan-201201:37
aspnet_wp.exe4.0.30319.27641,74422-Jan-201209:12
aspnet_wp.exe4.0.30319.27633,55222-Jan-201200:12
Microsoft.Build.Tasks.v4.0.dll4.0.30319.2761,070,89622-Jan-201200:11
Microsoft.CSharp.targets13,03122-Jan-201200:04
Microsoft.VisualBasic.targets13,63022-Jan-201200:04
microsoft.build.commontypes.xsd195,80422-Jan-201209:08
microsoft.build.commontypes.xsd195,80422-Jan-201200:04
PerfCounters.ini154,22222-Jan-201200:04
System.Web.Extensions.dll4.0.30319.2761,863,46422-Jan-201200:11
System.Web.dll4.0.30319.2765,200,65622-Jan-201209:12
System.Web.dll4.0.30319.2765,230,86422-Jan-201200:12
webengine.dll4.0.30319.27616,65622-Jan-201209:12
webengine.dll4.0.30319.27615,12022-Jan-201200:12
webengine4.dll4.0.30319.276721,68022-Jan-201209:12
webengine4.dll4.0.30319.276496,40022-Jan-201200:12
XamlBuildTask.dll4.0.30319.276109,33622-Jan-201200:12
mscorlib.resources.dll4.0.30319.276360,73622-Jan-201208:54
mscorlib.resources.dll4.0.30319.276360,73621-Jan-201223:52
System.Data.resources.dll4.0.30319.276372,00822-Jan-201208:55
System.Data.resources.dll4.0.30319.276372,00821-Jan-201223:52
System.resources.dll4.0.30319.276257,31221-Jan-201223:52
mscorlib.resources.dll4.0.30319.276366,36822-Jan-201208:37
mscorlib.resources.dll4.0.30319.276366,36821-Jan-201223:34
System.Data.resources.dll4.0.30319.276375,08022-Jan-201208:38
System.Data.resources.dll4.0.30319.276375,08021-Jan-201223:34
System.resources.dll4.0.30319.276263,45621-Jan-201223:34
mscorlib.resources.dll4.0.30319.276288,54422-Jan-201208:18
mscorlib.resources.dll4.0.30319.276288,54421-Jan-201223:16
System.Data.resources.dll4.0.30319.276326,95222-Jan-201208:19
System.Data.resources.dll4.0.30319.276326,95221-Jan-201223:17
System.resources.dll4.0.30319.276199,96821-Jan-201223:17
mscorlib.resources.dll4.0.30319.276289,05622-Jan-201208:02
mscorlib.resources.dll4.0.30319.276289,05621-Jan-201222:59
System.Data.resources.dll4.0.30319.276329,51222-Jan-201208:02
System.Data.resources.dll4.0.30319.276329,51221-Jan-201222:59
System.resources.dll4.0.30319.276202,52821-Jan-201222:59
mscorlib.resources.dll4.0.30319.276314,14422-Jan-201207:47
mscorlib.resources.dll4.0.30319.276314,14421-Jan-201222:44
System.Data.resources.dll4.0.30319.276348,45622-Jan-201207:47
System.Data.resources.dll4.0.30319.276348,45621-Jan-201222:44
System.resources.dll4.0.30319.276225,05621-Jan-201222:44
mscorlib.resources.dll4.0.30319.276309,02422-Jan-201207:30
mscorlib.resources.dll4.0.30319.276309,02421-Jan-201222:26
System.Data.resources.dll4.0.30319.276344,87222-Jan-201207:30
System.Data.resources.dll4.0.30319.276344,87221-Jan-201222:26
System.resources.dll4.0.30319.276219,93621-Jan-201222:26
mscorlib.resources.dll4.0.30319.276323,87222-Jan-201207:14
mscorlib.resources.dll4.0.30319.276323,87221-Jan-201222:07
System.Data.resources.dll4.0.30319.276355,11222-Jan-201207:14
System.Data.resources.dll4.0.30319.276355,11221-Jan-201222:08
System.resources.dll4.0.30319.276231,20021-Jan-201222:08
mscorlib.resources.dll4.0.30319.276438,56022-Jan-201206:56
mscorlib.resources.dll4.0.30319.276438,56021-Jan-201221:50
System.Data.resources.dll4.0.30319.276424,23222-Jan-201206:56
System.Data.resources.dll4.0.30319.276424,23221-Jan-201221:50
System.resources.dll4.0.30319.276320,80021-Jan-201221:50
mscorlib.resources.dll4.0.30319.276317,21622-Jan-201206:39
mscorlib.resources.dll4.0.30319.276317,21621-Jan-201221:31
System.Data.resources.dll4.0.30319.276348,45622-Jan-201206:40
System.Data.resources.dll4.0.30319.276348,45621-Jan-201221:31
System.resources.dll4.0.30319.276228,64021-Jan-201221:31
mscorlib.resources.dll4.0.30319.276311,07222-Jan-201206:24
mscorlib.resources.dll4.0.30319.276311,07221-Jan-201221:16
System.Data.resources.dll4.0.30319.276342,31222-Jan-201206:24
System.Data.resources.dll4.0.30319.276342,31221-Jan-201221:16
System.resources.dll4.0.30319.276219,93621-Jan-201221:16
mscorlib.resources.dll4.0.30319.276322,33622-Jan-201206:06
mscorlib.resources.dll4.0.30319.276322,33621-Jan-201220:58
System.Data.resources.dll4.0.30319.276354,08822-Jan-201206:06
System.Data.resources.dll4.0.30319.276354,08821-Jan-201220:58
System.resources.dll4.0.30319.276233,76021-Jan-201220:58
mscorlib.resources.dll4.0.30319.276343,32822-Jan-201205:51
mscorlib.resources.dll4.0.30319.276343,32821-Jan-201220:42
System.Data.resources.dll4.0.30319.276367,40022-Jan-201205:51
System.Data.resources.dll4.0.30319.276367,40021-Jan-201220:42
System.resources.dll4.0.30319.276244,00021-Jan-201220:42
mscorlib.resources.dll4.0.30319.276327,96822-Jan-201205:34
mscorlib.resources.dll4.0.30319.276327,96821-Jan-201220:21
System.Data.resources.dll4.0.30319.276359,20822-Jan-201205:34
System.Data.resources.dll4.0.30319.276359,20821-Jan-201220:21
System.resources.dll4.0.30319.276236,83221-Jan-201220:21
mscorlib.resources.dll4.0.30319.276315,68022-Jan-201205:19
mscorlib.resources.dll4.0.30319.276315,68021-Jan-201220:02
System.Data.resources.dll4.0.30319.276348,45622-Jan-201205:19
System.Data.resources.dll4.0.30319.276348,45621-Jan-201220:02
System.resources.dll4.0.30319.276226,08021-Jan-201220:02
mscorlib.resources.dll4.0.30319.276329,50422-Jan-201205:02
mscorlib.resources.dll4.0.30319.276329,50421-Jan-201219:46
System.Data.resources.dll4.0.30319.276356,64822-Jan-201205:02
System.Data.resources.dll4.0.30319.276356,64821-Jan-201219:47
System.resources.dll4.0.30319.276236,32021-Jan-201219:47
mscorlib.resources.dll4.0.30319.276313,12022-Jan-201204:47
mscorlib.resources.dll4.0.30319.276313,12021-Jan-201219:29
System.Data.resources.dll4.0.30319.276352,04022-Jan-201204:47
System.Data.resources.dll4.0.30319.276352,04021-Jan-201219:29
System.resources.dll4.0.30319.276226,59221-Jan-201219:29
mscorlib.resources.dll4.0.30319.276301,34422-Jan-201204:32
mscorlib.resources.dll4.0.30319.276301,34421-Jan-201219:12
System.Data.resources.dll4.0.30319.276339,24022-Jan-201204:32
System.Data.resources.dll4.0.30319.276339,24021-Jan-201219:12
System.resources.dll4.0.30319.276213,79221-Jan-201219:12
mscorlib.resources.dll4.0.30319.276322,84822-Jan-201204:15
mscorlib.resources.dll4.0.30319.276322,84821-Jan-201218:57
System.Data.resources.dll4.0.30319.276355,62422-Jan-201204:15
System.Data.resources.dll4.0.30319.276355,62421-Jan-201218:57
System.resources.dll4.0.30319.276228,64021-Jan-201218:57
mscorlib.resources.dll4.0.30319.276314,14422-Jan-201204:00
mscorlib.resources.dll4.0.30319.276314,14421-Jan-201218:42
System.Data.resources.dll4.0.30319.276345,89622-Jan-201204:00
System.Data.resources.dll4.0.30319.276345,89621-Jan-201218:42
System.resources.dll4.0.30319.276227,10421-Jan-201218:42
mscorlib.resources.dll4.0.30319.276316,70422-Jan-201203:42
mscorlib.resources.dll4.0.30319.276316,70421-Jan-201218:26
System.Data.resources.dll4.0.30319.276349,48022-Jan-201203:43
System.Data.resources.dll4.0.30319.276349,48021-Jan-201218:27
System.resources.dll4.0.30319.276227,61621-Jan-201218:27
mscorlib.resources.dll4.0.30319.276408,86422-Jan-201203:27
mscorlib.resources.dll4.0.30319.276408,86421-Jan-201218:09
System.Data.resources.dll4.0.30319.276408,87222-Jan-201203:27
System.Data.resources.dll4.0.30319.276408,87221-Jan-201218:09
System.resources.dll4.0.30319.276292,12821-Jan-201218:09
mscorlib.resources.dll4.0.30319.276310,04822-Jan-201203:06
mscorlib.resources.dll4.0.30319.276310,04821-Jan-201217:53
System.Data.resources.dll4.0.30319.276342,31222-Jan-201203:06
System.Data.resources.dll4.0.30319.276342,31221-Jan-201217:54
System.resources.dll4.0.30319.276218,40021-Jan-201217:54
mscorlib.resources.dll4.0.30319.276307,48822-Jan-201202:43
mscorlib.resources.dll4.0.30319.276307,48821-Jan-201217:34
System.Data.resources.dll4.0.30319.276343,84822-Jan-201202:43
System.Data.resources.dll4.0.30319.276343,84821-Jan-201217:34
System.resources.dll4.0.30319.276219,93621-Jan-201217:34
For all supported IA-64based versions of Windows for GDR service branch
File nameFile versionFile sizeDateTime
vbc.exe10.0.30319.2766,429,44022-Jan-201216:55
vbc.exe10.0.30319.2762,262,78422-Jan-201201:35
clr.dll4.0.30319.27619,368,70422-Jan-201216:54
clr.dll4.0.30319.2766,727,42422-Jan-201201:34
mscordacwks.dll4.0.30319.2763,759,88822-Jan-201216:54
mscordacwks.dll4.0.30319.2761,143,56822-Jan-201201:34
mscordbi.dll4.0.30319.2763,296,52822-Jan-201216:54
mscordbi.dll4.0.30319.276957,20022-Jan-201201:34
mscorlib.dll4.0.30319.2764,469,00822-Jan-201216:54
mscorlib.dll4.0.30319.2765,201,16822-Jan-201201:34
nlssorting.dll4.0.30319.276145,16822-Jan-201216:55
nlssorting.dll4.0.30319.27657,61622-Jan-201201:34
PresentationCore.dll4.0.30319.2763,790,11222-Jan-201201:38
PresentationFramework.dll4.0.30319.2766,429,99222-Jan-201201:38
ServiceModelReg.exe4.0.30319.276545,56022-Jan-201216:56
ServiceModelReg.exe4.0.30319.276192,79222-Jan-201201:37
SOS.dll4.0.30319.2761,204,48022-Jan-201216:55
SOS.dll4.0.30319.276518,40022-Jan-201201:34
SqlWorkflowInstanceStoreLogic.sql51,06322-Jan-201210:34
SqlWorkflowInstanceStoreLogic.sql51,06321-Jan-201217:27
SqlWorkflowInstanceStoreSchema.sql23,73922-Jan-201210:34
SqlWorkflowInstanceStoreSchema.sql23,73921-Jan-201217:27
System.Activities.Core.Presentation.dll4.0.30319.276619,32822-Jan-201201:37
System.Activities.dll4.0.30319.2761,269,53622-Jan-201201:37
System.Activities.DurableInstancing.dll4.0.30319.276126,27222-Jan-201201:37
System.Activities.Presentation.dll4.0.30319.2761,559,86422-Jan-201201:37
System.IdentityModel.dll4.0.30319.276398,12022-Jan-201201:37
System.Net.dll4.0.30319.276237,84022-Jan-201201:36
System.Runtime.DurableInstancing.dll4.0.30319.276357,69622-Jan-201201:37
System.Runtime.Serialization.dll4.0.30319.2761,039,16022-Jan-201201:37
System.ServiceModel.Activities.dll4.0.30319.276537,91222-Jan-201201:37
System.ServiceModel.dll4.0.30319.2766,102,81622-Jan-201201:37
System.Data.dll4.0.30319.2763,365,64822-Jan-201216:55
System.Data.dll4.0.30319.2763,027,21622-Jan-201201:35
System.Deployment.dll4.0.30319.276840,99222-Jan-201201:35
System.dll4.0.30319.2763,512,07222-Jan-201201:35
System.XML.dll4.0.30319.2762,208,52822-Jan-201201:36
WindowsBase.dll4.0.30319.2761,369,87222-Jan-201201:38
System.Xml.Serialization.dll4.0.30319.27612,08022-Jan-201201:37
aspnet_wp.exe4.0.30319.27681,16822-Jan-201216:37
aspnet_wp.exe4.0.30319.27633,55222-Jan-201200:12
Microsoft.Build.Tasks.v4.0.dll4.0.30319.2761,070,89622-Jan-201200:11
Microsoft.CSharp.targets13,03122-Jan-201200:04
Microsoft.VisualBasic.targets13,63022-Jan-201200:04
microsoft.build.commontypes.xsd195,80422-Jan-201216:33
microsoft.build.commontypes.xsd195,80422-Jan-201200:04
PerfCounters.ini154,22222-Jan-201200:04
System.Web.Extensions.dll4.0.30319.2761,863,46422-Jan-201200:11
System.Web.dll4.0.30319.2764,819,72822-Jan-201216:37
System.Web.dll4.0.30319.2765,230,86422-Jan-201200:12
webengine.dll4.0.30319.27626,38422-Jan-201216:37
webengine.dll4.0.30319.27615,12022-Jan-201200:12
webengine4.dll4.0.30319.2761,341,71222-Jan-201216:37
webengine4.dll4.0.30319.276496,40022-Jan-201200:12
XamlBuildTask.dll4.0.30319.276109,33622-Jan-201200:12
mscorlib.resources.dll4.0.30319.276360,73622-Jan-201216:24
mscorlib.resources.dll4.0.30319.276360,73621-Jan-201223:52
System.Data.resources.dll4.0.30319.276372,00822-Jan-201216:24
System.Data.resources.dll4.0.30319.276372,00821-Jan-201223:52
System.resources.dll4.0.30319.276257,31221-Jan-201223:52
mscorlib.resources.dll4.0.30319.276366,36822-Jan-201216:10
mscorlib.resources.dll4.0.30319.276366,36821-Jan-201223:34
System.Data.resources.dll4.0.30319.276375,08022-Jan-201216:10
System.Data.resources.dll4.0.30319.276375,08021-Jan-201223:34
System.resources.dll4.0.30319.276263,45621-Jan-201223:34
mscorlib.resources.dll4.0.30319.276288,54422-Jan-201215:51
mscorlib.resources.dll4.0.30319.276288,54421-Jan-201223:16
System.Data.resources.dll4.0.30319.276326,95222-Jan-201215:51
System.Data.resources.dll4.0.30319.276326,95221-Jan-201223:17
System.resources.dll4.0.30319.276199,96821-Jan-201223:17
mscorlib.resources.dll4.0.30319.276289,05622-Jan-201215:35
mscorlib.resources.dll4.0.30319.276289,05621-Jan-201222:59
System.Data.resources.dll4.0.30319.276329,51222-Jan-201215:35
System.Data.resources.dll4.0.30319.276329,51221-Jan-201222:59
System.resources.dll4.0.30319.276202,52821-Jan-201222:59
mscorlib.resources.dll4.0.30319.276314,14422-Jan-201215:21
mscorlib.resources.dll4.0.30319.276314,14421-Jan-201222:44
System.Data.resources.dll4.0.30319.276348,45622-Jan-201215:21
System.Data.resources.dll4.0.30319.276348,45621-Jan-201222:44
System.resources.dll4.0.30319.276225,05621-Jan-201222:44
mscorlib.resources.dll4.0.30319.276309,02422-Jan-201215:04
mscorlib.resources.dll4.0.30319.276309,02421-Jan-201222:26
System.Data.resources.dll4.0.30319.276344,87222-Jan-201215:04
System.Data.resources.dll4.0.30319.276344,87221-Jan-201222:26
System.resources.dll4.0.30319.276219,93621-Jan-201222:26
mscorlib.resources.dll4.0.30319.276323,87222-Jan-201214:49
mscorlib.resources.dll4.0.30319.276323,87221-Jan-201222:07
System.Data.resources.dll4.0.30319.276355,11222-Jan-201214:49
System.Data.resources.dll4.0.30319.276355,11221-Jan-201222:08
System.resources.dll4.0.30319.276231,20021-Jan-201222:08
mscorlib.resources.dll4.0.30319.276438,56022-Jan-201214:35
mscorlib.resources.dll4.0.30319.276438,56021-Jan-201221:50
System.Data.resources.dll4.0.30319.276424,23222-Jan-201214:35
System.Data.resources.dll4.0.30319.276424,23221-Jan-201221:50
System.resources.dll4.0.30319.276320,80021-Jan-201221:50
mscorlib.resources.dll4.0.30319.276317,21622-Jan-201214:18
mscorlib.resources.dll4.0.30319.276317,21621-Jan-201221:31
System.Data.resources.dll4.0.30319.276348,45622-Jan-201214:18
System.Data.resources.dll4.0.30319.276348,45621-Jan-201221:31
System.resources.dll4.0.30319.276228,64021-Jan-201221:31
mscorlib.resources.dll4.0.30319.276311,07222-Jan-201214:04
mscorlib.resources.dll4.0.30319.276311,07221-Jan-201221:16
System.Data.resources.dll4.0.30319.276342,31222-Jan-201214:04
System.Data.resources.dll4.0.30319.276342,31221-Jan-201221:16
System.resources.dll4.0.30319.276219,93621-Jan-201221:16
mscorlib.resources.dll4.0.30319.276322,33622-Jan-201213:50
mscorlib.resources.dll4.0.30319.276322,33621-Jan-201220:58
System.Data.resources.dll4.0.30319.276354,08822-Jan-201213:50
System.Data.resources.dll4.0.30319.276354,08821-Jan-201220:58
System.resources.dll4.0.30319.276233,76021-Jan-201220:58
mscorlib.resources.dll4.0.30319.276343,32822-Jan-201213:36
mscorlib.resources.dll4.0.30319.276343,32821-Jan-201220:42
System.Data.resources.dll4.0.30319.276367,40022-Jan-201213:36
System.Data.resources.dll4.0.30319.276367,40021-Jan-201220:42
System.resources.dll4.0.30319.276244,00021-Jan-201220:42
mscorlib.resources.dll4.0.30319.276327,96822-Jan-201213:19
mscorlib.resources.dll4.0.30319.276327,96821-Jan-201220:21
System.Data.resources.dll4.0.30319.276359,20822-Jan-201213:20
System.Data.resources.dll4.0.30319.276359,20821-Jan-201220:21
System.resources.dll4.0.30319.276236,83221-Jan-201220:21
mscorlib.resources.dll4.0.30319.276315,68022-Jan-201213:05
mscorlib.resources.dll4.0.30319.276315,68021-Jan-201220:02
System.Data.resources.dll4.0.30319.276348,45622-Jan-201213:05
System.Data.resources.dll4.0.30319.276348,45621-Jan-201220:02
System.resources.dll4.0.30319.276226,08021-Jan-201220:02
mscorlib.resources.dll4.0.30319.276329,50422-Jan-201212:49
mscorlib.resources.dll4.0.30319.276329,50421-Jan-201219:46
System.Data.resources.dll4.0.30319.276356,64822-Jan-201212:49
System.Data.resources.dll4.0.30319.276356,64821-Jan-201219:47
System.resources.dll4.0.30319.276236,32021-Jan-201219:47
mscorlib.resources.dll4.0.30319.276313,12022-Jan-201212:35
mscorlib.resources.dll4.0.30319.276313,12021-Jan-201219:29
System.Data.resources.dll4.0.30319.276352,04022-Jan-201212:35
System.Data.resources.dll4.0.30319.276352,04021-Jan-201219:29
System.resources.dll4.0.30319.276226,59221-Jan-201219:29
mscorlib.resources.dll4.0.30319.276301,34422-Jan-201212:19
mscorlib.resources.dll4.0.30319.276301,34421-Jan-201219:12
System.Data.resources.dll4.0.30319.276339,24022-Jan-201212:19
System.Data.resources.dll4.0.30319.276339,24021-Jan-201219:12
System.resources.dll4.0.30319.276213,79221-Jan-201219:12
mscorlib.resources.dll4.0.30319.276322,84822-Jan-201212:02
mscorlib.resources.dll4.0.30319.276322,84821-Jan-201218:57
System.Data.resources.dll4.0.30319.276355,62422-Jan-201212:02
System.Data.resources.dll4.0.30319.276355,62421-Jan-201218:57
System.resources.dll4.0.30319.276228,64021-Jan-201218:57
mscorlib.resources.dll4.0.30319.276314,14422-Jan-201211:46
mscorlib.resources.dll4.0.30319.276314,14421-Jan-201218:42
System.Data.resources.dll4.0.30319.276345,89622-Jan-201211:46
System.Data.resources.dll4.0.30319.276345,89621-Jan-201218:42
System.resources.dll4.0.30319.276227,10421-Jan-201218:42
mscorlib.resources.dll4.0.30319.276316,70422-Jan-201211:30
mscorlib.resources.dll4.0.30319.276316,70421-Jan-201218:26
System.Data.resources.dll4.0.30319.276349,48022-Jan-201211:30
System.Data.resources.dll4.0.30319.276349,48021-Jan-201218:27
System.resources.dll4.0.30319.276227,61621-Jan-201218:27
mscorlib.resources.dll4.0.30319.276408,86422-Jan-201211:16
mscorlib.resources.dll4.0.30319.276408,86421-Jan-201218:09
System.Data.resources.dll4.0.30319.276408,87222-Jan-201211:16
System.Data.resources.dll4.0.30319.276408,87221-Jan-201218:09
System.resources.dll4.0.30319.276292,12821-Jan-201218:09
mscorlib.resources.dll4.0.30319.276310,04822-Jan-201210:57
mscorlib.resources.dll4.0.30319.276310,04821-Jan-201217:53
System.Data.resources.dll4.0.30319.276342,31222-Jan-201210:58
System.Data.resources.dll4.0.30319.276342,31221-Jan-201217:54
System.resources.dll4.0.30319.276218,40021-Jan-201217:54
mscorlib.resources.dll4.0.30319.276307,48822-Jan-201210:39
mscorlib.resources.dll4.0.30319.276307,48821-Jan-201217:34
System.Data.resources.dll4.0.30319.276343,84822-Jan-201210:39
System.Data.resources.dll4.0.30319.276343,84821-Jan-201217:34
System.resources.dll4.0.30319.276219,93621-Jan-201217:34


For all supported x86-based versions of Windows for LDR service branch
File nameFile versionFile sizeDateTime
vbc.exe10.0.30319.5512,262,27220-Jan-201222:37
clr.dll4.0.30319.5516,727,42420-Jan-201222:37
mscordacwks.dll4.0.30319.5511,143,56820-Jan-201222:37
mscordbi.dll4.0.30319.551956,68820-Jan-201222:37
mscorlib.dll4.0.30319.5515,202,19220-Jan-201222:37
nlssorting.dll4.0.30319.55157,10420-Jan-201222:37
PresentationCore.dll4.0.30319.5513,792,16020-Jan-201222:41
PresentationFramework.dll4.0.30319.5516,432,55220-Jan-201222:41
ServiceModelReg.exe4.0.30319.551192,79220-Jan-201222:39
Setup.exe10.0.30319.55179,11220-Jan-201215:10
SetupEngine.dll10.0.30319.551810,76820-Jan-201215:10
SetupUi.dll10.0.30319.551296,71220-Jan-201215:10
SOS.dll4.0.30319.551517,88820-Jan-201222:37
SqlWorkflowInstanceStoreLogic.sql51,06320-Jan-201215:02
SqlWorkflowInstanceStoreSchema.sql23,73920-Jan-201215:02
System.Activities.Core.Presentation.dll4.0.30319.551619,32820-Jan-201222:40
System.Activities.dll4.0.30319.5511,272,60820-Jan-201222:40
System.Activities.DurableInstancing.dll4.0.30319.551126,27220-Jan-201222:40
System.Activities.Presentation.dll4.0.30319.5511,559,86420-Jan-201222:40
System.IdentityModel.dll4.0.30319.551398,63220-Jan-201222:40
System.Net.dll4.0.30319.551237,84020-Jan-201222:39
System.Runtime.DurableInstancing.dll4.0.30319.551357,69620-Jan-201222:40
System.Runtime.Serialization.dll4.0.30319.5511,039,16020-Jan-201222:40
System.ServiceModel.Activities.dll4.0.30319.551537,91220-Jan-201222:40
System.ServiceModel.dll4.0.30319.5516,115,61620-Jan-201222:40
System.Data.dll4.0.30319.5513,027,72820-Jan-201222:38
System.Data.SqlXml.dll4.0.30319.551752,92820-Jan-201222:38
System.Deployment.dll4.0.30319.551840,99220-Jan-201222:38
System.dll4.0.30319.5513,512,58420-Jan-201222:38
System.XML.dll4.0.30319.5512,208,52820-Jan-201222:39
WindowsBase.dll4.0.30319.5511,372,43220-Jan-201222:41
System.Xml.Serialization.dll4.0.30319.55112,08020-Jan-201222:40
aspnet_wp.exe4.0.30319.55133,55220-Jan-201222:08
Microsoft.Build.Tasks.v4.0.dll4.0.30319.5511,070,89620-Jan-201222:08
Microsoft.CSharp.targets13,03120-Jan-201222:02
Microsoft.VisualBasic.targets13,63020-Jan-201222:02
microsoft.build.commontypes.xsd195,80420-Jan-201222:02
PerfCounters.ini154,22220-Jan-201222:03
System.Web.Extensions.dll4.0.30319.5511,863,97620-Jan-201222:07
System.Web.dll4.0.30319.5515,231,88820-Jan-201222:08
webengine.dll4.0.30319.55115,12020-Jan-201222:08
webengine4.dll4.0.30319.551496,40020-Jan-201222:08
XamlBuildTask.dll4.0.30319.551109,33620-Jan-201222:08
mscorlib.resources.dll4.0.30319.551360,73620-Jan-201221:51
System.Data.resources.dll4.0.30319.551372,00820-Jan-201221:51
system.data.sqlxml.resources.dll4.0.30319.55140,24820-Jan-201221:51
System.resources.dll4.0.30319.551257,31220-Jan-201221:51
System.RunTime.Serialization.resources.dll4.0.30319.551119,62420-Jan-201221:51
System.xml.resources.dll4.0.30319.551180,52020-Jan-201221:51
mscorlib.resources.dll4.0.30319.551366,36820-Jan-201221:36
System.Data.resources.dll4.0.30319.551375,08020-Jan-201221:37
system.data.sqlxml.resources.dll4.0.30319.55139,73620-Jan-201221:37
System.resources.dll4.0.30319.551263,45620-Jan-201221:37
System.RunTime.Serialization.resources.dll4.0.30319.551120,13620-Jan-201221:36
System.xml.resources.dll4.0.30319.551182,05620-Jan-201221:37
mscorlib.resources.dll4.0.30319.551288,54420-Jan-201221:19
System.Data.resources.dll4.0.30319.551326,95220-Jan-201221:20
system.data.sqlxml.resources.dll4.0.30319.55133,08020-Jan-201221:20
System.resources.dll4.0.30319.551199,96820-Jan-201221:20
System.RunTime.Serialization.resources.dll4.0.30319.55194,53620-Jan-201221:19
System.xml.resources.dll4.0.30319.551142,12020-Jan-201221:20
mscorlib.resources.dll4.0.30319.551289,05620-Jan-201221:04
System.Data.resources.dll4.0.30319.551329,51220-Jan-201221:05
system.data.sqlxml.resources.dll4.0.30319.55132,56820-Jan-201221:05
System.resources.dll4.0.30319.551202,52820-Jan-201221:05
System.RunTime.Serialization.resources.dll4.0.30319.55193,51220-Jan-201221:04
System.xml.resources.dll4.0.30319.551142,63220-Jan-201221:05
mscorlib.resources.dll4.0.30319.551314,14420-Jan-201220:44
System.Data.resources.dll4.0.30319.551348,45620-Jan-201220:44
system.data.sqlxml.resources.dll4.0.30319.55134,10420-Jan-201220:44
System.resources.dll4.0.30319.551225,05620-Jan-201220:44
System.RunTime.Serialization.resources.dll4.0.30319.551100,16820-Jan-201220:44
System.xml.resources.dll4.0.30319.551155,43220-Jan-201220:44
mscorlib.resources.dll4.0.30319.551309,02420-Jan-201220:25
System.Data.resources.dll4.0.30319.551344,87220-Jan-201220:25
system.data.sqlxml.resources.dll4.0.30319.55135,12820-Jan-201220:25
System.resources.dll4.0.30319.551219,93620-Jan-201220:25
System.RunTime.Serialization.resources.dll4.0.30319.551101,19220-Jan-201220:24
System.xml.resources.dll4.0.30319.551153,89620-Jan-201220:25
mscorlib.resources.dll4.0.30319.551323,87220-Jan-201220:07
System.Data.resources.dll4.0.30319.551355,11220-Jan-201220:07
system.data.sqlxml.resources.dll4.0.30319.55136,66420-Jan-201220:07
System.resources.dll4.0.30319.551231,20020-Jan-201220:07
System.RunTime.Serialization.resources.dll4.0.30319.551108,36020-Jan-201220:07
System.xml.resources.dll4.0.30319.551162,60020-Jan-201220:07
mscorlib.resources.dll4.0.30319.551438,56020-Jan-201219:46
System.Data.resources.dll4.0.30319.551424,23220-Jan-201219:46
system.data.sqlxml.resources.dll4.0.30319.55147,41620-Jan-201219:46
System.resources.dll4.0.30319.551320,80020-Jan-201219:46
System.RunTime.Serialization.resources.dll4.0.30319.551150,34420-Jan-201219:45
System.xml.resources.dll4.0.30319.551227,62420-Jan-201219:46
mscorlib.resources.dll4.0.30319.551317,21620-Jan-201219:26
System.Data.resources.dll4.0.30319.551348,45620-Jan-201219:27
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201219:27
System.resources.dll4.0.30319.551228,64020-Jan-201219:27
System.RunTime.Serialization.resources.dll4.0.30319.551105,28820-Jan-201219:26
System.xml.resources.dll4.0.30319.551159,01620-Jan-201219:27
mscorlib.resources.dll4.0.30319.551311,07220-Jan-201219:05
System.Data.resources.dll4.0.30319.551342,31220-Jan-201219:05
system.data.sqlxml.resources.dll4.0.30319.55134,10420-Jan-201219:05
System.resources.dll4.0.30319.551219,93620-Jan-201219:05
System.RunTime.Serialization.resources.dll4.0.30319.551100,16820-Jan-201219:05
System.xml.resources.dll4.0.30319.551152,36020-Jan-201219:05
mscorlib.resources.dll4.0.30319.551322,33620-Jan-201218:47
System.Data.resources.dll4.0.30319.551354,08820-Jan-201218:48
system.data.sqlxml.resources.dll4.0.30319.55136,15220-Jan-201218:48
System.resources.dll4.0.30319.551233,76020-Jan-201218:48
System.RunTime.Serialization.resources.dll4.0.30319.551108,36020-Jan-201218:47
System.xml.resources.dll4.0.30319.551163,62420-Jan-201218:48
mscorlib.resources.dll4.0.30319.551343,32820-Jan-201218:28
System.Data.resources.dll4.0.30319.551367,40020-Jan-201218:29
system.data.sqlxml.resources.dll4.0.30319.55139,22420-Jan-201218:29
System.resources.dll4.0.30319.551244,00020-Jan-201218:28
System.RunTime.Serialization.resources.dll4.0.30319.551119,11220-Jan-201218:28
System.xml.resources.dll4.0.30319.551174,88820-Jan-201218:29
mscorlib.resources.dll4.0.30319.551327,96820-Jan-201218:14
System.Data.resources.dll4.0.30319.551359,20820-Jan-201218:14
system.data.sqlxml.resources.dll4.0.30319.55137,17620-Jan-201218:14
System.resources.dll4.0.30319.551236,83220-Jan-201218:14
System.RunTime.Serialization.resources.dll4.0.30319.551109,38420-Jan-201218:13
System.xml.resources.dll4.0.30319.551167,72020-Jan-201218:14
mscorlib.resources.dll4.0.30319.551315,68020-Jan-201217:55
System.Data.resources.dll4.0.30319.551348,45620-Jan-201217:55
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201217:55
System.resources.dll4.0.30319.551226,08020-Jan-201217:55
System.RunTime.Serialization.resources.dll4.0.30319.551103,75220-Jan-201217:55
System.xml.resources.dll4.0.30319.551159,01620-Jan-201217:55
mscorlib.resources.dll4.0.30319.551329,50420-Jan-201217:36
System.Data.resources.dll4.0.30319.551356,64820-Jan-201217:36
system.data.sqlxml.resources.dll4.0.30319.55137,17620-Jan-201217:36
System.resources.dll4.0.30319.551236,32020-Jan-201217:36
System.RunTime.Serialization.resources.dll4.0.30319.551109,89620-Jan-201217:35
System.xml.resources.dll4.0.30319.551167,72020-Jan-201217:36
mscorlib.resources.dll4.0.30319.551313,12020-Jan-201217:19
System.Data.resources.dll4.0.30319.551352,04020-Jan-201217:19
system.data.sqlxml.resources.dll4.0.30319.55135,12820-Jan-201217:19
System.resources.dll4.0.30319.551226,59220-Jan-201217:19
System.RunTime.Serialization.resources.dll4.0.30319.551102,72820-Jan-201217:19
System.xml.resources.dll4.0.30319.551158,50420-Jan-201217:19
mscorlib.resources.dll4.0.30319.551301,34420-Jan-201217:04
System.Data.resources.dll4.0.30319.551339,24020-Jan-201217:04
system.data.sqlxml.resources.dll4.0.30319.55134,10420-Jan-201217:04
System.resources.dll4.0.30319.551213,79220-Jan-201217:04
System.RunTime.Serialization.resources.dll4.0.30319.55197,60820-Jan-201217:04
System.xml.resources.dll4.0.30319.551150,31220-Jan-201217:05
mscorlib.resources.dll4.0.30319.551322,84820-Jan-201216:47
System.Data.resources.dll4.0.30319.551355,62420-Jan-201216:47
system.data.sqlxml.resources.dll4.0.30319.55136,15220-Jan-201216:47
System.resources.dll4.0.30319.551228,64020-Jan-201216:47
System.RunTime.Serialization.resources.dll4.0.30319.551109,38420-Jan-201216:46
System.xml.resources.dll4.0.30319.551166,18420-Jan-201216:47
mscorlib.resources.dll4.0.30319.551314,14420-Jan-201216:27
System.Data.resources.dll4.0.30319.551345,89620-Jan-201216:27
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201216:28
System.resources.dll4.0.30319.551227,10420-Jan-201216:27
System.RunTime.Serialization.resources.dll4.0.30319.551101,70420-Jan-201216:27
System.xml.resources.dll4.0.30319.551156,45620-Jan-201216:28
mscorlib.resources.dll4.0.30319.551316,70420-Jan-201216:08
System.Data.resources.dll4.0.30319.551349,48020-Jan-201216:08
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201216:08
System.resources.dll4.0.30319.551227,61620-Jan-201216:08
System.RunTime.Serialization.resources.dll4.0.30319.551104,77620-Jan-201216:08
System.xml.resources.dll4.0.30319.551160,04020-Jan-201216:08
mscorlib.resources.dll4.0.30319.551408,86420-Jan-201215:49
System.Data.resources.dll4.0.30319.551408,87220-Jan-201215:49
system.data.sqlxml.resources.dll4.0.30319.55143,83220-Jan-201215:49
System.resources.dll4.0.30319.551292,12820-Jan-201215:49
System.RunTime.Serialization.resources.dll4.0.30319.551139,59220-Jan-201215:49
System.xml.resources.dll4.0.30319.551212,77620-Jan-201215:49
mscorlib.resources.dll4.0.30319.551310,04820-Jan-201215:32
System.Data.resources.dll4.0.30319.551342,31220-Jan-201215:32
system.data.sqlxml.resources.dll4.0.30319.55134,61620-Jan-201215:32
System.resources.dll4.0.30319.551218,40020-Jan-201215:32
System.RunTime.Serialization.resources.dll4.0.30319.55198,12020-Jan-201215:32
System.xml.resources.dll4.0.30319.551153,38420-Jan-201215:32
mscorlib.resources.dll4.0.30319.551307,48820-Jan-201215:11
System.Data.resources.dll4.0.30319.551343,84820-Jan-201215:11
system.data.sqlxml.resources.dll4.0.30319.55134,61620-Jan-201215:11
System.resources.dll4.0.30319.551219,93620-Jan-201215:11
System.RunTime.Serialization.resources.dll4.0.30319.551101,70420-Jan-201215:10
System.xml.resources.dll4.0.30319.551153,38420-Jan-201215:11


For all supported x64-based versions of Windows for LDR service branch
File nameFile versionFile sizeDateTime
vbc.exe10.0.30319.5513,237,12021-Jan-201206:30
vbc.exe10.0.30319.5512,262,27220-Jan-201222:37
clr.dll4.0.30319.5519,792,76821-Jan-201206:29
clr.dll4.0.30319.5516,727,42420-Jan-201222:37
mscordacwks.dll4.0.30319.5511,515,79221-Jan-201206:29
mscordacwks.dll4.0.30319.5511,143,56820-Jan-201222:37
mscordbi.dll4.0.30319.5511,455,37621-Jan-201206:29
mscordbi.dll4.0.30319.551956,68820-Jan-201222:37
mscorlib.dll4.0.30319.5514,971,79221-Jan-201206:29
mscorlib.dll4.0.30319.5515,202,19220-Jan-201222:37
nlssorting.dll4.0.30319.55168,36821-Jan-201206:29
nlssorting.dll4.0.30319.55157,10420-Jan-201222:37
PresentationCore.dll4.0.30319.5513,827,48821-Jan-201206:30
PresentationCore.dll4.0.30319.5513,792,16020-Jan-201222:41
PresentationFramework.dll4.0.30319.5516,432,55220-Jan-201222:41
ServiceModelReg.exe4.0.30319.551261,91221-Jan-201206:30
ServiceModelReg.exe4.0.30319.551192,79220-Jan-201222:39
Setup.exe10.0.30319.55179,11220-Jan-201215:10
SetupEngine.dll10.0.30319.551810,76820-Jan-201215:10
SetupUi.dll10.0.30319.551296,71220-Jan-201215:10
SOS.dll4.0.30319.551598,78421-Jan-201206:29
SOS.dll4.0.30319.551517,88820-Jan-201222:37
SqlWorkflowInstanceStoreLogic.sql51,06321-Jan-201200:04
SqlWorkflowInstanceStoreLogic.sql51,06320-Jan-201215:02
SqlWorkflowInstanceStoreSchema.sql23,73921-Jan-201200:04
SqlWorkflowInstanceStoreSchema.sql23,73920-Jan-201215:02
System.Activities.Core.Presentation.dll4.0.30319.551619,32820-Jan-201222:40
System.Activities.dll4.0.30319.5511,272,60820-Jan-201222:40
System.Activities.DurableInstancing.dll4.0.30319.551126,27220-Jan-201222:40
System.Activities.Presentation.dll4.0.30319.5511,559,86420-Jan-201222:40
System.IdentityModel.dll4.0.30319.551398,63220-Jan-201222:40
System.Net.dll4.0.30319.551237,84020-Jan-201222:39
System.Runtime.DurableInstancing.dll4.0.30319.551357,69620-Jan-201222:40
System.Runtime.Serialization.dll4.0.30319.5511,039,16020-Jan-201222:40
System.ServiceModel.Activities.dll4.0.30319.551537,91220-Jan-201222:40
System.ServiceModel.dll4.0.30319.5516,115,61620-Jan-201222:40
System.Data.dll4.0.30319.5513,174,16021-Jan-201206:30
System.Data.dll4.0.30319.5513,027,72820-Jan-201222:38
System.Data.SqlXml.dll4.0.30319.551752,92820-Jan-201222:38
System.Deployment.dll4.0.30319.551840,99220-Jan-201222:38
System.dll4.0.30319.5513,512,58420-Jan-201222:38
System.XML.dll4.0.30319.5512,208,52820-Jan-201222:39
WindowsBase.dll4.0.30319.5511,372,43220-Jan-201222:41
System.Xml.Serialization.dll4.0.30319.55112,08020-Jan-201222:40
aspnet_wp.exe4.0.30319.55141,74421-Jan-201206:12
aspnet_wp.exe4.0.30319.55133,55220-Jan-201222:08
Microsoft.Build.Tasks.v4.0.dll4.0.30319.5511,070,89620-Jan-201222:08
Microsoft.CSharp.targets13,03120-Jan-201222:02
Microsoft.VisualBasic.targets13,63020-Jan-201222:02
microsoft.build.commontypes.xsd195,80421-Jan-201206:09
microsoft.build.commontypes.xsd195,80420-Jan-201222:02
PerfCounters.ini154,22220-Jan-201222:03
System.Web.Extensions.dll4.0.30319.5511,863,97620-Jan-201222:07
System.Web.dll4.0.30319.5515,201,16821-Jan-201206:12
System.Web.dll4.0.30319.5515,231,88820-Jan-201222:08
webengine.dll4.0.30319.55116,65621-Jan-201206:13
webengine.dll4.0.30319.55115,12020-Jan-201222:08
webengine4.dll4.0.30319.551721,68021-Jan-201206:13
webengine4.dll4.0.30319.551496,40020-Jan-201222:08
XamlBuildTask.dll4.0.30319.551109,33620-Jan-201222:08
mscorlib.resources.dll4.0.30319.551360,73621-Jan-201205:59
mscorlib.resources.dll4.0.30319.551360,73620-Jan-201221:51
System.Data.resources.dll4.0.30319.551372,00821-Jan-201205:59
System.Data.resources.dll4.0.30319.551372,00820-Jan-201221:51
system.data.sqlxml.resources.dll4.0.30319.55140,24820-Jan-201221:51
System.resources.dll4.0.30319.551257,31220-Jan-201221:51
System.RunTime.Serialization.resources.dll4.0.30319.551119,62420-Jan-201221:51
System.xml.resources.dll4.0.30319.551180,52020-Jan-201221:51
mscorlib.resources.dll4.0.30319.551366,36821-Jan-201205:44
mscorlib.resources.dll4.0.30319.551366,36820-Jan-201221:36
System.Data.resources.dll4.0.30319.551375,08021-Jan-201205:44
System.Data.resources.dll4.0.30319.551375,08020-Jan-201221:37
system.data.sqlxml.resources.dll4.0.30319.55139,73620-Jan-201221:37
System.resources.dll4.0.30319.551263,45620-Jan-201221:37
System.RunTime.Serialization.resources.dll4.0.30319.551120,13620-Jan-201221:36
System.xml.resources.dll4.0.30319.551182,05620-Jan-201221:37
mscorlib.resources.dll4.0.30319.551288,54421-Jan-201205:30
mscorlib.resources.dll4.0.30319.551288,54420-Jan-201221:19
System.Data.resources.dll4.0.30319.551326,95221-Jan-201205:30
System.Data.resources.dll4.0.30319.551326,95220-Jan-201221:20
system.data.sqlxml.resources.dll4.0.30319.55133,08020-Jan-201221:20
System.resources.dll4.0.30319.551199,96820-Jan-201221:20
System.RunTime.Serialization.resources.dll4.0.30319.55194,53620-Jan-201221:19
System.xml.resources.dll4.0.30319.551142,12020-Jan-201221:20
mscorlib.resources.dll4.0.30319.551289,05621-Jan-201205:13
mscorlib.resources.dll4.0.30319.551289,05620-Jan-201221:04
System.Data.resources.dll4.0.30319.551329,51221-Jan-201205:14
System.Data.resources.dll4.0.30319.551329,51220-Jan-201221:05
system.data.sqlxml.resources.dll4.0.30319.55132,56820-Jan-201221:05
System.resources.dll4.0.30319.551202,52820-Jan-201221:05
System.RunTime.Serialization.resources.dll4.0.30319.55193,51220-Jan-201221:04
System.xml.resources.dll4.0.30319.551142,63220-Jan-201221:05
mscorlib.resources.dll4.0.30319.551314,14421-Jan-201204:59
mscorlib.resources.dll4.0.30319.551314,14420-Jan-201220:44
System.Data.resources.dll4.0.30319.551348,45621-Jan-201204:59
System.Data.resources.dll4.0.30319.551348,45620-Jan-201220:44
system.data.sqlxml.resources.dll4.0.30319.55134,10420-Jan-201220:44
System.resources.dll4.0.30319.551225,05620-Jan-201220:44
System.RunTime.Serialization.resources.dll4.0.30319.551100,16820-Jan-201220:44
System.xml.resources.dll4.0.30319.551155,43220-Jan-201220:44
mscorlib.resources.dll4.0.30319.551309,02421-Jan-201204:44
mscorlib.resources.dll4.0.30319.551309,02420-Jan-201220:25
System.Data.resources.dll4.0.30319.551344,87221-Jan-201204:45
System.Data.resources.dll4.0.30319.551344,87220-Jan-201220:25
system.data.sqlxml.resources.dll4.0.30319.55135,12820-Jan-201220:25
System.resources.dll4.0.30319.551219,93620-Jan-201220:25
System.RunTime.Serialization.resources.dll4.0.30319.551101,19220-Jan-201220:24
System.xml.resources.dll4.0.30319.551153,89620-Jan-201220:25
mscorlib.resources.dll4.0.30319.551323,87221-Jan-201204:25
mscorlib.resources.dll4.0.30319.551323,87220-Jan-201220:07
System.Data.resources.dll4.0.30319.551355,11221-Jan-201204:25
System.Data.resources.dll4.0.30319.551355,11220-Jan-201220:07
system.data.sqlxml.resources.dll4.0.30319.55136,66420-Jan-201220:07
System.resources.dll4.0.30319.551231,20020-Jan-201220:07
System.RunTime.Serialization.resources.dll4.0.30319.551108,36020-Jan-201220:07
System.xml.resources.dll4.0.30319.551162,60020-Jan-201220:07
mscorlib.resources.dll4.0.30319.551438,56021-Jan-201204:10
mscorlib.resources.dll4.0.30319.551438,56020-Jan-201219:46
System.Data.resources.dll4.0.30319.551424,23221-Jan-201204:10
System.Data.resources.dll4.0.30319.551424,23220-Jan-201219:46
system.data.sqlxml.resources.dll4.0.30319.55147,41620-Jan-201219:46
System.resources.dll4.0.30319.551320,80020-Jan-201219:46
System.RunTime.Serialization.resources.dll4.0.30319.551150,34420-Jan-201219:45
System.xml.resources.dll4.0.30319.551227,62420-Jan-201219:46
mscorlib.resources.dll4.0.30319.551317,21621-Jan-201203:53
mscorlib.resources.dll4.0.30319.551317,21620-Jan-201219:26
System.Data.resources.dll4.0.30319.551348,45621-Jan-201203:53
System.Data.resources.dll4.0.30319.551348,45620-Jan-201219:27
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201219:27
System.resources.dll4.0.30319.551228,64020-Jan-201219:27
System.RunTime.Serialization.resources.dll4.0.30319.551105,28820-Jan-201219:26
System.xml.resources.dll4.0.30319.551159,01620-Jan-201219:27
mscorlib.resources.dll4.0.30319.551311,07221-Jan-201203:36
mscorlib.resources.dll4.0.30319.551311,07220-Jan-201219:05
System.Data.resources.dll4.0.30319.551342,31221-Jan-201203:37
System.Data.resources.dll4.0.30319.551342,31220-Jan-201219:05
system.data.sqlxml.resources.dll4.0.30319.55134,10420-Jan-201219:05
System.resources.dll4.0.30319.551219,93620-Jan-201219:05
System.RunTime.Serialization.resources.dll4.0.30319.551100,16820-Jan-201219:05
System.xml.resources.dll4.0.30319.551152,36020-Jan-201219:05
mscorlib.resources.dll4.0.30319.551322,33621-Jan-201203:21
mscorlib.resources.dll4.0.30319.551322,33620-Jan-201218:47
System.Data.resources.dll4.0.30319.551354,08821-Jan-201203:21
System.Data.resources.dll4.0.30319.551354,08820-Jan-201218:48
system.data.sqlxml.resources.dll4.0.30319.55136,15220-Jan-201218:48
System.resources.dll4.0.30319.551233,76020-Jan-201218:48
System.RunTime.Serialization.resources.dll4.0.30319.551108,36020-Jan-201218:47
System.xml.resources.dll4.0.30319.551163,62420-Jan-201218:48
mscorlib.resources.dll4.0.30319.551343,32821-Jan-201203:07
mscorlib.resources.dll4.0.30319.551343,32820-Jan-201218:28
System.Data.resources.dll4.0.30319.551367,40021-Jan-201203:07
System.Data.resources.dll4.0.30319.551367,40020-Jan-201218:29
system.data.sqlxml.resources.dll4.0.30319.55139,22420-Jan-201218:29
System.resources.dll4.0.30319.551244,00020-Jan-201218:28
System.RunTime.Serialization.resources.dll4.0.30319.551119,11220-Jan-201218:28
System.xml.resources.dll4.0.30319.551174,88820-Jan-201218:29
mscorlib.resources.dll4.0.30319.551327,96821-Jan-201202:50
mscorlib.resources.dll4.0.30319.551327,96820-Jan-201218:14
System.Data.resources.dll4.0.30319.551359,20821-Jan-201202:50
System.Data.resources.dll4.0.30319.551359,20820-Jan-201218:14
system.data.sqlxml.resources.dll4.0.30319.55137,17620-Jan-201218:14
System.resources.dll4.0.30319.551236,83220-Jan-201218:14
System.RunTime.Serialization.resources.dll4.0.30319.551109,38420-Jan-201218:13
System.xml.resources.dll4.0.30319.551167,72020-Jan-201218:14
mscorlib.resources.dll4.0.30319.551315,68021-Jan-201202:35
mscorlib.resources.dll4.0.30319.551315,68020-Jan-201217:55
System.Data.resources.dll4.0.30319.551348,45621-Jan-201202:36
System.Data.resources.dll4.0.30319.551348,45620-Jan-201217:55
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201217:55
System.resources.dll4.0.30319.551226,08020-Jan-201217:55
System.RunTime.Serialization.resources.dll4.0.30319.551103,75220-Jan-201217:55
System.xml.resources.dll4.0.30319.551159,01620-Jan-201217:55
mscorlib.resources.dll4.0.30319.551329,50421-Jan-201202:17
mscorlib.resources.dll4.0.30319.551329,50420-Jan-201217:36
System.Data.resources.dll4.0.30319.551356,64821-Jan-201202:17
System.Data.resources.dll4.0.30319.551356,64820-Jan-201217:36
system.data.sqlxml.resources.dll4.0.30319.55137,17620-Jan-201217:36
System.resources.dll4.0.30319.551236,32020-Jan-201217:36
System.RunTime.Serialization.resources.dll4.0.30319.551109,89620-Jan-201217:35
System.xml.resources.dll4.0.30319.551167,72020-Jan-201217:36
mscorlib.resources.dll4.0.30319.551313,12021-Jan-201202:02
mscorlib.resources.dll4.0.30319.551313,12020-Jan-201217:19
System.Data.resources.dll4.0.30319.551352,04021-Jan-201202:02
System.Data.resources.dll4.0.30319.551352,04020-Jan-201217:19
system.data.sqlxml.resources.dll4.0.30319.55135,12820-Jan-201217:19
System.resources.dll4.0.30319.551226,59220-Jan-201217:19
System.RunTime.Serialization.resources.dll4.0.30319.551102,72820-Jan-201217:19
System.xml.resources.dll4.0.30319.551158,50420-Jan-201217:19
mscorlib.resources.dll4.0.30319.551301,34421-Jan-201201:46
mscorlib.resources.dll4.0.30319.551301,34420-Jan-201217:04
System.Data.resources.dll4.0.30319.551339,24021-Jan-201201:46
System.Data.resources.dll4.0.30319.551339,24020-Jan-201217:04
system.data.sqlxml.resources.dll4.0.30319.55134,10420-Jan-201217:04
System.resources.dll4.0.30319.551213,79220-Jan-201217:04
System.RunTime.Serialization.resources.dll4.0.30319.55197,60820-Jan-201217:04
System.xml.resources.dll4.0.30319.551150,31220-Jan-201217:05
mscorlib.resources.dll4.0.30319.551322,84821-Jan-201201:31
mscorlib.resources.dll4.0.30319.551322,84820-Jan-201216:47
System.Data.resources.dll4.0.30319.551355,62421-Jan-201201:31
System.Data.resources.dll4.0.30319.551355,62420-Jan-201216:47
system.data.sqlxml.resources.dll4.0.30319.55136,15220-Jan-201216:47
System.resources.dll4.0.30319.551228,64020-Jan-201216:47
System.RunTime.Serialization.resources.dll4.0.30319.551109,38420-Jan-201216:46
System.xml.resources.dll4.0.30319.551166,18420-Jan-201216:47
mscorlib.resources.dll4.0.30319.551314,14421-Jan-201201:17
mscorlib.resources.dll4.0.30319.551314,14420-Jan-201216:27
System.Data.resources.dll4.0.30319.551345,89621-Jan-201201:17
System.Data.resources.dll4.0.30319.551345,89620-Jan-201216:27
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201216:28
System.resources.dll4.0.30319.551227,10420-Jan-201216:27
System.RunTime.Serialization.resources.dll4.0.30319.551101,70420-Jan-201216:27
System.xml.resources.dll4.0.30319.551156,45620-Jan-201216:28
mscorlib.resources.dll4.0.30319.551316,70421-Jan-201201:00
mscorlib.resources.dll4.0.30319.551316,70420-Jan-201216:08
System.Data.resources.dll4.0.30319.551349,48021-Jan-201201:00
System.Data.resources.dll4.0.30319.551349,48020-Jan-201216:08
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201216:08
System.resources.dll4.0.30319.551227,61620-Jan-201216:08
System.RunTime.Serialization.resources.dll4.0.30319.551104,77620-Jan-201216:08
System.xml.resources.dll4.0.30319.551160,04020-Jan-201216:08
mscorlib.resources.dll4.0.30319.551408,86421-Jan-201200:45
mscorlib.resources.dll4.0.30319.551408,86420-Jan-201215:49
System.Data.resources.dll4.0.30319.551408,87221-Jan-201200:45
System.Data.resources.dll4.0.30319.551408,87220-Jan-201215:49
system.data.sqlxml.resources.dll4.0.30319.55143,83220-Jan-201215:49
System.resources.dll4.0.30319.551292,12820-Jan-201215:49
System.RunTime.Serialization.resources.dll4.0.30319.551139,59220-Jan-201215:49
System.xml.resources.dll4.0.30319.551212,77620-Jan-201215:49
mscorlib.resources.dll4.0.30319.551310,04821-Jan-201200:28
mscorlib.resources.dll4.0.30319.551310,04820-Jan-201215:32
System.Data.resources.dll4.0.30319.551342,31221-Jan-201200:28
System.Data.resources.dll4.0.30319.551342,31220-Jan-201215:32
system.data.sqlxml.resources.dll4.0.30319.55134,61620-Jan-201215:32
System.resources.dll4.0.30319.551218,40020-Jan-201215:32
System.RunTime.Serialization.resources.dll4.0.30319.55198,12020-Jan-201215:32
System.xml.resources.dll4.0.30319.551153,38420-Jan-201215:32
mscorlib.resources.dll4.0.30319.551307,48821-Jan-201200:09
mscorlib.resources.dll4.0.30319.551307,48820-Jan-201215:11
System.Data.resources.dll4.0.30319.551343,84821-Jan-201200:09
System.Data.resources.dll4.0.30319.551343,84820-Jan-201215:11
system.data.sqlxml.resources.dll4.0.30319.55134,61620-Jan-201215:11
System.resources.dll4.0.30319.551219,93620-Jan-201215:11
System.RunTime.Serialization.resources.dll4.0.30319.551101,70420-Jan-201215:10
System.xml.resources.dll4.0.30319.551153,38420-Jan-201215:11


Forall supported IA-64based versions of Windows for LDR service branch
File nameFile versionFile sizeDateTime
vbc.exe10.0.30319.5516,429,95221-Jan-201213:12
vbc.exe10.0.30319.5512,262,27220-Jan-201222:37
clr.dll4.0.30319.55119,368,70421-Jan-201213:12
clr.dll4.0.30319.5516,727,42420-Jan-201222:37
mscordacwks.dll4.0.30319.5513,759,37621-Jan-201213:12
mscordacwks.dll4.0.30319.5511,143,56820-Jan-201222:37
mscordbi.dll4.0.30319.5513,296,52821-Jan-201213:12
mscordbi.dll4.0.30319.551956,68820-Jan-201222:37
mscorlib.dll4.0.30319.5514,470,03221-Jan-201213:12
mscorlib.dll4.0.30319.5515,202,19220-Jan-201222:37
nlssorting.dll4.0.30319.551144,14421-Jan-201213:12
nlssorting.dll4.0.30319.55157,10420-Jan-201222:37
PresentationCore.dll4.0.30319.5513,792,16020-Jan-201222:41
PresentationFramework.dll4.0.30319.5516,432,55220-Jan-201222:41
ServiceModelReg.exe4.0.30319.551545,56021-Jan-201213:13
ServiceModelReg.exe4.0.30319.551192,79220-Jan-201222:39
Setup.exe10.0.30319.55179,11220-Jan-201215:10
SetupEngine.dll10.0.30319.551810,76820-Jan-201215:10
SetupUi.dll10.0.30319.551296,71220-Jan-201215:10
SOS.dll4.0.30319.5511,203,96821-Jan-201213:12
SOS.dll4.0.30319.551517,88820-Jan-201222:37
SqlWorkflowInstanceStoreLogic.sql51,06321-Jan-201207:02
SqlWorkflowInstanceStoreLogic.sql51,06320-Jan-201215:02
SqlWorkflowInstanceStoreSchema.sql23,73921-Jan-201207:02
SqlWorkflowInstanceStoreSchema.sql23,73920-Jan-201215:02
System.Activities.Core.Presentation.dll4.0.30319.551619,32820-Jan-201222:40
System.Activities.dll4.0.30319.5511,272,60820-Jan-201222:40
System.Activities.DurableInstancing.dll4.0.30319.551126,27220-Jan-201222:40
System.Activities.Presentation.dll4.0.30319.5511,559,86420-Jan-201222:40
System.IdentityModel.dll4.0.30319.551398,63220-Jan-201222:40
System.Net.dll4.0.30319.551237,84020-Jan-201222:39
System.Runtime.DurableInstancing.dll4.0.30319.551357,69620-Jan-201222:40
System.Runtime.Serialization.dll4.0.30319.5511,039,16020-Jan-201222:40
System.ServiceModel.Activities.dll4.0.30319.551537,91220-Jan-201222:40
System.ServiceModel.dll4.0.30319.5516,115,61620-Jan-201222:40
System.Data.dll4.0.30319.5513,366,16021-Jan-201213:13
System.Data.dll4.0.30319.5513,027,72820-Jan-201222:38
System.Data.SqlXml.dll4.0.30319.551752,92820-Jan-201222:38
System.Deployment.dll4.0.30319.551840,99220-Jan-201222:38
System.dll4.0.30319.5513,512,58420-Jan-201222:38
System.XML.dll4.0.30319.5512,208,52820-Jan-201222:39
WindowsBase.dll4.0.30319.5511,372,43220-Jan-201222:41
System.Xml.Serialization.dll4.0.30319.55112,08020-Jan-201222:40
aspnet_wp.exe4.0.30319.55181,16821-Jan-201212:54
aspnet_wp.exe4.0.30319.55133,55220-Jan-201222:08
Microsoft.Build.Tasks.v4.0.dll4.0.30319.5511,070,89620-Jan-201222:08
Microsoft.CSharp.targets13,03120-Jan-201222:02
Microsoft.VisualBasic.targets13,63020-Jan-201222:02
microsoft.build.commontypes.xsd195,80421-Jan-201212:50
microsoft.build.commontypes.xsd195,80420-Jan-201222:02
PerfCounters.ini154,22220-Jan-201222:03
System.Web.Extensions.dll4.0.30319.5511,863,97620-Jan-201222:07
System.Web.dll4.0.30319.5514,820,75221-Jan-201212:54
System.Web.dll4.0.30319.5515,231,88820-Jan-201222:08
webengine.dll4.0.30319.55126,38421-Jan-201212:54
webengine.dll4.0.30319.55115,12020-Jan-201222:08
webengine4.dll4.0.30319.5511,341,71221-Jan-201212:54
webengine4.dll4.0.30319.551496,40020-Jan-201222:08
XamlBuildTask.dll4.0.30319.551109,33620-Jan-201222:08
mscorlib.resources.dll4.0.30319.551360,73621-Jan-201212:38
mscorlib.resources.dll4.0.30319.551360,73620-Jan-201221:51
System.Data.resources.dll4.0.30319.551372,00821-Jan-201212:38
System.Data.resources.dll4.0.30319.551372,00820-Jan-201221:51
system.data.sqlxml.resources.dll4.0.30319.55140,24820-Jan-201221:51
System.resources.dll4.0.30319.551257,31220-Jan-201221:51
System.RunTime.Serialization.resources.dll4.0.30319.551119,62420-Jan-201221:51
System.xml.resources.dll4.0.30319.551180,52020-Jan-201221:51
mscorlib.resources.dll4.0.30319.551366,36821-Jan-201212:22
mscorlib.resources.dll4.0.30319.551366,36820-Jan-201221:36
System.Data.resources.dll4.0.30319.551375,08021-Jan-201212:22
System.Data.resources.dll4.0.30319.551375,08020-Jan-201221:37
system.data.sqlxml.resources.dll4.0.30319.55139,73620-Jan-201221:37
System.resources.dll4.0.30319.551263,45620-Jan-201221:37
System.RunTime.Serialization.resources.dll4.0.30319.551120,13620-Jan-201221:36
System.xml.resources.dll4.0.30319.551182,05620-Jan-201221:37
mscorlib.resources.dll4.0.30319.551288,54421-Jan-201212:06
mscorlib.resources.dll4.0.30319.551288,54420-Jan-201221:19
System.Data.resources.dll4.0.30319.551326,95221-Jan-201212:06
System.Data.resources.dll4.0.30319.551326,95220-Jan-201221:20
system.data.sqlxml.resources.dll4.0.30319.55133,08020-Jan-201221:20
System.resources.dll4.0.30319.551199,96820-Jan-201221:20
System.RunTime.Serialization.resources.dll4.0.30319.55194,53620-Jan-201221:19
System.xml.resources.dll4.0.30319.551142,12020-Jan-201221:20
mscorlib.resources.dll4.0.30319.551289,05621-Jan-201211:50
mscorlib.resources.dll4.0.30319.551289,05620-Jan-201221:04
System.Data.resources.dll4.0.30319.551329,51221-Jan-201211:51
System.Data.resources.dll4.0.30319.551329,51220-Jan-201221:05
system.data.sqlxml.resources.dll4.0.30319.55132,56820-Jan-201221:05
System.resources.dll4.0.30319.551202,52820-Jan-201221:05
System.RunTime.Serialization.resources.dll4.0.30319.55193,51220-Jan-201221:04
System.xml.resources.dll4.0.30319.551142,63220-Jan-201221:05
mscorlib.resources.dll4.0.30319.551314,14421-Jan-201211:37
mscorlib.resources.dll4.0.30319.551314,14420-Jan-201220:44
System.Data.resources.dll4.0.30319.551348,45621-Jan-201211:37
System.Data.resources.dll4.0.30319.551348,45620-Jan-201220:44
system.data.sqlxml.resources.dll4.0.30319.55134,10420-Jan-201220:44
System.resources.dll4.0.30319.551225,05620-Jan-201220:44
System.RunTime.Serialization.resources.dll4.0.30319.551100,16820-Jan-201220:44
System.xml.resources.dll4.0.30319.551155,43220-Jan-201220:44
mscorlib.resources.dll4.0.30319.551309,02421-Jan-201211:21
mscorlib.resources.dll4.0.30319.551309,02420-Jan-201220:25
System.Data.resources.dll4.0.30319.551344,87221-Jan-201211:21
System.Data.resources.dll4.0.30319.551344,87220-Jan-201220:25
system.data.sqlxml.resources.dll4.0.30319.55135,12820-Jan-201220:25
System.resources.dll4.0.30319.551219,93620-Jan-201220:25
System.RunTime.Serialization.resources.dll4.0.30319.551101,19220-Jan-201220:24
System.xml.resources.dll4.0.30319.551153,89620-Jan-201220:25
mscorlib.resources.dll4.0.30319.551323,87221-Jan-201211:05
mscorlib.resources.dll4.0.30319.551323,87220-Jan-201220:07
System.Data.resources.dll4.0.30319.551355,11221-Jan-201211:05
System.Data.resources.dll4.0.30319.551355,11220-Jan-201220:07
system.data.sqlxml.resources.dll4.0.30319.55136,66420-Jan-201220:07
System.resources.dll4.0.30319.551231,20020-Jan-201220:07
System.RunTime.Serialization.resources.dll4.0.30319.551108,36020-Jan-201220:07
System.xml.resources.dll4.0.30319.551162,60020-Jan-201220:07
mscorlib.resources.dll4.0.30319.551438,56021-Jan-201210:51
mscorlib.resources.dll4.0.30319.551438,56020-Jan-201219:46
System.Data.resources.dll4.0.30319.551424,23221-Jan-201210:51
System.Data.resources.dll4.0.30319.551424,23220-Jan-201219:46
system.data.sqlxml.resources.dll4.0.30319.55147,41620-Jan-201219:46
System.resources.dll4.0.30319.551320,80020-Jan-201219:46
System.RunTime.Serialization.resources.dll4.0.30319.551150,34420-Jan-201219:45
System.xml.resources.dll4.0.30319.551227,62420-Jan-201219:46
mscorlib.resources.dll4.0.30319.551317,21621-Jan-201210:35
mscorlib.resources.dll4.0.30319.551317,21620-Jan-201219:26
System.Data.resources.dll4.0.30319.551348,45621-Jan-201210:35
System.Data.resources.dll4.0.30319.551348,45620-Jan-201219:27
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201219:27
System.resources.dll4.0.30319.551228,64020-Jan-201219:27
System.RunTime.Serialization.resources.dll4.0.30319.551105,28820-Jan-201219:26
System.xml.resources.dll4.0.30319.551159,01620-Jan-201219:27
mscorlib.resources.dll4.0.30319.551311,07221-Jan-201210:21
mscorlib.resources.dll4.0.30319.551311,07220-Jan-201219:05
System.Data.resources.dll4.0.30319.551342,31221-Jan-201210:21
System.Data.resources.dll4.0.30319.551342,31220-Jan-201219:05
system.data.sqlxml.resources.dll4.0.30319.55134,10420-Jan-201219:05
System.resources.dll4.0.30319.551219,93620-Jan-201219:05
System.RunTime.Serialization.resources.dll4.0.30319.551100,16820-Jan-201219:05
System.xml.resources.dll4.0.30319.551152,36020-Jan-201219:05
mscorlib.resources.dll4.0.30319.551322,33621-Jan-201210:05
mscorlib.resources.dll4.0.30319.551322,33620-Jan-201218:47
System.Data.resources.dll4.0.30319.551354,08821-Jan-201210:05
System.Data.resources.dll4.0.30319.551354,08820-Jan-201218:48
system.data.sqlxml.resources.dll4.0.30319.55136,15220-Jan-201218:48
System.resources.dll4.0.30319.551233,76020-Jan-201218:48
System.RunTime.Serialization.resources.dll4.0.30319.551108,36020-Jan-201218:47
System.xml.resources.dll4.0.30319.551163,62420-Jan-201218:48
mscorlib.resources.dll4.0.30319.551343,32821-Jan-201209:49
mscorlib.resources.dll4.0.30319.551343,32820-Jan-201218:28
System.Data.resources.dll4.0.30319.551367,40021-Jan-201209:49
System.Data.resources.dll4.0.30319.551367,40020-Jan-201218:29
system.data.sqlxml.resources.dll4.0.30319.55139,22420-Jan-201218:29
System.resources.dll4.0.30319.551244,00020-Jan-201218:28
System.RunTime.Serialization.resources.dll4.0.30319.551119,11220-Jan-201218:28
System.xml.resources.dll4.0.30319.551174,88820-Jan-201218:29
mscorlib.resources.dll4.0.30319.551327,96821-Jan-201209:33
mscorlib.resources.dll4.0.30319.551327,96820-Jan-201218:14
System.Data.resources.dll4.0.30319.551359,20821-Jan-201209:33
System.Data.resources.dll4.0.30319.551359,20820-Jan-201218:14
system.data.sqlxml.resources.dll4.0.30319.55137,17620-Jan-201218:14
System.resources.dll4.0.30319.551236,83220-Jan-201218:14
System.RunTime.Serialization.resources.dll4.0.30319.551109,38420-Jan-201218:13
System.xml.resources.dll4.0.30319.551167,72020-Jan-201218:14
mscorlib.resources.dll4.0.30319.551315,68021-Jan-201209:19
mscorlib.resources.dll4.0.30319.551315,68020-Jan-201217:55
System.Data.resources.dll4.0.30319.551348,45621-Jan-201209:20
System.Data.resources.dll4.0.30319.551348,45620-Jan-201217:55
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201217:55
System.resources.dll4.0.30319.551226,08020-Jan-201217:55
System.RunTime.Serialization.resources.dll4.0.30319.551103,75220-Jan-201217:55
System.xml.resources.dll4.0.30319.551159,01620-Jan-201217:55
mscorlib.resources.dll4.0.30319.551329,50421-Jan-201209:06
mscorlib.resources.dll4.0.30319.551329,50420-Jan-201217:36
System.Data.resources.dll4.0.30319.551356,64821-Jan-201209:06
System.Data.resources.dll4.0.30319.551356,64820-Jan-201217:36
system.data.sqlxml.resources.dll4.0.30319.55137,17620-Jan-201217:36
System.resources.dll4.0.30319.551236,32020-Jan-201217:36
System.RunTime.Serialization.resources.dll4.0.30319.551109,89620-Jan-201217:35
System.xml.resources.dll4.0.30319.551167,72020-Jan-201217:36
mscorlib.resources.dll4.0.30319.551313,12021-Jan-201208:52
mscorlib.resources.dll4.0.30319.551313,12020-Jan-201217:19
System.Data.resources.dll4.0.30319.551352,04021-Jan-201208:52
System.Data.resources.dll4.0.30319.551352,04020-Jan-201217:19
system.data.sqlxml.resources.dll4.0.30319.55135,12820-Jan-201217:19
System.resources.dll4.0.30319.551226,59220-Jan-201217:19
System.RunTime.Serialization.resources.dll4.0.30319.551102,72820-Jan-201217:19
System.xml.resources.dll4.0.30319.551158,50420-Jan-201217:19
mscorlib.resources.dll4.0.30319.551301,34421-Jan-201208:38
mscorlib.resources.dll4.0.30319.551301,34420-Jan-201217:04
System.Data.resources.dll4.0.30319.551339,24021-Jan-201208:38
System.Data.resources.dll4.0.30319.551339,24020-Jan-201217:04
system.data.sqlxml.resources.dll4.0.30319.55134,10420-Jan-201217:04
System.resources.dll4.0.30319.551213,79220-Jan-201217:04
System.RunTime.Serialization.resources.dll4.0.30319.55197,60820-Jan-201217:04
System.xml.resources.dll4.0.30319.551150,31220-Jan-201217:05
mscorlib.resources.dll4.0.30319.551322,84821-Jan-201208:24
mscorlib.resources.dll4.0.30319.551322,84820-Jan-201216:47
System.Data.resources.dll4.0.30319.551355,62421-Jan-201208:24
System.Data.resources.dll4.0.30319.551355,62420-Jan-201216:47
system.data.sqlxml.resources.dll4.0.30319.55136,15220-Jan-201216:47
System.resources.dll4.0.30319.551228,64020-Jan-201216:47
System.RunTime.Serialization.resources.dll4.0.30319.551109,38420-Jan-201216:46
System.xml.resources.dll4.0.30319.551166,18420-Jan-201216:47
mscorlib.resources.dll4.0.30319.551314,14421-Jan-201208:10
mscorlib.resources.dll4.0.30319.551314,14420-Jan-201216:27
System.Data.resources.dll4.0.30319.551345,89621-Jan-201208:11
System.Data.resources.dll4.0.30319.551345,89620-Jan-201216:27
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201216:28
System.resources.dll4.0.30319.551227,10420-Jan-201216:27
System.RunTime.Serialization.resources.dll4.0.30319.551101,70420-Jan-201216:27
System.xml.resources.dll4.0.30319.551156,45620-Jan-201216:28
mscorlib.resources.dll4.0.30319.551316,70421-Jan-201207:53
mscorlib.resources.dll4.0.30319.551316,70420-Jan-201216:08
System.Data.resources.dll4.0.30319.551349,48021-Jan-201207:53
System.Data.resources.dll4.0.30319.551349,48020-Jan-201216:08
system.data.sqlxml.resources.dll4.0.30319.55135,64020-Jan-201216:08
System.resources.dll4.0.30319.551227,61620-Jan-201216:08
System.RunTime.Serialization.resources.dll4.0.30319.551104,77620-Jan-201216:08
System.xml.resources.dll4.0.30319.551160,04020-Jan-201216:08
mscorlib.resources.dll4.0.30319.551408,86421-Jan-201207:39
mscorlib.resources.dll4.0.30319.551408,86420-Jan-201215:49
System.Data.resources.dll4.0.30319.551408,87221-Jan-201207:39
System.Data.resources.dll4.0.30319.551408,87220-Jan-201215:49
system.data.sqlxml.resources.dll4.0.30319.55143,83220-Jan-201215:49
System.resources.dll4.0.30319.551292,12820-Jan-201215:49
System.RunTime.Serialization.resources.dll4.0.30319.551139,59220-Jan-201215:49
System.xml.resources.dll4.0.30319.551212,77620-Jan-201215:49
mscorlib.resources.dll4.0.30319.551310,04821-Jan-201207:23
mscorlib.resources.dll4.0.30319.551310,04820-Jan-201215:32
System.Data.resources.dll4.0.30319.551342,31221-Jan-201207:23
System.Data.resources.dll4.0.30319.551342,31220-Jan-201215:32
system.data.sqlxml.resources.dll4.0.30319.55134,61620-Jan-201215:32
System.resources.dll4.0.30319.551218,40020-Jan-201215:32
System.RunTime.Serialization.resources.dll4.0.30319.55198,12020-Jan-201215:32
System.xml.resources.dll4.0.30319.551153,38420-Jan-201215:32
mscorlib.resources.dll4.0.30319.551307,48821-Jan-201207:07
mscorlib.resources.dll4.0.30319.551307,48820-Jan-201215:11
System.Data.resources.dll4.0.30319.551343,84821-Jan-201207:07
System.Data.resources.dll4.0.30319.551343,84820-Jan-201215:11
system.data.sqlxml.resources.dll4.0.30319.55134,61620-Jan-201215:11
System.resources.dll4.0.30319.551219,93620-Jan-201215:11
System.RunTime.Serialization.resources.dll4.0.30319.551101,70420-Jan-201215:10
System.xml.resources.dll4.0.30319.551153,38420-Jan-201215:11

↑ Back to the top


Keywords: kbqfe, atdownload, kbexpertiseadvanced, kbsurveynew, kbfix, kbcip, kb

↑ Back to the top

Article Info
Article ID : 2600211
Revision : 2
Created on : 10/27/2017
Published on : 10/27/2017
Exists online : False
Views : 441