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:
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:
For more information about how to download Microsoft support files, click the following article number to view the article in the Microsoft Knowledge Base:
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:
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.
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:
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
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
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:
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:
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):
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:
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
Collapse this tableExpand this table
File name
File version
File size
Date
Time
vbc.exe
10.0.30319.276
2,262,784
22-Jan-2012
01:35
clr.dll
4.0.30319.276
6,727,424
22-Jan-2012
01:34
mscordacwks.dll
4.0.30319.276
1,143,568
22-Jan-2012
01:34
mscordbi.dll
4.0.30319.276
957,200
22-Jan-2012
01:34
mscorlib.dll
4.0.30319.276
5,201,168
22-Jan-2012
01:34
nlssorting.dll
4.0.30319.276
57,616
22-Jan-2012
01:34
PresentationCore.dll
4.0.30319.276
3,790,112
22-Jan-2012
01:38
PresentationFramework.dll
4.0.30319.276
6,429,992
22-Jan-2012
01:38
ServiceModelReg.exe
4.0.30319.276
192,792
22-Jan-2012
01:37
SOS.dll
4.0.30319.276
518,400
22-Jan-2012
01:34
SqlWorkflowInstanceStoreLogic.sql
51,063
21-Jan-2012
17:27
SqlWorkflowInstanceStoreSchema.sql
23,739
21-Jan-2012
17:27
System.Activities.Core.Presentation.dll
4.0.30319.276
619,328
22-Jan-2012
01:37
System.Activities.dll
4.0.30319.276
1,269,536
22-Jan-2012
01:37
System.Activities.DurableInstancing.dll
4.0.30319.276
126,272
22-Jan-2012
01:37
System.Activities.Presentation.dll
4.0.30319.276
1,559,864
22-Jan-2012
01:37
System.IdentityModel.dll
4.0.30319.276
398,120
22-Jan-2012
01:37
System.Net.dll
4.0.30319.276
237,840
22-Jan-2012
01:36
System.Runtime.DurableInstancing.dll
4.0.30319.276
357,696
22-Jan-2012
01:37
System.Runtime.Serialization.dll
4.0.30319.276
1,039,160
22-Jan-2012
01:37
System.ServiceModel.Activities.dll
4.0.30319.276
537,912
22-Jan-2012
01:37
System.ServiceModel.dll
4.0.30319.276
6,102,816
22-Jan-2012
01:37
System.Data.dll
4.0.30319.276
3,027,216
22-Jan-2012
01:35
System.Deployment.dll
4.0.30319.276
840,992
22-Jan-2012
01:35
System.dll
4.0.30319.276
3,512,072
22-Jan-2012
01:35
System.XML.dll
4.0.30319.276
2,208,528
22-Jan-2012
01:36
WindowsBase.dll
4.0.30319.276
1,369,872
22-Jan-2012
01:38
System.Xml.Serialization.dll
4.0.30319.276
12,080
22-Jan-2012
01:37
aspnet_wp.exe
4.0.30319.276
33,552
22-Jan-2012
00:12
Microsoft.Build.Tasks.v4.0.dll
4.0.30319.276
1,070,896
22-Jan-2012
00:11
Microsoft.CSharp.targets
13,031
22-Jan-2012
00:04
Microsoft.VisualBasic.targets
13,630
22-Jan-2012
00:04
microsoft.build.commontypes.xsd
195,804
22-Jan-2012
00:04
PerfCounters.ini
154,222
22-Jan-2012
00:04
System.Web.Extensions.dll
4.0.30319.276
1,863,464
22-Jan-2012
00:11
System.Web.dll
4.0.30319.276
5,230,864
22-Jan-2012
00:12
webengine.dll
4.0.30319.276
15,120
22-Jan-2012
00:12
webengine4.dll
4.0.30319.276
496,400
22-Jan-2012
00:12
XamlBuildTask.dll
4.0.30319.276
109,336
22-Jan-2012
00:12
mscorlib.resources.dll
4.0.30319.276
360,736
21-Jan-2012
23:52
System.Data.resources.dll
4.0.30319.276
372,008
21-Jan-2012
23:52
System.resources.dll
4.0.30319.276
257,312
21-Jan-2012
23:52
mscorlib.resources.dll
4.0.30319.276
366,368
21-Jan-2012
23:34
System.Data.resources.dll
4.0.30319.276
375,080
21-Jan-2012
23:34
System.resources.dll
4.0.30319.276
263,456
21-Jan-2012
23:34
mscorlib.resources.dll
4.0.30319.276
288,544
21-Jan-2012
23:16
System.Data.resources.dll
4.0.30319.276
326,952
21-Jan-2012
23:17
System.resources.dll
4.0.30319.276
199,968
21-Jan-2012
23:17
mscorlib.resources.dll
4.0.30319.276
289,056
21-Jan-2012
22:59
System.Data.resources.dll
4.0.30319.276
329,512
21-Jan-2012
22:59
System.resources.dll
4.0.30319.276
202,528
21-Jan-2012
22:59
mscorlib.resources.dll
4.0.30319.276
314,144
21-Jan-2012
22:44
System.Data.resources.dll
4.0.30319.276
348,456
21-Jan-2012
22:44
System.resources.dll
4.0.30319.276
225,056
21-Jan-2012
22:44
mscorlib.resources.dll
4.0.30319.276
309,024
21-Jan-2012
22:26
System.Data.resources.dll
4.0.30319.276
344,872
21-Jan-2012
22:26
System.resources.dll
4.0.30319.276
219,936
21-Jan-2012
22:26
mscorlib.resources.dll
4.0.30319.276
323,872
21-Jan-2012
22:07
System.Data.resources.dll
4.0.30319.276
355,112
21-Jan-2012
22:08
System.resources.dll
4.0.30319.276
231,200
21-Jan-2012
22:08
mscorlib.resources.dll
4.0.30319.276
438,560
21-Jan-2012
21:50
System.Data.resources.dll
4.0.30319.276
424,232
21-Jan-2012
21:50
System.resources.dll
4.0.30319.276
320,800
21-Jan-2012
21:50
mscorlib.resources.dll
4.0.30319.276
317,216
21-Jan-2012
21:31
System.Data.resources.dll
4.0.30319.276
348,456
21-Jan-2012
21:31
System.resources.dll
4.0.30319.276
228,640
21-Jan-2012
21:31
mscorlib.resources.dll
4.0.30319.276
311,072
21-Jan-2012
21:16
System.Data.resources.dll
4.0.30319.276
342,312
21-Jan-2012
21:16
System.resources.dll
4.0.30319.276
219,936
21-Jan-2012
21:16
mscorlib.resources.dll
4.0.30319.276
322,336
21-Jan-2012
20:58
System.Data.resources.dll
4.0.30319.276
354,088
21-Jan-2012
20:58
System.resources.dll
4.0.30319.276
233,760
21-Jan-2012
20:58
mscorlib.resources.dll
4.0.30319.276
343,328
21-Jan-2012
20:42
System.Data.resources.dll
4.0.30319.276
367,400
21-Jan-2012
20:42
System.resources.dll
4.0.30319.276
244,000
21-Jan-2012
20:42
mscorlib.resources.dll
4.0.30319.276
327,968
21-Jan-2012
20:21
System.Data.resources.dll
4.0.30319.276
359,208
21-Jan-2012
20:21
System.resources.dll
4.0.30319.276
236,832
21-Jan-2012
20:21
mscorlib.resources.dll
4.0.30319.276
315,680
21-Jan-2012
20:02
System.Data.resources.dll
4.0.30319.276
348,456
21-Jan-2012
20:02
System.resources.dll
4.0.30319.276
226,080
21-Jan-2012
20:02
mscorlib.resources.dll
4.0.30319.276
329,504
21-Jan-2012
19:46
System.Data.resources.dll
4.0.30319.276
356,648
21-Jan-2012
19:47
System.resources.dll
4.0.30319.276
236,320
21-Jan-2012
19:47
mscorlib.resources.dll
4.0.30319.276
313,120
21-Jan-2012
19:29
System.Data.resources.dll
4.0.30319.276
352,040
21-Jan-2012
19:29
System.resources.dll
4.0.30319.276
226,592
21-Jan-2012
19:29
mscorlib.resources.dll
4.0.30319.276
301,344
21-Jan-2012
19:12
System.Data.resources.dll
4.0.30319.276
339,240
21-Jan-2012
19:12
System.resources.dll
4.0.30319.276
213,792
21-Jan-2012
19:12
mscorlib.resources.dll
4.0.30319.276
322,848
21-Jan-2012
18:57
System.Data.resources.dll
4.0.30319.276
355,624
21-Jan-2012
18:57
System.resources.dll
4.0.30319.276
228,640
21-Jan-2012
18:57
mscorlib.resources.dll
4.0.30319.276
314,144
21-Jan-2012
18:42
System.Data.resources.dll
4.0.30319.276
345,896
21-Jan-2012
18:42
System.resources.dll
4.0.30319.276
227,104
21-Jan-2012
18:42
mscorlib.resources.dll
4.0.30319.276
316,704
21-Jan-2012
18:26
System.Data.resources.dll
4.0.30319.276
349,480
21-Jan-2012
18:27
System.resources.dll
4.0.30319.276
227,616
21-Jan-2012
18:27
mscorlib.resources.dll
4.0.30319.276
408,864
21-Jan-2012
18:09
System.Data.resources.dll
4.0.30319.276
408,872
21-Jan-2012
18:09
System.resources.dll
4.0.30319.276
292,128
21-Jan-2012
18:09
mscorlib.resources.dll
4.0.30319.276
310,048
21-Jan-2012
17:53
System.Data.resources.dll
4.0.30319.276
342,312
21-Jan-2012
17:54
System.resources.dll
4.0.30319.276
218,400
21-Jan-2012
17:54
mscorlib.resources.dll
4.0.30319.276
307,488
21-Jan-2012
17:34
System.Data.resources.dll
4.0.30319.276
343,848
21-Jan-2012
17:34
System.resources.dll
4.0.30319.276
219,936
21-Jan-2012
17:34
For all supported x64-based versions of Windows for GDR service branch
Collapse this tableExpand this table
File name
File version
File size
Date
Time
vbc.exe
10.0.30319.276
3,236,608
22-Jan-2012
09:32
vbc.exe
10.0.30319.276
2,262,784
22-Jan-2012
01:35
clr.dll
4.0.30319.276
9,793,280
22-Jan-2012
09:31
clr.dll
4.0.30319.276
6,727,424
22-Jan-2012
01:34
mscordacwks.dll
4.0.30319.276
1,515,792
22-Jan-2012
09:32
mscordacwks.dll
4.0.30319.276
1,143,568
22-Jan-2012
01:34
mscordbi.dll
4.0.30319.276
1,455,376
22-Jan-2012
09:32
mscordbi.dll
4.0.30319.276
957,200
22-Jan-2012
01:34
mscorlib.dll
4.0.30319.276
4,970,768
22-Jan-2012
09:32
mscorlib.dll
4.0.30319.276
5,201,168
22-Jan-2012
01:34
nlssorting.dll
4.0.30319.276
68,880
22-Jan-2012
09:32
nlssorting.dll
4.0.30319.276
57,616
22-Jan-2012
01:34
PresentationCore.dll
4.0.30319.276
3,825,952
22-Jan-2012
09:33
PresentationCore.dll
4.0.30319.276
3,790,112
22-Jan-2012
01:38
PresentationFramework.dll
4.0.30319.276
6,429,992
22-Jan-2012
01:38
ServiceModelReg.exe
4.0.30319.276
261,912
22-Jan-2012
09:33
ServiceModelReg.exe
4.0.30319.276
192,792
22-Jan-2012
01:37
SOS.dll
4.0.30319.276
598,784
22-Jan-2012
09:32
SOS.dll
4.0.30319.276
518,400
22-Jan-2012
01:34
SqlWorkflowInstanceStoreLogic.sql
51,063
22-Jan-2012
02:37
SqlWorkflowInstanceStoreLogic.sql
51,063
21-Jan-2012
17:27
SqlWorkflowInstanceStoreSchema.sql
23,739
22-Jan-2012
02:37
SqlWorkflowInstanceStoreSchema.sql
23,739
21-Jan-2012
17:27
System.Activities.Core.Presentation.dll
4.0.30319.276
619,328
22-Jan-2012
01:37
System.Activities.dll
4.0.30319.276
1,269,536
22-Jan-2012
01:37
System.Activities.DurableInstancing.dll
4.0.30319.276
126,272
22-Jan-2012
01:37
System.Activities.Presentation.dll
4.0.30319.276
1,559,864
22-Jan-2012
01:37
System.IdentityModel.dll
4.0.30319.276
398,120
22-Jan-2012
01:37
System.Net.dll
4.0.30319.276
237,840
22-Jan-2012
01:36
System.Runtime.DurableInstancing.dll
4.0.30319.276
357,696
22-Jan-2012
01:37
System.Runtime.Serialization.dll
4.0.30319.276
1,039,160
22-Jan-2012
01:37
System.ServiceModel.Activities.dll
4.0.30319.276
537,912
22-Jan-2012
01:37
System.ServiceModel.dll
4.0.30319.276
6,102,816
22-Jan-2012
01:37
System.Data.dll
4.0.30319.276
3,174,160
22-Jan-2012
09:33
System.Data.dll
4.0.30319.276
3,027,216
22-Jan-2012
01:35
System.Deployment.dll
4.0.30319.276
840,992
22-Jan-2012
01:35
System.dll
4.0.30319.276
3,512,072
22-Jan-2012
01:35
System.XML.dll
4.0.30319.276
2,208,528
22-Jan-2012
01:36
WindowsBase.dll
4.0.30319.276
1,369,872
22-Jan-2012
01:38
System.Xml.Serialization.dll
4.0.30319.276
12,080
22-Jan-2012
01:37
aspnet_wp.exe
4.0.30319.276
41,744
22-Jan-2012
09:12
aspnet_wp.exe
4.0.30319.276
33,552
22-Jan-2012
00:12
Microsoft.Build.Tasks.v4.0.dll
4.0.30319.276
1,070,896
22-Jan-2012
00:11
Microsoft.CSharp.targets
13,031
22-Jan-2012
00:04
Microsoft.VisualBasic.targets
13,630
22-Jan-2012
00:04
microsoft.build.commontypes.xsd
195,804
22-Jan-2012
09:08
microsoft.build.commontypes.xsd
195,804
22-Jan-2012
00:04
PerfCounters.ini
154,222
22-Jan-2012
00:04
System.Web.Extensions.dll
4.0.30319.276
1,863,464
22-Jan-2012
00:11
System.Web.dll
4.0.30319.276
5,200,656
22-Jan-2012
09:12
System.Web.dll
4.0.30319.276
5,230,864
22-Jan-2012
00:12
webengine.dll
4.0.30319.276
16,656
22-Jan-2012
09:12
webengine.dll
4.0.30319.276
15,120
22-Jan-2012
00:12
webengine4.dll
4.0.30319.276
721,680
22-Jan-2012
09:12
webengine4.dll
4.0.30319.276
496,400
22-Jan-2012
00:12
XamlBuildTask.dll
4.0.30319.276
109,336
22-Jan-2012
00:12
mscorlib.resources.dll
4.0.30319.276
360,736
22-Jan-2012
08:54
mscorlib.resources.dll
4.0.30319.276
360,736
21-Jan-2012
23:52
System.Data.resources.dll
4.0.30319.276
372,008
22-Jan-2012
08:55
System.Data.resources.dll
4.0.30319.276
372,008
21-Jan-2012
23:52
System.resources.dll
4.0.30319.276
257,312
21-Jan-2012
23:52
mscorlib.resources.dll
4.0.30319.276
366,368
22-Jan-2012
08:37
mscorlib.resources.dll
4.0.30319.276
366,368
21-Jan-2012
23:34
System.Data.resources.dll
4.0.30319.276
375,080
22-Jan-2012
08:38
System.Data.resources.dll
4.0.30319.276
375,080
21-Jan-2012
23:34
System.resources.dll
4.0.30319.276
263,456
21-Jan-2012
23:34
mscorlib.resources.dll
4.0.30319.276
288,544
22-Jan-2012
08:18
mscorlib.resources.dll
4.0.30319.276
288,544
21-Jan-2012
23:16
System.Data.resources.dll
4.0.30319.276
326,952
22-Jan-2012
08:19
System.Data.resources.dll
4.0.30319.276
326,952
21-Jan-2012
23:17
System.resources.dll
4.0.30319.276
199,968
21-Jan-2012
23:17
mscorlib.resources.dll
4.0.30319.276
289,056
22-Jan-2012
08:02
mscorlib.resources.dll
4.0.30319.276
289,056
21-Jan-2012
22:59
System.Data.resources.dll
4.0.30319.276
329,512
22-Jan-2012
08:02
System.Data.resources.dll
4.0.30319.276
329,512
21-Jan-2012
22:59
System.resources.dll
4.0.30319.276
202,528
21-Jan-2012
22:59
mscorlib.resources.dll
4.0.30319.276
314,144
22-Jan-2012
07:47
mscorlib.resources.dll
4.0.30319.276
314,144
21-Jan-2012
22:44
System.Data.resources.dll
4.0.30319.276
348,456
22-Jan-2012
07:47
System.Data.resources.dll
4.0.30319.276
348,456
21-Jan-2012
22:44
System.resources.dll
4.0.30319.276
225,056
21-Jan-2012
22:44
mscorlib.resources.dll
4.0.30319.276
309,024
22-Jan-2012
07:30
mscorlib.resources.dll
4.0.30319.276
309,024
21-Jan-2012
22:26
System.Data.resources.dll
4.0.30319.276
344,872
22-Jan-2012
07:30
System.Data.resources.dll
4.0.30319.276
344,872
21-Jan-2012
22:26
System.resources.dll
4.0.30319.276
219,936
21-Jan-2012
22:26
mscorlib.resources.dll
4.0.30319.276
323,872
22-Jan-2012
07:14
mscorlib.resources.dll
4.0.30319.276
323,872
21-Jan-2012
22:07
System.Data.resources.dll
4.0.30319.276
355,112
22-Jan-2012
07:14
System.Data.resources.dll
4.0.30319.276
355,112
21-Jan-2012
22:08
System.resources.dll
4.0.30319.276
231,200
21-Jan-2012
22:08
mscorlib.resources.dll
4.0.30319.276
438,560
22-Jan-2012
06:56
mscorlib.resources.dll
4.0.30319.276
438,560
21-Jan-2012
21:50
System.Data.resources.dll
4.0.30319.276
424,232
22-Jan-2012
06:56
System.Data.resources.dll
4.0.30319.276
424,232
21-Jan-2012
21:50
System.resources.dll
4.0.30319.276
320,800
21-Jan-2012
21:50
mscorlib.resources.dll
4.0.30319.276
317,216
22-Jan-2012
06:39
mscorlib.resources.dll
4.0.30319.276
317,216
21-Jan-2012
21:31
System.Data.resources.dll
4.0.30319.276
348,456
22-Jan-2012
06:40
System.Data.resources.dll
4.0.30319.276
348,456
21-Jan-2012
21:31
System.resources.dll
4.0.30319.276
228,640
21-Jan-2012
21:31
mscorlib.resources.dll
4.0.30319.276
311,072
22-Jan-2012
06:24
mscorlib.resources.dll
4.0.30319.276
311,072
21-Jan-2012
21:16
System.Data.resources.dll
4.0.30319.276
342,312
22-Jan-2012
06:24
System.Data.resources.dll
4.0.30319.276
342,312
21-Jan-2012
21:16
System.resources.dll
4.0.30319.276
219,936
21-Jan-2012
21:16
mscorlib.resources.dll
4.0.30319.276
322,336
22-Jan-2012
06:06
mscorlib.resources.dll
4.0.30319.276
322,336
21-Jan-2012
20:58
System.Data.resources.dll
4.0.30319.276
354,088
22-Jan-2012
06:06
System.Data.resources.dll
4.0.30319.276
354,088
21-Jan-2012
20:58
System.resources.dll
4.0.30319.276
233,760
21-Jan-2012
20:58
mscorlib.resources.dll
4.0.30319.276
343,328
22-Jan-2012
05:51
mscorlib.resources.dll
4.0.30319.276
343,328
21-Jan-2012
20:42
System.Data.resources.dll
4.0.30319.276
367,400
22-Jan-2012
05:51
System.Data.resources.dll
4.0.30319.276
367,400
21-Jan-2012
20:42
System.resources.dll
4.0.30319.276
244,000
21-Jan-2012
20:42
mscorlib.resources.dll
4.0.30319.276
327,968
22-Jan-2012
05:34
mscorlib.resources.dll
4.0.30319.276
327,968
21-Jan-2012
20:21
System.Data.resources.dll
4.0.30319.276
359,208
22-Jan-2012
05:34
System.Data.resources.dll
4.0.30319.276
359,208
21-Jan-2012
20:21
System.resources.dll
4.0.30319.276
236,832
21-Jan-2012
20:21
mscorlib.resources.dll
4.0.30319.276
315,680
22-Jan-2012
05:19
mscorlib.resources.dll
4.0.30319.276
315,680
21-Jan-2012
20:02
System.Data.resources.dll
4.0.30319.276
348,456
22-Jan-2012
05:19
System.Data.resources.dll
4.0.30319.276
348,456
21-Jan-2012
20:02
System.resources.dll
4.0.30319.276
226,080
21-Jan-2012
20:02
mscorlib.resources.dll
4.0.30319.276
329,504
22-Jan-2012
05:02
mscorlib.resources.dll
4.0.30319.276
329,504
21-Jan-2012
19:46
System.Data.resources.dll
4.0.30319.276
356,648
22-Jan-2012
05:02
System.Data.resources.dll
4.0.30319.276
356,648
21-Jan-2012
19:47
System.resources.dll
4.0.30319.276
236,320
21-Jan-2012
19:47
mscorlib.resources.dll
4.0.30319.276
313,120
22-Jan-2012
04:47
mscorlib.resources.dll
4.0.30319.276
313,120
21-Jan-2012
19:29
System.Data.resources.dll
4.0.30319.276
352,040
22-Jan-2012
04:47
System.Data.resources.dll
4.0.30319.276
352,040
21-Jan-2012
19:29
System.resources.dll
4.0.30319.276
226,592
21-Jan-2012
19:29
mscorlib.resources.dll
4.0.30319.276
301,344
22-Jan-2012
04:32
mscorlib.resources.dll
4.0.30319.276
301,344
21-Jan-2012
19:12
System.Data.resources.dll
4.0.30319.276
339,240
22-Jan-2012
04:32
System.Data.resources.dll
4.0.30319.276
339,240
21-Jan-2012
19:12
System.resources.dll
4.0.30319.276
213,792
21-Jan-2012
19:12
mscorlib.resources.dll
4.0.30319.276
322,848
22-Jan-2012
04:15
mscorlib.resources.dll
4.0.30319.276
322,848
21-Jan-2012
18:57
System.Data.resources.dll
4.0.30319.276
355,624
22-Jan-2012
04:15
System.Data.resources.dll
4.0.30319.276
355,624
21-Jan-2012
18:57
System.resources.dll
4.0.30319.276
228,640
21-Jan-2012
18:57
mscorlib.resources.dll
4.0.30319.276
314,144
22-Jan-2012
04:00
mscorlib.resources.dll
4.0.30319.276
314,144
21-Jan-2012
18:42
System.Data.resources.dll
4.0.30319.276
345,896
22-Jan-2012
04:00
System.Data.resources.dll
4.0.30319.276
345,896
21-Jan-2012
18:42
System.resources.dll
4.0.30319.276
227,104
21-Jan-2012
18:42
mscorlib.resources.dll
4.0.30319.276
316,704
22-Jan-2012
03:42
mscorlib.resources.dll
4.0.30319.276
316,704
21-Jan-2012
18:26
System.Data.resources.dll
4.0.30319.276
349,480
22-Jan-2012
03:43
System.Data.resources.dll
4.0.30319.276
349,480
21-Jan-2012
18:27
System.resources.dll
4.0.30319.276
227,616
21-Jan-2012
18:27
mscorlib.resources.dll
4.0.30319.276
408,864
22-Jan-2012
03:27
mscorlib.resources.dll
4.0.30319.276
408,864
21-Jan-2012
18:09
System.Data.resources.dll
4.0.30319.276
408,872
22-Jan-2012
03:27
System.Data.resources.dll
4.0.30319.276
408,872
21-Jan-2012
18:09
System.resources.dll
4.0.30319.276
292,128
21-Jan-2012
18:09
mscorlib.resources.dll
4.0.30319.276
310,048
22-Jan-2012
03:06
mscorlib.resources.dll
4.0.30319.276
310,048
21-Jan-2012
17:53
System.Data.resources.dll
4.0.30319.276
342,312
22-Jan-2012
03:06
System.Data.resources.dll
4.0.30319.276
342,312
21-Jan-2012
17:54
System.resources.dll
4.0.30319.276
218,400
21-Jan-2012
17:54
mscorlib.resources.dll
4.0.30319.276
307,488
22-Jan-2012
02:43
mscorlib.resources.dll
4.0.30319.276
307,488
21-Jan-2012
17:34
System.Data.resources.dll
4.0.30319.276
343,848
22-Jan-2012
02:43
System.Data.resources.dll
4.0.30319.276
343,848
21-Jan-2012
17:34
System.resources.dll
4.0.30319.276
219,936
21-Jan-2012
17:34
For all supported IA-64–based versions of Windows for GDR service branch
Collapse this tableExpand this table
File name
File version
File size
Date
Time
vbc.exe
10.0.30319.276
6,429,440
22-Jan-2012
16:55
vbc.exe
10.0.30319.276
2,262,784
22-Jan-2012
01:35
clr.dll
4.0.30319.276
19,368,704
22-Jan-2012
16:54
clr.dll
4.0.30319.276
6,727,424
22-Jan-2012
01:34
mscordacwks.dll
4.0.30319.276
3,759,888
22-Jan-2012
16:54
mscordacwks.dll
4.0.30319.276
1,143,568
22-Jan-2012
01:34
mscordbi.dll
4.0.30319.276
3,296,528
22-Jan-2012
16:54
mscordbi.dll
4.0.30319.276
957,200
22-Jan-2012
01:34
mscorlib.dll
4.0.30319.276
4,469,008
22-Jan-2012
16:54
mscorlib.dll
4.0.30319.276
5,201,168
22-Jan-2012
01:34
nlssorting.dll
4.0.30319.276
145,168
22-Jan-2012
16:55
nlssorting.dll
4.0.30319.276
57,616
22-Jan-2012
01:34
PresentationCore.dll
4.0.30319.276
3,790,112
22-Jan-2012
01:38
PresentationFramework.dll
4.0.30319.276
6,429,992
22-Jan-2012
01:38
ServiceModelReg.exe
4.0.30319.276
545,560
22-Jan-2012
16:56
ServiceModelReg.exe
4.0.30319.276
192,792
22-Jan-2012
01:37
SOS.dll
4.0.30319.276
1,204,480
22-Jan-2012
16:55
SOS.dll
4.0.30319.276
518,400
22-Jan-2012
01:34
SqlWorkflowInstanceStoreLogic.sql
51,063
22-Jan-2012
10:34
SqlWorkflowInstanceStoreLogic.sql
51,063
21-Jan-2012
17:27
SqlWorkflowInstanceStoreSchema.sql
23,739
22-Jan-2012
10:34
SqlWorkflowInstanceStoreSchema.sql
23,739
21-Jan-2012
17:27
System.Activities.Core.Presentation.dll
4.0.30319.276
619,328
22-Jan-2012
01:37
System.Activities.dll
4.0.30319.276
1,269,536
22-Jan-2012
01:37
System.Activities.DurableInstancing.dll
4.0.30319.276
126,272
22-Jan-2012
01:37
System.Activities.Presentation.dll
4.0.30319.276
1,559,864
22-Jan-2012
01:37
System.IdentityModel.dll
4.0.30319.276
398,120
22-Jan-2012
01:37
System.Net.dll
4.0.30319.276
237,840
22-Jan-2012
01:36
System.Runtime.DurableInstancing.dll
4.0.30319.276
357,696
22-Jan-2012
01:37
System.Runtime.Serialization.dll
4.0.30319.276
1,039,160
22-Jan-2012
01:37
System.ServiceModel.Activities.dll
4.0.30319.276
537,912
22-Jan-2012
01:37
System.ServiceModel.dll
4.0.30319.276
6,102,816
22-Jan-2012
01:37
System.Data.dll
4.0.30319.276
3,365,648
22-Jan-2012
16:55
System.Data.dll
4.0.30319.276
3,027,216
22-Jan-2012
01:35
System.Deployment.dll
4.0.30319.276
840,992
22-Jan-2012
01:35
System.dll
4.0.30319.276
3,512,072
22-Jan-2012
01:35
System.XML.dll
4.0.30319.276
2,208,528
22-Jan-2012
01:36
WindowsBase.dll
4.0.30319.276
1,369,872
22-Jan-2012
01:38
System.Xml.Serialization.dll
4.0.30319.276
12,080
22-Jan-2012
01:37
aspnet_wp.exe
4.0.30319.276
81,168
22-Jan-2012
16:37
aspnet_wp.exe
4.0.30319.276
33,552
22-Jan-2012
00:12
Microsoft.Build.Tasks.v4.0.dll
4.0.30319.276
1,070,896
22-Jan-2012
00:11
Microsoft.CSharp.targets
13,031
22-Jan-2012
00:04
Microsoft.VisualBasic.targets
13,630
22-Jan-2012
00:04
microsoft.build.commontypes.xsd
195,804
22-Jan-2012
16:33
microsoft.build.commontypes.xsd
195,804
22-Jan-2012
00:04
PerfCounters.ini
154,222
22-Jan-2012
00:04
System.Web.Extensions.dll
4.0.30319.276
1,863,464
22-Jan-2012
00:11
System.Web.dll
4.0.30319.276
4,819,728
22-Jan-2012
16:37
System.Web.dll
4.0.30319.276
5,230,864
22-Jan-2012
00:12
webengine.dll
4.0.30319.276
26,384
22-Jan-2012
16:37
webengine.dll
4.0.30319.276
15,120
22-Jan-2012
00:12
webengine4.dll
4.0.30319.276
1,341,712
22-Jan-2012
16:37
webengine4.dll
4.0.30319.276
496,400
22-Jan-2012
00:12
XamlBuildTask.dll
4.0.30319.276
109,336
22-Jan-2012
00:12
mscorlib.resources.dll
4.0.30319.276
360,736
22-Jan-2012
16:24
mscorlib.resources.dll
4.0.30319.276
360,736
21-Jan-2012
23:52
System.Data.resources.dll
4.0.30319.276
372,008
22-Jan-2012
16:24
System.Data.resources.dll
4.0.30319.276
372,008
21-Jan-2012
23:52
System.resources.dll
4.0.30319.276
257,312
21-Jan-2012
23:52
mscorlib.resources.dll
4.0.30319.276
366,368
22-Jan-2012
16:10
mscorlib.resources.dll
4.0.30319.276
366,368
21-Jan-2012
23:34
System.Data.resources.dll
4.0.30319.276
375,080
22-Jan-2012
16:10
System.Data.resources.dll
4.0.30319.276
375,080
21-Jan-2012
23:34
System.resources.dll
4.0.30319.276
263,456
21-Jan-2012
23:34
mscorlib.resources.dll
4.0.30319.276
288,544
22-Jan-2012
15:51
mscorlib.resources.dll
4.0.30319.276
288,544
21-Jan-2012
23:16
System.Data.resources.dll
4.0.30319.276
326,952
22-Jan-2012
15:51
System.Data.resources.dll
4.0.30319.276
326,952
21-Jan-2012
23:17
System.resources.dll
4.0.30319.276
199,968
21-Jan-2012
23:17
mscorlib.resources.dll
4.0.30319.276
289,056
22-Jan-2012
15:35
mscorlib.resources.dll
4.0.30319.276
289,056
21-Jan-2012
22:59
System.Data.resources.dll
4.0.30319.276
329,512
22-Jan-2012
15:35
System.Data.resources.dll
4.0.30319.276
329,512
21-Jan-2012
22:59
System.resources.dll
4.0.30319.276
202,528
21-Jan-2012
22:59
mscorlib.resources.dll
4.0.30319.276
314,144
22-Jan-2012
15:21
mscorlib.resources.dll
4.0.30319.276
314,144
21-Jan-2012
22:44
System.Data.resources.dll
4.0.30319.276
348,456
22-Jan-2012
15:21
System.Data.resources.dll
4.0.30319.276
348,456
21-Jan-2012
22:44
System.resources.dll
4.0.30319.276
225,056
21-Jan-2012
22:44
mscorlib.resources.dll
4.0.30319.276
309,024
22-Jan-2012
15:04
mscorlib.resources.dll
4.0.30319.276
309,024
21-Jan-2012
22:26
System.Data.resources.dll
4.0.30319.276
344,872
22-Jan-2012
15:04
System.Data.resources.dll
4.0.30319.276
344,872
21-Jan-2012
22:26
System.resources.dll
4.0.30319.276
219,936
21-Jan-2012
22:26
mscorlib.resources.dll
4.0.30319.276
323,872
22-Jan-2012
14:49
mscorlib.resources.dll
4.0.30319.276
323,872
21-Jan-2012
22:07
System.Data.resources.dll
4.0.30319.276
355,112
22-Jan-2012
14:49
System.Data.resources.dll
4.0.30319.276
355,112
21-Jan-2012
22:08
System.resources.dll
4.0.30319.276
231,200
21-Jan-2012
22:08
mscorlib.resources.dll
4.0.30319.276
438,560
22-Jan-2012
14:35
mscorlib.resources.dll
4.0.30319.276
438,560
21-Jan-2012
21:50
System.Data.resources.dll
4.0.30319.276
424,232
22-Jan-2012
14:35
System.Data.resources.dll
4.0.30319.276
424,232
21-Jan-2012
21:50
System.resources.dll
4.0.30319.276
320,800
21-Jan-2012
21:50
mscorlib.resources.dll
4.0.30319.276
317,216
22-Jan-2012
14:18
mscorlib.resources.dll
4.0.30319.276
317,216
21-Jan-2012
21:31
System.Data.resources.dll
4.0.30319.276
348,456
22-Jan-2012
14:18
System.Data.resources.dll
4.0.30319.276
348,456
21-Jan-2012
21:31
System.resources.dll
4.0.30319.276
228,640
21-Jan-2012
21:31
mscorlib.resources.dll
4.0.30319.276
311,072
22-Jan-2012
14:04
mscorlib.resources.dll
4.0.30319.276
311,072
21-Jan-2012
21:16
System.Data.resources.dll
4.0.30319.276
342,312
22-Jan-2012
14:04
System.Data.resources.dll
4.0.30319.276
342,312
21-Jan-2012
21:16
System.resources.dll
4.0.30319.276
219,936
21-Jan-2012
21:16
mscorlib.resources.dll
4.0.30319.276
322,336
22-Jan-2012
13:50
mscorlib.resources.dll
4.0.30319.276
322,336
21-Jan-2012
20:58
System.Data.resources.dll
4.0.30319.276
354,088
22-Jan-2012
13:50
System.Data.resources.dll
4.0.30319.276
354,088
21-Jan-2012
20:58
System.resources.dll
4.0.30319.276
233,760
21-Jan-2012
20:58
mscorlib.resources.dll
4.0.30319.276
343,328
22-Jan-2012
13:36
mscorlib.resources.dll
4.0.30319.276
343,328
21-Jan-2012
20:42
System.Data.resources.dll
4.0.30319.276
367,400
22-Jan-2012
13:36
System.Data.resources.dll
4.0.30319.276
367,400
21-Jan-2012
20:42
System.resources.dll
4.0.30319.276
244,000
21-Jan-2012
20:42
mscorlib.resources.dll
4.0.30319.276
327,968
22-Jan-2012
13:19
mscorlib.resources.dll
4.0.30319.276
327,968
21-Jan-2012
20:21
System.Data.resources.dll
4.0.30319.276
359,208
22-Jan-2012
13:20
System.Data.resources.dll
4.0.30319.276
359,208
21-Jan-2012
20:21
System.resources.dll
4.0.30319.276
236,832
21-Jan-2012
20:21
mscorlib.resources.dll
4.0.30319.276
315,680
22-Jan-2012
13:05
mscorlib.resources.dll
4.0.30319.276
315,680
21-Jan-2012
20:02
System.Data.resources.dll
4.0.30319.276
348,456
22-Jan-2012
13:05
System.Data.resources.dll
4.0.30319.276
348,456
21-Jan-2012
20:02
System.resources.dll
4.0.30319.276
226,080
21-Jan-2012
20:02
mscorlib.resources.dll
4.0.30319.276
329,504
22-Jan-2012
12:49
mscorlib.resources.dll
4.0.30319.276
329,504
21-Jan-2012
19:46
System.Data.resources.dll
4.0.30319.276
356,648
22-Jan-2012
12:49
System.Data.resources.dll
4.0.30319.276
356,648
21-Jan-2012
19:47
System.resources.dll
4.0.30319.276
236,320
21-Jan-2012
19:47
mscorlib.resources.dll
4.0.30319.276
313,120
22-Jan-2012
12:35
mscorlib.resources.dll
4.0.30319.276
313,120
21-Jan-2012
19:29
System.Data.resources.dll
4.0.30319.276
352,040
22-Jan-2012
12:35
System.Data.resources.dll
4.0.30319.276
352,040
21-Jan-2012
19:29
System.resources.dll
4.0.30319.276
226,592
21-Jan-2012
19:29
mscorlib.resources.dll
4.0.30319.276
301,344
22-Jan-2012
12:19
mscorlib.resources.dll
4.0.30319.276
301,344
21-Jan-2012
19:12
System.Data.resources.dll
4.0.30319.276
339,240
22-Jan-2012
12:19
System.Data.resources.dll
4.0.30319.276
339,240
21-Jan-2012
19:12
System.resources.dll
4.0.30319.276
213,792
21-Jan-2012
19:12
mscorlib.resources.dll
4.0.30319.276
322,848
22-Jan-2012
12:02
mscorlib.resources.dll
4.0.30319.276
322,848
21-Jan-2012
18:57
System.Data.resources.dll
4.0.30319.276
355,624
22-Jan-2012
12:02
System.Data.resources.dll
4.0.30319.276
355,624
21-Jan-2012
18:57
System.resources.dll
4.0.30319.276
228,640
21-Jan-2012
18:57
mscorlib.resources.dll
4.0.30319.276
314,144
22-Jan-2012
11:46
mscorlib.resources.dll
4.0.30319.276
314,144
21-Jan-2012
18:42
System.Data.resources.dll
4.0.30319.276
345,896
22-Jan-2012
11:46
System.Data.resources.dll
4.0.30319.276
345,896
21-Jan-2012
18:42
System.resources.dll
4.0.30319.276
227,104
21-Jan-2012
18:42
mscorlib.resources.dll
4.0.30319.276
316,704
22-Jan-2012
11:30
mscorlib.resources.dll
4.0.30319.276
316,704
21-Jan-2012
18:26
System.Data.resources.dll
4.0.30319.276
349,480
22-Jan-2012
11:30
System.Data.resources.dll
4.0.30319.276
349,480
21-Jan-2012
18:27
System.resources.dll
4.0.30319.276
227,616
21-Jan-2012
18:27
mscorlib.resources.dll
4.0.30319.276
408,864
22-Jan-2012
11:16
mscorlib.resources.dll
4.0.30319.276
408,864
21-Jan-2012
18:09
System.Data.resources.dll
4.0.30319.276
408,872
22-Jan-2012
11:16
System.Data.resources.dll
4.0.30319.276
408,872
21-Jan-2012
18:09
System.resources.dll
4.0.30319.276
292,128
21-Jan-2012
18:09
mscorlib.resources.dll
4.0.30319.276
310,048
22-Jan-2012
10:57
mscorlib.resources.dll
4.0.30319.276
310,048
21-Jan-2012
17:53
System.Data.resources.dll
4.0.30319.276
342,312
22-Jan-2012
10:58
System.Data.resources.dll
4.0.30319.276
342,312
21-Jan-2012
17:54
System.resources.dll
4.0.30319.276
218,400
21-Jan-2012
17:54
mscorlib.resources.dll
4.0.30319.276
307,488
22-Jan-2012
10:39
mscorlib.resources.dll
4.0.30319.276
307,488
21-Jan-2012
17:34
System.Data.resources.dll
4.0.30319.276
343,848
22-Jan-2012
10:39
System.Data.resources.dll
4.0.30319.276
343,848
21-Jan-2012
17:34
System.resources.dll
4.0.30319.276
219,936
21-Jan-2012
17:34
For all supported x86-based versions of Windows for LDR service branch
Collapse this tableExpand this table
File name
File version
File size
Date
Time
vbc.exe
10.0.30319.551
2,262,272
20-Jan-2012
22:37
clr.dll
4.0.30319.551
6,727,424
20-Jan-2012
22:37
mscordacwks.dll
4.0.30319.551
1,143,568
20-Jan-2012
22:37
mscordbi.dll
4.0.30319.551
956,688
20-Jan-2012
22:37
mscorlib.dll
4.0.30319.551
5,202,192
20-Jan-2012
22:37
nlssorting.dll
4.0.30319.551
57,104
20-Jan-2012
22:37
PresentationCore.dll
4.0.30319.551
3,792,160
20-Jan-2012
22:41
PresentationFramework.dll
4.0.30319.551
6,432,552
20-Jan-2012
22:41
ServiceModelReg.exe
4.0.30319.551
192,792
20-Jan-2012
22:39
Setup.exe
10.0.30319.551
79,112
20-Jan-2012
15:10
SetupEngine.dll
10.0.30319.551
810,768
20-Jan-2012
15:10
SetupUi.dll
10.0.30319.551
296,712
20-Jan-2012
15:10
SOS.dll
4.0.30319.551
517,888
20-Jan-2012
22:37
SqlWorkflowInstanceStoreLogic.sql
51,063
20-Jan-2012
15:02
SqlWorkflowInstanceStoreSchema.sql
23,739
20-Jan-2012
15:02
System.Activities.Core.Presentation.dll
4.0.30319.551
619,328
20-Jan-2012
22:40
System.Activities.dll
4.0.30319.551
1,272,608
20-Jan-2012
22:40
System.Activities.DurableInstancing.dll
4.0.30319.551
126,272
20-Jan-2012
22:40
System.Activities.Presentation.dll
4.0.30319.551
1,559,864
20-Jan-2012
22:40
System.IdentityModel.dll
4.0.30319.551
398,632
20-Jan-2012
22:40
System.Net.dll
4.0.30319.551
237,840
20-Jan-2012
22:39
System.Runtime.DurableInstancing.dll
4.0.30319.551
357,696
20-Jan-2012
22:40
System.Runtime.Serialization.dll
4.0.30319.551
1,039,160
20-Jan-2012
22:40
System.ServiceModel.Activities.dll
4.0.30319.551
537,912
20-Jan-2012
22:40
System.ServiceModel.dll
4.0.30319.551
6,115,616
20-Jan-2012
22:40
System.Data.dll
4.0.30319.551
3,027,728
20-Jan-2012
22:38
System.Data.SqlXml.dll
4.0.30319.551
752,928
20-Jan-2012
22:38
System.Deployment.dll
4.0.30319.551
840,992
20-Jan-2012
22:38
System.dll
4.0.30319.551
3,512,584
20-Jan-2012
22:38
System.XML.dll
4.0.30319.551
2,208,528
20-Jan-2012
22:39
WindowsBase.dll
4.0.30319.551
1,372,432
20-Jan-2012
22:41
System.Xml.Serialization.dll
4.0.30319.551
12,080
20-Jan-2012
22:40
aspnet_wp.exe
4.0.30319.551
33,552
20-Jan-2012
22:08
Microsoft.Build.Tasks.v4.0.dll
4.0.30319.551
1,070,896
20-Jan-2012
22:08
Microsoft.CSharp.targets
13,031
20-Jan-2012
22:02
Microsoft.VisualBasic.targets
13,630
20-Jan-2012
22:02
microsoft.build.commontypes.xsd
195,804
20-Jan-2012
22:02
PerfCounters.ini
154,222
20-Jan-2012
22:03
System.Web.Extensions.dll
4.0.30319.551
1,863,976
20-Jan-2012
22:07
System.Web.dll
4.0.30319.551
5,231,888
20-Jan-2012
22:08
webengine.dll
4.0.30319.551
15,120
20-Jan-2012
22:08
webengine4.dll
4.0.30319.551
496,400
20-Jan-2012
22:08
XamlBuildTask.dll
4.0.30319.551
109,336
20-Jan-2012
22:08
mscorlib.resources.dll
4.0.30319.551
360,736
20-Jan-2012
21:51
System.Data.resources.dll
4.0.30319.551
372,008
20-Jan-2012
21:51
system.data.sqlxml.resources.dll
4.0.30319.551
40,248
20-Jan-2012
21:51
System.resources.dll
4.0.30319.551
257,312
20-Jan-2012
21:51
System.RunTime.Serialization.resources.dll
4.0.30319.551
119,624
20-Jan-2012
21:51
System.xml.resources.dll
4.0.30319.551
180,520
20-Jan-2012
21:51
mscorlib.resources.dll
4.0.30319.551
366,368
20-Jan-2012
21:36
System.Data.resources.dll
4.0.30319.551
375,080
20-Jan-2012
21:37
system.data.sqlxml.resources.dll
4.0.30319.551
39,736
20-Jan-2012
21:37
System.resources.dll
4.0.30319.551
263,456
20-Jan-2012
21:37
System.RunTime.Serialization.resources.dll
4.0.30319.551
120,136
20-Jan-2012
21:36
System.xml.resources.dll
4.0.30319.551
182,056
20-Jan-2012
21:37
mscorlib.resources.dll
4.0.30319.551
288,544
20-Jan-2012
21:19
System.Data.resources.dll
4.0.30319.551
326,952
20-Jan-2012
21:20
system.data.sqlxml.resources.dll
4.0.30319.551
33,080
20-Jan-2012
21:20
System.resources.dll
4.0.30319.551
199,968
20-Jan-2012
21:20
System.RunTime.Serialization.resources.dll
4.0.30319.551
94,536
20-Jan-2012
21:19
System.xml.resources.dll
4.0.30319.551
142,120
20-Jan-2012
21:20
mscorlib.resources.dll
4.0.30319.551
289,056
20-Jan-2012
21:04
System.Data.resources.dll
4.0.30319.551
329,512
20-Jan-2012
21:05
system.data.sqlxml.resources.dll
4.0.30319.551
32,568
20-Jan-2012
21:05
System.resources.dll
4.0.30319.551
202,528
20-Jan-2012
21:05
System.RunTime.Serialization.resources.dll
4.0.30319.551
93,512
20-Jan-2012
21:04
System.xml.resources.dll
4.0.30319.551
142,632
20-Jan-2012
21:05
mscorlib.resources.dll
4.0.30319.551
314,144
20-Jan-2012
20:44
System.Data.resources.dll
4.0.30319.551
348,456
20-Jan-2012
20:44
system.data.sqlxml.resources.dll
4.0.30319.551
34,104
20-Jan-2012
20:44
System.resources.dll
4.0.30319.551
225,056
20-Jan-2012
20:44
System.RunTime.Serialization.resources.dll
4.0.30319.551
100,168
20-Jan-2012
20:44
System.xml.resources.dll
4.0.30319.551
155,432
20-Jan-2012
20:44
mscorlib.resources.dll
4.0.30319.551
309,024
20-Jan-2012
20:25
System.Data.resources.dll
4.0.30319.551
344,872
20-Jan-2012
20:25
system.data.sqlxml.resources.dll
4.0.30319.551
35,128
20-Jan-2012
20:25
System.resources.dll
4.0.30319.551
219,936
20-Jan-2012
20:25
System.RunTime.Serialization.resources.dll
4.0.30319.551
101,192
20-Jan-2012
20:24
System.xml.resources.dll
4.0.30319.551
153,896
20-Jan-2012
20:25
mscorlib.resources.dll
4.0.30319.551
323,872
20-Jan-2012
20:07
System.Data.resources.dll
4.0.30319.551
355,112
20-Jan-2012
20:07
system.data.sqlxml.resources.dll
4.0.30319.551
36,664
20-Jan-2012
20:07
System.resources.dll
4.0.30319.551
231,200
20-Jan-2012
20:07
System.RunTime.Serialization.resources.dll
4.0.30319.551
108,360
20-Jan-2012
20:07
System.xml.resources.dll
4.0.30319.551
162,600
20-Jan-2012
20:07
mscorlib.resources.dll
4.0.30319.551
438,560
20-Jan-2012
19:46
System.Data.resources.dll
4.0.30319.551
424,232
20-Jan-2012
19:46
system.data.sqlxml.resources.dll
4.0.30319.551
47,416
20-Jan-2012
19:46
System.resources.dll
4.0.30319.551
320,800
20-Jan-2012
19:46
System.RunTime.Serialization.resources.dll
4.0.30319.551
150,344
20-Jan-2012
19:45
System.xml.resources.dll
4.0.30319.551
227,624
20-Jan-2012
19:46
mscorlib.resources.dll
4.0.30319.551
317,216
20-Jan-2012
19:26
System.Data.resources.dll
4.0.30319.551
348,456
20-Jan-2012
19:27
system.data.sqlxml.resources.dll
4.0.30319.551
35,640
20-Jan-2012
19:27
System.resources.dll
4.0.30319.551
228,640
20-Jan-2012
19:27
System.RunTime.Serialization.resources.dll
4.0.30319.551
105,288
20-Jan-2012
19:26
System.xml.resources.dll
4.0.30319.551
159,016
20-Jan-2012
19:27
mscorlib.resources.dll
4.0.30319.551
311,072
20-Jan-2012
19:05
System.Data.resources.dll
4.0.30319.551
342,312
20-Jan-2012
19:05
system.data.sqlxml.resources.dll
4.0.30319.551
34,104
20-Jan-2012
19:05
System.resources.dll
4.0.30319.551
219,936
20-Jan-2012
19:05
System.RunTime.Serialization.resources.dll
4.0.30319.551
100,168
20-Jan-2012
19:05
System.xml.resources.dll
4.0.30319.551
152,360
20-Jan-2012
19:05
mscorlib.resources.dll
4.0.30319.551
322,336
20-Jan-2012
18:47
System.Data.resources.dll
4.0.30319.551
354,088
20-Jan-2012
18:48
system.data.sqlxml.resources.dll
4.0.30319.551
36,152
20-Jan-2012
18:48
System.resources.dll
4.0.30319.551
233,760
20-Jan-2012
18:48
System.RunTime.Serialization.resources.dll
4.0.30319.551
108,360
20-Jan-2012
18:47
System.xml.resources.dll
4.0.30319.551
163,624
20-Jan-2012
18:48
mscorlib.resources.dll
4.0.30319.551
343,328
20-Jan-2012
18:28
System.Data.resources.dll
4.0.30319.551
367,400
20-Jan-2012
18:29
system.data.sqlxml.resources.dll
4.0.30319.551
39,224
20-Jan-2012
18:29
System.resources.dll
4.0.30319.551
244,000
20-Jan-2012
18:28
System.RunTime.Serialization.resources.dll
4.0.30319.551
119,112
20-Jan-2012
18:28
System.xml.resources.dll
4.0.30319.551
174,888
20-Jan-2012
18:29
mscorlib.resources.dll
4.0.30319.551
327,968
20-Jan-2012
18:14
System.Data.resources.dll
4.0.30319.551
359,208
20-Jan-2012
18:14
system.data.sqlxml.resources.dll
4.0.30319.551
37,176
20-Jan-2012
18:14
System.resources.dll
4.0.30319.551
236,832
20-Jan-2012
18:14
System.RunTime.Serialization.resources.dll
4.0.30319.551
109,384
20-Jan-2012
18:13
System.xml.resources.dll
4.0.30319.551
167,720
20-Jan-2012
18:14
mscorlib.resources.dll
4.0.30319.551
315,680
20-Jan-2012
17:55
System.Data.resources.dll
4.0.30319.551
348,456
20-Jan-2012
17:55
system.data.sqlxml.resources.dll
4.0.30319.551
35,640
20-Jan-2012
17:55
System.resources.dll
4.0.30319.551
226,080
20-Jan-2012
17:55
System.RunTime.Serialization.resources.dll
4.0.30319.551
103,752
20-Jan-2012
17:55
System.xml.resources.dll
4.0.30319.551
159,016
20-Jan-2012
17:55
mscorlib.resources.dll
4.0.30319.551
329,504
20-Jan-2012
17:36
System.Data.resources.dll
4.0.30319.551
356,648
20-Jan-2012
17:36
system.data.sqlxml.resources.dll
4.0.30319.551
37,176
20-Jan-2012
17:36
System.resources.dll
4.0.30319.551
236,320
20-Jan-2012
17:36
System.RunTime.Serialization.resources.dll
4.0.30319.551
109,896
20-Jan-2012
17:35
System.xml.resources.dll
4.0.30319.551
167,720
20-Jan-2012
17:36
mscorlib.resources.dll
4.0.30319.551
313,120
20-Jan-2012
17:19
System.Data.resources.dll
4.0.30319.551
352,040
20-Jan-2012
17:19
system.data.sqlxml.resources.dll
4.0.30319.551
35,128
20-Jan-2012
17:19
System.resources.dll
4.0.30319.551
226,592
20-Jan-2012
17:19
System.RunTime.Serialization.resources.dll
4.0.30319.551
102,728
20-Jan-2012
17:19
System.xml.resources.dll
4.0.30319.551
158,504
20-Jan-2012
17:19
mscorlib.resources.dll
4.0.30319.551
301,344
20-Jan-2012
17:04
System.Data.resources.dll
4.0.30319.551
339,240
20-Jan-2012
17:04
system.data.sqlxml.resources.dll
4.0.30319.551
34,104
20-Jan-2012
17:04
System.resources.dll
4.0.30319.551
213,792
20-Jan-2012
17:04
System.RunTime.Serialization.resources.dll
4.0.30319.551
97,608
20-Jan-2012
17:04
System.xml.resources.dll
4.0.30319.551
150,312
20-Jan-2012
17:05
mscorlib.resources.dll
4.0.30319.551
322,848
20-Jan-2012
16:47
System.Data.resources.dll
4.0.30319.551
355,624
20-Jan-2012
16:47
system.data.sqlxml.resources.dll
4.0.30319.551
36,152
20-Jan-2012
16:47
System.resources.dll
4.0.30319.551
228,640
20-Jan-2012
16:47
System.RunTime.Serialization.resources.dll
4.0.30319.551
109,384
20-Jan-2012
16:46
System.xml.resources.dll
4.0.30319.551
166,184
20-Jan-2012
16:47
mscorlib.resources.dll
4.0.30319.551
314,144
20-Jan-2012
16:27
System.Data.resources.dll
4.0.30319.551
345,896
20-Jan-2012
16:27
system.data.sqlxml.resources.dll
4.0.30319.551
35,640
20-Jan-2012
16:28
System.resources.dll
4.0.30319.551
227,104
20-Jan-2012
16:27
System.RunTime.Serialization.resources.dll
4.0.30319.551
101,704
20-Jan-2012
16:27
System.xml.resources.dll
4.0.30319.551
156,456
20-Jan-2012
16:28
mscorlib.resources.dll
4.0.30319.551
316,704
20-Jan-2012
16:08
System.Data.resources.dll
4.0.30319.551
349,480
20-Jan-2012
16:08
system.data.sqlxml.resources.dll
4.0.30319.551
35,640
20-Jan-2012
16:08
System.resources.dll
4.0.30319.551
227,616
20-Jan-2012
16:08
System.RunTime.Serialization.resources.dll
4.0.30319.551
104,776
20-Jan-2012
16:08
System.xml.resources.dll
4.0.30319.551
160,040
20-Jan-2012
16:08
mscorlib.resources.dll
4.0.30319.551
408,864
20-Jan-2012
15:49
System.Data.resources.dll
4.0.30319.551
408,872
20-Jan-2012
15:49
system.data.sqlxml.resources.dll
4.0.30319.551
43,832
20-Jan-2012
15:49
System.resources.dll
4.0.30319.551
292,128
20-Jan-2012
15:49
System.RunTime.Serialization.resources.dll
4.0.30319.551
139,592
20-Jan-2012
15:49
System.xml.resources.dll
4.0.30319.551
212,776
20-Jan-2012
15:49
mscorlib.resources.dll
4.0.30319.551
310,048
20-Jan-2012
15:32
System.Data.resources.dll
4.0.30319.551
342,312
20-Jan-2012
15:32
system.data.sqlxml.resources.dll
4.0.30319.551
34,616
20-Jan-2012
15:32
System.resources.dll
4.0.30319.551
218,400
20-Jan-2012
15:32
System.RunTime.Serialization.resources.dll
4.0.30319.551
98,120
20-Jan-2012
15:32
System.xml.resources.dll
4.0.30319.551
153,384
20-Jan-2012
15:32
mscorlib.resources.dll
4.0.30319.551
307,488
20-Jan-2012
15:11
System.Data.resources.dll
4.0.30319.551
343,848
20-Jan-2012
15:11
system.data.sqlxml.resources.dll
4.0.30319.551
34,616
20-Jan-2012
15:11
System.resources.dll
4.0.30319.551
219,936
20-Jan-2012
15:11
System.RunTime.Serialization.resources.dll
4.0.30319.551
101,704
20-Jan-2012
15:10
System.xml.resources.dll
4.0.30319.551
153,384
20-Jan-2012
15:11
For all supported x64-based versions of Windows for LDR service branch
Collapse this tableExpand this table
File name
File version
File size
Date
Time
vbc.exe
10.0.30319.551
3,237,120
21-Jan-2012
06:30
vbc.exe
10.0.30319.551
2,262,272
20-Jan-2012
22:37
clr.dll
4.0.30319.551
9,792,768
21-Jan-2012
06:29
clr.dll
4.0.30319.551
6,727,424
20-Jan-2012
22:37
mscordacwks.dll
4.0.30319.551
1,515,792
21-Jan-2012
06:29
mscordacwks.dll
4.0.30319.551
1,143,568
20-Jan-2012
22:37
mscordbi.dll
4.0.30319.551
1,455,376
21-Jan-2012
06:29
mscordbi.dll
4.0.30319.551
956,688
20-Jan-2012
22:37
mscorlib.dll
4.0.30319.551
4,971,792
21-Jan-2012
06:29
mscorlib.dll
4.0.30319.551
5,202,192
20-Jan-2012
22:37
nlssorting.dll
4.0.30319.551
68,368
21-Jan-2012
06:29
nlssorting.dll
4.0.30319.551
57,104
20-Jan-2012
22:37
PresentationCore.dll
4.0.30319.551
3,827,488
21-Jan-2012
06:30
PresentationCore.dll
4.0.30319.551
3,792,160
20-Jan-2012
22:41
PresentationFramework.dll
4.0.30319.551
6,432,552
20-Jan-2012
22:41
ServiceModelReg.exe
4.0.30319.551
261,912
21-Jan-2012
06:30
ServiceModelReg.exe
4.0.30319.551
192,792
20-Jan-2012
22:39
Setup.exe
10.0.30319.551
79,112
20-Jan-2012
15:10
SetupEngine.dll
10.0.30319.551
810,768
20-Jan-2012
15:10
SetupUi.dll
10.0.30319.551
296,712
20-Jan-2012
15:10
SOS.dll
4.0.30319.551
598,784
21-Jan-2012
06:29
SOS.dll
4.0.30319.551
517,888
20-Jan-2012
22:37
SqlWorkflowInstanceStoreLogic.sql
51,063
21-Jan-2012
00:04
SqlWorkflowInstanceStoreLogic.sql
51,063
20-Jan-2012
15:02
SqlWorkflowInstanceStoreSchema.sql
23,739
21-Jan-2012
00:04
SqlWorkflowInstanceStoreSchema.sql
23,739
20-Jan-2012
15:02
System.Activities.Core.Presentation.dll
4.0.30319.551
619,328
20-Jan-2012
22:40
System.Activities.dll
4.0.30319.551
1,272,608
20-Jan-2012
22:40
System.Activities.DurableInstancing.dll
4.0.30319.551
126,272
20-Jan-2012
22:40
System.Activities.Presentation.dll
4.0.30319.551
1,559,864
20-Jan-2012
22:40
System.IdentityModel.dll
4.0.30319.551
398,632
20-Jan-2012
22:40
System.Net.dll
4.0.30319.551
237,840
20-Jan-2012
22:39
System.Runtime.DurableInstancing.dll
4.0.30319.551
357,696
20-Jan-2012
22:40
System.Runtime.Serialization.dll
4.0.30319.551
1,039,160
20-Jan-2012
22:40
System.ServiceModel.Activities.dll
4.0.30319.551
537,912
20-Jan-2012
22:40
System.ServiceModel.dll
4.0.30319.551
6,115,616
20-Jan-2012
22:40
System.Data.dll
4.0.30319.551
3,174,160
21-Jan-2012
06:30
System.Data.dll
4.0.30319.551
3,027,728
20-Jan-2012
22:38
System.Data.SqlXml.dll
4.0.30319.551
752,928
20-Jan-2012
22:38
System.Deployment.dll
4.0.30319.551
840,992
20-Jan-2012
22:38
System.dll
4.0.30319.551
3,512,584
20-Jan-2012
22:38
System.XML.dll
4.0.30319.551
2,208,528
20-Jan-2012
22:39
WindowsBase.dll
4.0.30319.551
1,372,432
20-Jan-2012
22:41
System.Xml.Serialization.dll
4.0.30319.551
12,080
20-Jan-2012
22:40
aspnet_wp.exe
4.0.30319.551
41,744
21-Jan-2012
06:12
aspnet_wp.exe
4.0.30319.551
33,552
20-Jan-2012
22:08
Microsoft.Build.Tasks.v4.0.dll
4.0.30319.551
1,070,896
20-Jan-2012
22:08
Microsoft.CSharp.targets
13,031
20-Jan-2012
22:02
Microsoft.VisualBasic.targets
13,630
20-Jan-2012
22:02
microsoft.build.commontypes.xsd
195,804
21-Jan-2012
06:09
microsoft.build.commontypes.xsd
195,804
20-Jan-2012
22:02
PerfCounters.ini
154,222
20-Jan-2012
22:03
System.Web.Extensions.dll
4.0.30319.551
1,863,976
20-Jan-2012
22:07
System.Web.dll
4.0.30319.551
5,201,168
21-Jan-2012
06:12
System.Web.dll
4.0.30319.551
5,231,888
20-Jan-2012
22:08
webengine.dll
4.0.30319.551
16,656
21-Jan-2012
06:13
webengine.dll
4.0.30319.551
15,120
20-Jan-2012
22:08
webengine4.dll
4.0.30319.551
721,680
21-Jan-2012
06:13
webengine4.dll
4.0.30319.551
496,400
20-Jan-2012
22:08
XamlBuildTask.dll
4.0.30319.551
109,336
20-Jan-2012
22:08
mscorlib.resources.dll
4.0.30319.551
360,736
21-Jan-2012
05:59
mscorlib.resources.dll
4.0.30319.551
360,736
20-Jan-2012
21:51
System.Data.resources.dll
4.0.30319.551
372,008
21-Jan-2012
05:59
System.Data.resources.dll
4.0.30319.551
372,008
20-Jan-2012
21:51
system.data.sqlxml.resources.dll
4.0.30319.551
40,248
20-Jan-2012
21:51
System.resources.dll
4.0.30319.551
257,312
20-Jan-2012
21:51
System.RunTime.Serialization.resources.dll
4.0.30319.551
119,624
20-Jan-2012
21:51
System.xml.resources.dll
4.0.30319.551
180,520
20-Jan-2012
21:51
mscorlib.resources.dll
4.0.30319.551
366,368
21-Jan-2012
05:44
mscorlib.resources.dll
4.0.30319.551
366,368
20-Jan-2012
21:36
System.Data.resources.dll
4.0.30319.551
375,080
21-Jan-2012
05:44
System.Data.resources.dll
4.0.30319.551
375,080
20-Jan-2012
21:37
system.data.sqlxml.resources.dll
4.0.30319.551
39,736
20-Jan-2012
21:37
System.resources.dll
4.0.30319.551
263,456
20-Jan-2012
21:37
System.RunTime.Serialization.resources.dll
4.0.30319.551
120,136
20-Jan-2012
21:36
System.xml.resources.dll
4.0.30319.551
182,056
20-Jan-2012
21:37
mscorlib.resources.dll
4.0.30319.551
288,544
21-Jan-2012
05:30
mscorlib.resources.dll
4.0.30319.551
288,544
20-Jan-2012
21:19
System.Data.resources.dll
4.0.30319.551
326,952
21-Jan-2012
05:30
System.Data.resources.dll
4.0.30319.551
326,952
20-Jan-2012
21:20
system.data.sqlxml.resources.dll
4.0.30319.551
33,080
20-Jan-2012
21:20
System.resources.dll
4.0.30319.551
199,968
20-Jan-2012
21:20
System.RunTime.Serialization.resources.dll
4.0.30319.551
94,536
20-Jan-2012
21:19
System.xml.resources.dll
4.0.30319.551
142,120
20-Jan-2012
21:20
mscorlib.resources.dll
4.0.30319.551
289,056
21-Jan-2012
05:13
mscorlib.resources.dll
4.0.30319.551
289,056
20-Jan-2012
21:04
System.Data.resources.dll
4.0.30319.551
329,512
21-Jan-2012
05:14
System.Data.resources.dll
4.0.30319.551
329,512
20-Jan-2012
21:05
system.data.sqlxml.resources.dll
4.0.30319.551
32,568
20-Jan-2012
21:05
System.resources.dll
4.0.30319.551
202,528
20-Jan-2012
21:05
System.RunTime.Serialization.resources.dll
4.0.30319.551
93,512
20-Jan-2012
21:04
System.xml.resources.dll
4.0.30319.551
142,632
20-Jan-2012
21:05
mscorlib.resources.dll
4.0.30319.551
314,144
21-Jan-2012
04:59
mscorlib.resources.dll
4.0.30319.551
314,144
20-Jan-2012
20:44
System.Data.resources.dll
4.0.30319.551
348,456
21-Jan-2012
04:59
System.Data.resources.dll
4.0.30319.551
348,456
20-Jan-2012
20:44
system.data.sqlxml.resources.dll
4.0.30319.551
34,104
20-Jan-2012
20:44
System.resources.dll
4.0.30319.551
225,056
20-Jan-2012
20:44
System.RunTime.Serialization.resources.dll
4.0.30319.551
100,168
20-Jan-2012
20:44
System.xml.resources.dll
4.0.30319.551
155,432
20-Jan-2012
20:44
mscorlib.resources.dll
4.0.30319.551
309,024
21-Jan-2012
04:44
mscorlib.resources.dll
4.0.30319.551
309,024
20-Jan-2012
20:25
System.Data.resources.dll
4.0.30319.551
344,872
21-Jan-2012
04:45
System.Data.resources.dll
4.0.30319.551
344,872
20-Jan-2012
20:25
system.data.sqlxml.resources.dll
4.0.30319.551
35,128
20-Jan-2012
20:25
System.resources.dll
4.0.30319.551
219,936
20-Jan-2012
20:25
System.RunTime.Serialization.resources.dll
4.0.30319.551
101,192
20-Jan-2012
20:24
System.xml.resources.dll
4.0.30319.551
153,896
20-Jan-2012
20:25
mscorlib.resources.dll
4.0.30319.551
323,872
21-Jan-2012
04:25
mscorlib.resources.dll
4.0.30319.551
323,872
20-Jan-2012
20:07
System.Data.resources.dll
4.0.30319.551
355,112
21-Jan-2012
04:25
System.Data.resources.dll
4.0.30319.551
355,112
20-Jan-2012
20:07
system.data.sqlxml.resources.dll
4.0.30319.551
36,664
20-Jan-2012
20:07
System.resources.dll
4.0.30319.551
231,200
20-Jan-2012
20:07
System.RunTime.Serialization.resources.dll
4.0.30319.551
108,360
20-Jan-2012
20:07
System.xml.resources.dll
4.0.30319.551
162,600
20-Jan-2012
20:07
mscorlib.resources.dll
4.0.30319.551
438,560
21-Jan-2012
04:10
mscorlib.resources.dll
4.0.30319.551
438,560
20-Jan-2012
19:46
System.Data.resources.dll
4.0.30319.551
424,232
21-Jan-2012
04:10
System.Data.resources.dll
4.0.30319.551
424,232
20-Jan-2012
19:46
system.data.sqlxml.resources.dll
4.0.30319.551
47,416
20-Jan-2012
19:46
System.resources.dll
4.0.30319.551
320,800
20-Jan-2012
19:46
System.RunTime.Serialization.resources.dll
4.0.30319.551
150,344
20-Jan-2012
19:45
System.xml.resources.dll
4.0.30319.551
227,624
20-Jan-2012
19:46
mscorlib.resources.dll
4.0.30319.551
317,216
21-Jan-2012
03:53
mscorlib.resources.dll
4.0.30319.551
317,216
20-Jan-2012
19:26
System.Data.resources.dll
4.0.30319.551
348,456
21-Jan-2012
03:53
System.Data.resources.dll
4.0.30319.551
348,456
20-Jan-2012
19:27
system.data.sqlxml.resources.dll
4.0.30319.551
35,640
20-Jan-2012
19:27
System.resources.dll
4.0.30319.551
228,640
20-Jan-2012
19:27
System.RunTime.Serialization.resources.dll
4.0.30319.551
105,288
20-Jan-2012
19:26
System.xml.resources.dll
4.0.30319.551
159,016
20-Jan-2012
19:27
mscorlib.resources.dll
4.0.30319.551
311,072
21-Jan-2012
03:36
mscorlib.resources.dll
4.0.30319.551
311,072
20-Jan-2012
19:05
System.Data.resources.dll
4.0.30319.551
342,312
21-Jan-2012
03:37
System.Data.resources.dll
4.0.30319.551
342,312
20-Jan-2012
19:05
system.data.sqlxml.resources.dll
4.0.30319.551
34,104
20-Jan-2012
19:05
System.resources.dll
4.0.30319.551
219,936
20-Jan-2012
19:05
System.RunTime.Serialization.resources.dll
4.0.30319.551
100,168
20-Jan-2012
19:05
System.xml.resources.dll
4.0.30319.551
152,360
20-Jan-2012
19:05
mscorlib.resources.dll
4.0.30319.551
322,336
21-Jan-2012
03:21
mscorlib.resources.dll
4.0.30319.551
322,336
20-Jan-2012
18:47
System.Data.resources.dll
4.0.30319.551
354,088
21-Jan-2012
03:21
System.Data.resources.dll
4.0.30319.551
354,088
20-Jan-2012
18:48
system.data.sqlxml.resources.dll
4.0.30319.551
36,152
20-Jan-2012
18:48
System.resources.dll
4.0.30319.551
233,760
20-Jan-2012
18:48
System.RunTime.Serialization.resources.dll
4.0.30319.551
108,360
20-Jan-2012
18:47
System.xml.resources.dll
4.0.30319.551
163,624
20-Jan-2012
18:48
mscorlib.resources.dll
4.0.30319.551
343,328
21-Jan-2012
03:07
mscorlib.resources.dll
4.0.30319.551
343,328
20-Jan-2012
18:28
System.Data.resources.dll
4.0.30319.551
367,400
21-Jan-2012
03:07
System.Data.resources.dll
4.0.30319.551
367,400
20-Jan-2012
18:29
system.data.sqlxml.resources.dll
4.0.30319.551
39,224
20-Jan-2012
18:29
System.resources.dll
4.0.30319.551
244,000
20-Jan-2012
18:28
System.RunTime.Serialization.resources.dll
4.0.30319.551
119,112
20-Jan-2012
18:28
System.xml.resources.dll
4.0.30319.551
174,888
20-Jan-2012
18:29
mscorlib.resources.dll
4.0.30319.551
327,968
21-Jan-2012
02:50
mscorlib.resources.dll
4.0.30319.551
327,968
20-Jan-2012
18:14
System.Data.resources.dll
4.0.30319.551
359,208
21-Jan-2012
02:50
System.Data.resources.dll
4.0.30319.551
359,208
20-Jan-2012
18:14
system.data.sqlxml.resources.dll
4.0.30319.551
37,176
20-Jan-2012
18:14
System.resources.dll
4.0.30319.551
236,832
20-Jan-2012
18:14
System.RunTime.Serialization.resources.dll
4.0.30319.551
109,384
20-Jan-2012
18:13
System.xml.resources.dll
4.0.30319.551
167,720
20-Jan-2012
18:14
mscorlib.resources.dll
4.0.30319.551
315,680
21-Jan-2012
02:35
mscorlib.resources.dll
4.0.30319.551
315,680
20-Jan-2012
17:55
System.Data.resources.dll
4.0.30319.551
348,456
21-Jan-2012
02:36
System.Data.resources.dll
4.0.30319.551
348,456
20-Jan-2012
17:55
system.data.sqlxml.resources.dll
4.0.30319.551
35,640
20-Jan-2012
17:55
System.resources.dll
4.0.30319.551
226,080
20-Jan-2012
17:55
System.RunTime.Serialization.resources.dll
4.0.30319.551
103,752
20-Jan-2012
17:55
System.xml.resources.dll
4.0.30319.551
159,016
20-Jan-2012
17:55
mscorlib.resources.dll
4.0.30319.551
329,504
21-Jan-2012
02:17
mscorlib.resources.dll
4.0.30319.551
329,504
20-Jan-2012
17:36
System.Data.resources.dll
4.0.30319.551
356,648
21-Jan-2012
02:17
System.Data.resources.dll
4.0.30319.551
356,648
20-Jan-2012
17:36
system.data.sqlxml.resources.dll
4.0.30319.551
37,176
20-Jan-2012
17:36
System.resources.dll
4.0.30319.551
236,320
20-Jan-2012
17:36
System.RunTime.Serialization.resources.dll
4.0.30319.551
109,896
20-Jan-2012
17:35
System.xml.resources.dll
4.0.30319.551
167,720
20-Jan-2012
17:36
mscorlib.resources.dll
4.0.30319.551
313,120
21-Jan-2012
02:02
mscorlib.resources.dll
4.0.30319.551
313,120
20-Jan-2012
17:19
System.Data.resources.dll
4.0.30319.551
352,040
21-Jan-2012
02:02
System.Data.resources.dll
4.0.30319.551
352,040
20-Jan-2012
17:19
system.data.sqlxml.resources.dll
4.0.30319.551
35,128
20-Jan-2012
17:19
System.resources.dll
4.0.30319.551
226,592
20-Jan-2012
17:19
System.RunTime.Serialization.resources.dll
4.0.30319.551
102,728
20-Jan-2012
17:19
System.xml.resources.dll
4.0.30319.551
158,504
20-Jan-2012
17:19
mscorlib.resources.dll
4.0.30319.551
301,344
21-Jan-2012
01:46
mscorlib.resources.dll
4.0.30319.551
301,344
20-Jan-2012
17:04
System.Data.resources.dll
4.0.30319.551
339,240
21-Jan-2012
01:46
System.Data.resources.dll
4.0.30319.551
339,240
20-Jan-2012
17:04
system.data.sqlxml.resources.dll
4.0.30319.551
34,104
20-Jan-2012
17:04
System.resources.dll
4.0.30319.551
213,792
20-Jan-2012
17:04
System.RunTime.Serialization.resources.dll
4.0.30319.551
97,608
20-Jan-2012
17:04
System.xml.resources.dll
4.0.30319.551
150,312
20-Jan-2012
17:05
mscorlib.resources.dll
4.0.30319.551
322,848
21-Jan-2012
01:31
mscorlib.resources.dll
4.0.30319.551
322,848
20-Jan-2012
16:47
System.Data.resources.dll
4.0.30319.551
355,624
21-Jan-2012
01:31
System.Data.resources.dll
4.0.30319.551
355,624
20-Jan-2012
16:47
system.data.sqlxml.resources.dll
4.0.30319.551
36,152
20-Jan-2012
16:47
System.resources.dll
4.0.30319.551
228,640
20-Jan-2012
16:47
System.RunTime.Serialization.resources.dll
4.0.30319.551
109,384
20-Jan-2012
16:46
System.xml.resources.dll
4.0.30319.551
166,184
20-Jan-2012
16:47
mscorlib.resources.dll
4.0.30319.551
314,144
21-Jan-2012
01:17
mscorlib.resources.dll
4.0.30319.551
314,144
20-Jan-2012
16:27
System.Data.resources.dll
4.0.30319.551
345,896
21-Jan-2012
01:17
System.Data.resources.dll
4.0.30319.551
345,896
20-Jan-2012
16:27
system.data.sqlxml.resources.dll
4.0.30319.551
35,640
20-Jan-2012
16:28
System.resources.dll
4.0.30319.551
227,104
20-Jan-2012
16:27
System.RunTime.Serialization.resources.dll
4.0.30319.551
101,704
20-Jan-2012
16:27
System.xml.resources.dll
4.0.30319.551
156,456
20-Jan-2012
16:28
mscorlib.resources.dll
4.0.30319.551
316,704
21-Jan-2012
01:00
mscorlib.resources.dll
4.0.30319.551
316,704
20-Jan-2012
16:08
System.Data.resources.dll
4.0.30319.551
349,480
21-Jan-2012
01:00
System.Data.resources.dll
4.0.30319.551
349,480
20-Jan-2012
16:08
system.data.sqlxml.resources.dll
4.0.30319.551
35,640
20-Jan-2012
16:08
System.resources.dll
4.0.30319.551
227,616
20-Jan-2012
16:08
System.RunTime.Serialization.resources.dll
4.0.30319.551
104,776
20-Jan-2012
16:08
System.xml.resources.dll
4.0.30319.551
160,040
20-Jan-2012
16:08
mscorlib.resources.dll
4.0.30319.551
408,864
21-Jan-2012
00:45
mscorlib.resources.dll
4.0.30319.551
408,864
20-Jan-2012
15:49
System.Data.resources.dll
4.0.30319.551
408,872
21-Jan-2012
00:45
System.Data.resources.dll
4.0.30319.551
408,872
20-Jan-2012
15:49
system.data.sqlxml.resources.dll
4.0.30319.551
43,832
20-Jan-2012
15:49
System.resources.dll
4.0.30319.551
292,128
20-Jan-2012
15:49
System.RunTime.Serialization.resources.dll
4.0.30319.551
139,592
20-Jan-2012
15:49
System.xml.resources.dll
4.0.30319.551
212,776
20-Jan-2012
15:49
mscorlib.resources.dll
4.0.30319.551
310,048
21-Jan-2012
00:28
mscorlib.resources.dll
4.0.30319.551
310,048
20-Jan-2012
15:32
System.Data.resources.dll
4.0.30319.551
342,312
21-Jan-2012
00:28
System.Data.resources.dll
4.0.30319.551
342,312
20-Jan-2012
15:32
system.data.sqlxml.resources.dll
4.0.30319.551
34,616
20-Jan-2012
15:32
System.resources.dll
4.0.30319.551
218,400
20-Jan-2012
15:32
System.RunTime.Serialization.resources.dll
4.0.30319.551
98,120
20-Jan-2012
15:32
System.xml.resources.dll
4.0.30319.551
153,384
20-Jan-2012
15:32
mscorlib.resources.dll
4.0.30319.551
307,488
21-Jan-2012
00:09
mscorlib.resources.dll
4.0.30319.551
307,488
20-Jan-2012
15:11
System.Data.resources.dll
4.0.30319.551
343,848
21-Jan-2012
00:09
System.Data.resources.dll
4.0.30319.551
343,848
20-Jan-2012
15:11
system.data.sqlxml.resources.dll
4.0.30319.551
34,616
20-Jan-2012
15:11
System.resources.dll
4.0.30319.551
219,936
20-Jan-2012
15:11
System.RunTime.Serialization.resources.dll
4.0.30319.551
101,704
20-Jan-2012
15:10
System.xml.resources.dll
4.0.30319.551
153,384
20-Jan-2012
15:11
Forall supported IA-64–based versions of Windows for LDR service branch
Note This is a "FAST PUBLISH" article created directly from within the Microsoft support organization. The information contained herein is provided as-is in response to emerging issues. As a result of the speed in making it available, the materials may include typographical errors and may be revised at any time without notice. See Terms of Use