Mentioned
In
|
 |
 |
 |
 |
Microsoft Knowledge Base Article
This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved. Terms
of Use |
Trademarks
Article ID: 973917 - Last Review: March 9, 2010 - Revision: 4.0 Description of the update that implements Extended Protection for Authentication in Internet Information Services (IIS)This article describes a nonsecurity update that implements Extended Protection for Authentication in Internet Information Services (IIS). When Extended Protection for Authentication is enabled, authentication requests are bound to both the Service Principal Names (SPN) of the server to which the client tries to connect and to the outer Transport Layer Security (TLS) channel over which Integrated Windows Authentication happens. Note On March 9, 2010, this update was rereleased to address an installation issue and a functional issue:
- This update will now correctly detect when a computer that is running Windows Server 2003 Service Pack 2 (SP2) is in an installation where IIS 6 contains some Windows Server 2003 Service Pack 1 (SP1) binaries, and will refuse to install and exits with an error code. The versions of update 973917 that were released before this date will successfully install, but they could cause IIS to not restart after installation.
- On a computer that is running Windows Server 2003, this rerelease addresses an issue that could cause excessive amounts of memory to be allocated upon enabling Extended Protection for Authentication.
- On a computer that is running Windows Server 2008, this rerelease addresses an issue that could cause Extended Protection not to function correctly when IIS is configured to use kernel-mode Windows Authentication.
ConfigurationExtended protection enhances the existing Windows Authentication functionality to mitigate authentication relay or "man in the middle" attacks. This mitigation is accomplished by using security information that is implemented through two security mechanisms: - Channel binding information that is specified through a Channel Binding Token (CBT). This is used primarily for SSL connections.
- Service binding information that is specified through a service principal name (SPN). This is used primarily for connections that do not use SSL or when a connection is established. For example, this might be in a scenario in which SSL is offloaded to another device, such as a proxy server or load-balancer.
In IIS 7.0, Extended Protection is configured through the <extendedProtection> element. Detailed configuration information can be found under the header "Configuration on IIS 7.0 and IIS 7.5". For IIS 6.0, the same configuration parameters are used, but the parameters are deployed by using registry keys. (Review the section "Configuration on IIS 6.0.") The <extendedProtection> element may contain a collection of <spn> elements, each of which contains a unique SPN for the service binding information. Each SPN represents a unique endpoint in the connection path. It may be a Fully Qualified Domain Name (FQDN) or NetBIOS name of the destination server or a proxy server. For example, if a client is connecting to a destination server through a proxy server, the SPN collection on the destination server would have to contain the SPN for the proxy server. Each SPN in the collection must be prefixed with "HTTP". Therefore, the SPN for "www.contoso.com" would be "HTTP/www.contoso.com". Extended Protection ScenariosConsider the following sample scenarios. Collapse this tableExpand this table | Scenario | Flags | Description |
|---|
| Client connects directly to destination server that uses HTTP. | Proxy, ProxyCohosting | SPN checking will be used, and channel binding token checking will not be used. | | Client connects directly to destination server that uses SSL. | None | Channel binding token checking is used, and SPN checking is not used. | | Client connects to destination server through a proxy server that uses HTTP for the path. | Proxy, ProxyCohosting | SPN checking will be used, and channel binding token checking will not be used. | | Client connects to destination server through a proxy server that uses SSL for the path. | Proxy | SPN checking will be used, and channel binding token checking will not be used. | | Client connects to proxy server that uses SSL, and proxy server connects to the destination server that uses HTTP (SSL off-loading). | Proxy | SPN checking will be used, and channel binding token checking will not be used. |
- In these scenarios, you could also specify the AllowDotlessSpn flag if your networking environment supports NetBIOS-based SPNs. However, NetBIOS-based SPNs are not secure.
- For the scenarios in which SPN checking will be used, and channel binding token checking will not be used, you should not specify the NoServiceNameCheck flag.
- Default installation of IIS 6.0, IIS 7.0, or IIS 7.5 does not enable or install Windows authentication. Extended Protection is applicable only when Windows authentication is enabled for your Web site or application.
Configuration on IIS 7.0 and 7.5The default installation of IIS 7.0 does not include the Windows authentication role service. To use Windows authentication on IIS, you must install the role service, disable Anonymous authentication for your Web site or application, and then enable Windows authentication for the site or application. Note After you install the role service, IIS 7.0 commits the following configuration settings to the ApplicationHost.config file. <windowsAuthentication enabled="false" /> How to enable Extended Protection for Windows authentication for IIS 7.5- Click Start, point to Administrative Tools, and then click Internet Information Services (IIS) Manager.
-
In the Connections pane, expand the server name, expand Sites, and then select the site, application or Web service for which you want to enable Extended Protection for Windows authentication.
- Scroll to the Security section in the Home pane, and then double-click Authentication.
-
In the Authentication pane, select Windows Authentication.
-
Click Enable in the Actions pane.
-
Click Advanced Settings in the Actions pane.
-
When the Advanced Settings dialog box appears, select one of the following options in the Extended Protection menu:
- Select Accept if you want to enable extended protection while providing down-level support for clients that do not support extended protection.
- Select Required if you want to enable extended protection without providing down-level support.
- Click OK to close the Advanced Settings dialog box.
How to enable Extended Protection for Windows authentication for IIS 7.0
Internet Information Services (IIS) Manager for IIS 7.0 does not expose the options to make changes to Extended Protection. Therefore, changes have to be made by using the configuration sample or the scripts that are shown later in this article.
ConfigurationAttributeThe <extendedProtection> element is configurable at the site, application, or virtual directory level in the ApplicationHost.config file. Collapse this tableExpand this table | Attribute | Description |
|---|
| flags | Optional flags attribute.
Specifies the additional behavior settings for extended protection.
The flags attribute can be a combination of the values in the next table. The default value is None.
| | tokenChecking | Optional enum attribute.
Specifies the behavior for checking channel binding information.
The tokenChecking attribute can be one of the values in the next table. The default value is None.
|
The flags attribute configures additional behavior for extended protection. The possible flags are as follows. Collapse this tableExpand this table | Name | Description |
|---|
| None | This flag specifies that no additional behavior is enabled for extended protection. (For example, no proxy server is being used and SPN checking is enabled and requires FQDNs.)
The numeric value is 0.
| | Proxy | This flag specifies that part of the communication path will be through a proxy, or the client is connecting directly to the destination server over HTTP.
The numeric value is 1.
| | NoServiceNameCheck | This flag specifies that SPN checking is disabled. This flag should not be used in scenarios where only SPNs are being checked.
The numeric value is 2.
| | AllowDotlessSpn | This flag specifies that SPNs are not required to be an FQDN.
Note Setting this flag is not a secure scenario, as non-FQDN based names are vulnerable to name resolution poisoning attacks. This setting is not recommended as it may expose customers to risk.
The numeric value is 4.
| | ProxyCohosting | This flag specifies that the client-to-server communication path will use HTTP only. No part of the communication path will use SSL, and SPN checking will be used.
Note When you specify this flag, you must also specify the Proxy flag.
The numeric value is 32.
|
The tokenChecking attribute configures the behavior for checking for channel binding tokens. The possible values for this attribute are as follows. Collapse this tableExpand this table | Name | Description |
|---|
| None | This value specifies that IIS will not perform channel binding token checking. This setting emulates the behavior that existed before extended protection.
The numeric value is 0.
| | Allow | This value specifies that channel binding token checking is enabled but not required. This setting allows communications with clients that support extended protection to be protected by the feature, but still supports clients that cannot use extended protection.
The numeric value is 1.
| | Require | This value specifies that channel binding token checking is required. This setting does not provide support for clients that do not support extended protection.
The numeric value is 2.
|
Child ElementsCollapse this tableExpand this table | Element | Description |
|---|
| spn | Adds an SPN to the collection. | | clearSpns | Clears the collection of SPNs. | | removeSpn | Removes an SPN from the collection. |
Configuration SampleThe following sample displays a <extendedProtection> element that demonstrates enabling Windows authentication with extended protection for the Default Web Site. The sample adds two SPN entries to the collection of SPNs. <location path="Default Web Site">
<system.webServer>
<security>
<authentication>
<windowsAuthentication enabled="true">
<extendedProtection tokenChecking="Allow" flags="None">
<spn name="HTTP/www.contoso.com" />
<spn name="HTTP/contoso.com" />
</extendedProtection>
</windowsAuthentication>
</authentication>
</security>
</system.webServer>
</location>
Sample CodeThe following examples demonstrate how to enable Windows authentication with extended protection for the Default Web Site and how to add two SPNs to the collection. AppCmd.exeappcmd.exe set config "Default Web Site" -section:system.webServer/security/authentication/windowsAuthentication /enabled:"True" /commit:apphost
appcmd.exe set config "Default Web Site" -section:system.webServer/security/authentication/windowsAuthentication /extendedProtection.tokenChecking:"Allow" /extendedProtection.flags:"None" /commit:apphost
appcmd.exe set config "Default Web Site" -section:system.webServer/security/authentication/windowsAuthentication /+"extendedProtection.[name='HTTP/www.contoso.com']" /commit:apphost
appcmd.exe set config "Default Web Site" -section:system.webServer/security/authentication/windowsAuthentication /+"extendedProtection.[name='HTTP/contoso.com']" /commit:apphost
Note You must make sure to set the commit parameter to APPHOST when you use AppCmd.exe to configure these settings. This setting commits the configuration settings to the appropriate location section in the ApplicationHost.config file. C#using System;
using System.Text;
using Microsoft.Web.Administration;
internal static class Sample
{
private static void Main()
{
using (ServerManager serverManager = new ServerManager())
{
Configuration config = serverManager.GetApplicationHostConfiguration();
ConfigurationSection windowsAuthenticationSection = config.GetSection("system.webServer/security/authentication/windowsAuthentication", "Default Web Site");
windowsAuthenticationSection["enabled"] = true;
ConfigurationElement extendedProtectionElement = windowsAuthenticationSection.GetChildElement("extendedProtection");
extendedProtectionElement["tokenChecking"] = @"Allow";
extendedProtectionElement["flags"] = @"None";
ConfigurationElementCollection extendedProtectionCollection = extendedProtectionElement.GetCollection();
ConfigurationElement spnElement = extendedProtectionCollection.CreateElement("spn");
spnElement["name"] = @"HTTP/www.contoso.com";
extendedProtectionCollection.Add(spnElement);
ConfigurationElement spnElement1 = extendedProtectionCollection.CreateElement("spn");
spnElement1["name"] = @"HTTP/contoso.com";
extendedProtectionCollection.Add(spnElement1);
serverManager.CommitChanges();
}
}
}
Visual Basic .NETImports System
Imports System.Text
Imports Microsoft.Web.Administration
Module Sample
Sub Main()
Dim serverManager As ServerManager = New ServerManager
Dim config As Configuration = serverManager.GetApplicationHostConfiguration
Dim windowsAuthenticationSection As ConfigurationSection = config.GetSection("system.webServer/security/authentication/windowsAuthentication", "Default Web Site")
windowsAuthenticationSection("enabled") = True
Dim extendedProtectionElement As ConfigurationElement = windowsAuthenticationSection.GetChildElement("extendedProtection")
extendedProtectionElement("tokenChecking") = "Allow"
extendedProtectionElement("flags") = "None"
Dim extendedProtectionCollection As ConfigurationElementCollection = extendedProtectionElement.GetCollection
Dim spnElement As ConfigurationElement = extendedProtectionCollection.CreateElement("spn")
spnElement("name") = "HTTP/www.contoso.com"
extendedProtectionCollection.Add(spnElement)
Dim spnElement1 As ConfigurationElement = extendedProtectionCollection.CreateElement("spn")
spnElement1("name") = "HTTP/contoso.com"
extendedProtectionCollection.Add(spnElement1)
serverManager.CommitChanges()
End Sub
End Module
JavaScriptvar adminManager = new ActiveXObject('Microsoft.ApplicationHost.WritableAdminManager');
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST";
var windowsAuthenticationSection = adminManager.GetAdminSection("system.webServer/security/authentication/windowsAuthentication", "MACHINE/WEBROOT/APPHOST/Default Web Site");
windowsAuthenticationSection.Properties.Item("enabled").Value = true;
var extendedProtectionElement = windowsAuthenticationSection.ChildElements.Item("extendedProtection");
extendedProtectionElement.Properties.Item("tokenChecking").Value = "Allow";
extendedProtectionElement.Properties.Item("flags").Value = "None";
var extendedProtectionCollection = extendedProtectionElement.Collection;
var spnElement = extendedProtectionCollection.CreateNewElement("spn");
spnElement.Properties.Item("name").Value = "HTTP/www.contoso.com";
extendedProtectionCollection.AddElement(spnElement);
var spnElement1 = extendedProtectionCollection.CreateNewElement("spn");
spnElement1.Properties.Item("name").Value = "HTTP/contoso.com";
extendedProtectionCollection.AddElement(spnElement1);
adminManager.CommitChanges();
VBScriptSet adminManager = createObject("Microsoft.ApplicationHost.WritableAdminManager")
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST"
Set windowsAuthenticationSection = adminManager.GetAdminSection("system.webServer/security/authentication/windowsAuthentication", "MACHINE/WEBROOT/APPHOST/Default Web Site")
windowsAuthenticationSection.Properties.Item("enabled").Value = True
Set extendedProtectionElement = windowsAuthenticationSection.ChildElements.Item("extendedProtection")
extendedProtectionElement.Properties.Item("tokenChecking").Value = "Allow"
extendedProtectionElement.Properties.Item("flags").Value = "None"
Set extendedProtectionCollection = extendedProtectionElement.Collection
Set spnElement = extendedProtectionCollection.CreateNewElement("spn")
spnElement.Properties.Item("name").Value = "HTTP/www.contoso.com"
extendedProtectionCollection.AddElement(spnElement)
Set spnElement1 = extendedProtectionCollection.CreateNewElement("spn")
spnElement1.Properties.Item("name").Value = "HTTP/contoso.com"
extendedProtectionCollection.AddElement(spnElement1)
adminManager.CommitChanges()
Configuration on IIS 6.0Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the following article number to view the article in the Microsoft Knowledge Base: 322756Â
(http://kbalertz.com/Feedback.aspx?kbNumber=322756/
)
How to back up and restore the registry in Windows On IIS 6.0, Extended Protection for Authentication can be configured by setting the following registry keys. Collapse this tableExpand this table | Registry key: | HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W3SVC\Parameters\extendedProtection\tokenChecking | | Allowed Values: | 0 (None), 1 (Allow), 2 (Require) | | Data Type: | DWORD | | Default: | 0 |
Collapse this tableExpand this table | Name | Description |
|---|
| None | This value specifies that IIS will not perform channel binding token checking. This setting emulates the behavior that existed before extended protection.
The numeric value is 0.
| | Allow | This value specifies that channel binding token checking is enabled but not required. This setting allows communications with clients that support extended protection to be protected by the feature, but it still supports clients that cannot use extended protection
The numeric value is 1.
| | Require | This value specifies that channel binding token checking is required. This setting does not provide support for clients that do not support extended protection.
The numeric value is 2.
|
Collapse this tableExpand this table | Registry key: | HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W3SVC\Parameters\extendedProtection\flags | | Allowed Values: | 0 (none), 1 (proxy), 2 (NoServiceNameCheck), 4 (AllowDotlessSpn), 32 (ProxyCohosting) | | Data Type: | DWORD | | Default: | 0 |
Collapse this tableExpand this table | Name | Description |
|---|
| None |
This flag specifies that no additional behavior is enabled for extended protection. (For example, no proxy server is being used.)
The numeric value is 0.
| | Proxy |
This flag specifies that part of the communication path will be through a proxy. When the client is connecting directly to the destination server over HTTP, both Proxy and ProxyCoHosting must be enabled.
The numeric value is 1.
| | NoServiceNameCheck |
This flag specifies that SPN checking is disabled. This flag should not be used in scenarios in which only SPNs are being checked.
The numeric value is 2.
| | AllowDotlessSpn |
This flag specifies that SPNs are not required to be an FQDN. Setting this flag allows NetBIOS-based SPNs.
Note Setting this flag is not a secure scenario, as non-FQDN based names are vulnerable to name resolution poisoning attacks. This setting is not recommended as it may expose customers to risk.
The numeric value is 4.
| | ProxyCohosting |
This flag specifies that the client-to-server communication path will use HTTP only. No part of the communication path will use SSL, and SPN checking will be used. Turn on this bit also if both secure and nonsecure traffic that is sent through the proxy has to be successfully authenticated.
Note When you specify this flag, you must also specify the Proxy flag.
The numeric value is 32.
|
Collapse this tableExpand this table | Registry key: | HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W3SVC\Parameters\extendedProtection\spns | | Allowed Values: | <strings> | | Data Type: | MULTI_SZ | | Default: | empty |
To set these registry keys, please follow the process below: - Start Registry Editor. To do this, click Start, click Run, type regedit, and then click OK.
- Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W3SVC\Parameters\extendedProtection\
- Verify that the tokenChecking, Flags, and spns registry values are present.
If these registry values are not present, follow these steps to create them:
- Select the registry subkey that is listed in step 2, point to New on the Edit menu, and then click DWORD Value.
- Type tokenChecking, and then press ENTER.
- Select the registry subkey that is listed in step 2, point to New on the Edit menu, and then click DWORD Value.
- Type flags, and then press ENTER.
- Select the registry subkey that is listed in step 2, point to New on the Edit menu, and then click MULTI_SZ Value.
- Type spns, and then press ENTER.
- Click to select the tokenChecking registry value.
- On the Edit menu, click Modify.
- In the Value data box, type the preferred value, and then click OK.
- Click to select the flags registry value.
-
In the Value data box, type the preferred value, and then click OK.
- Click to select the spns registry value.
- In the Value data box, enter an appropriate spn, and then click OK.
- Exit Registry Editor.
For more information about the Extended Protection for Authentication feature and about how to enable this feature upon installing this update, visit the following Microsoft Web site: For more information about IIS, visit the following Microsoft Web site: Integrated Windows Authentication with Extended ProtectionService Principal Names
Prerequisites for Windows Server
2003This update requires a correct installation of Windows Server 2003 Service Pack 2 (SP2). There are some cases in which some Service Pack 1 (SP1) binaries may be installed on a computer that is otherwise running SP2. Installing this update on such a computer can cause an IIS failure, which causes the server to return "503 Service Unavailable" error messages for all requests. To determine whether the server is running the correct SP2 binaries for IIS, refer to the following file table to verify that version numbers are equal to the versions of the files listed here or to later versions.
Collapse this tableExpand this table | File name | File version | File size | Date | Platform | SP requirement |
|---|
| Adrot.dll | 6.0.3790.3959 | 58,880 | 17-Feb-2007 | x86 | SP2 | | Adsiis.dll | 6.0.3790.3959 | 291,328 | 17-Feb-2007 | x86 | SP2 | | Asp.dll | 6.0.3790.3959 | 388,096 | 17-Feb-2007 | x86 | SP2 | | Browscap.dll | 6.0.3790.3959 | 47,104 | 17-Feb-2007 | x86 | SP2 | | Certobj.dll | 6.0.3790.3959 | 82,432 | 17-Feb-2007 | x86 | SP2 | | Coadmin.dll | 6.0.3790.3959 | 64,000 | 17-Feb-2007 | x86 | SP2 | | Controt.dll | 6.0.3790.3959 | 33,792 | 17-Feb-2007 | x86 | SP2 | | Davcdata.exe | 6.0.3790.3959 | 27,136 | 17-Feb-2007 | x86 | SP2 | | Davcprox.dll | 6.0.3790.3959 | 6,656 | 17-Feb-2007 | x86 | SP2 | | Gzip.dll | 6.0.3790.3959 | 25,600 | 17-Feb-2007 | x86 | SP2 | | Httpext.dll | 6.0.3790.3959 | 241,664 | 17-Feb-2007 | x86 | SP2 | | Httpmib.dll | 6.0.3790.3959 | 18,944 | 17-Feb-2007 | x86 | SP2 | | Httpodbc.dll | 6.0.3790.3959 | 48,640 | 17-Feb-2007 | x86 | SP2 | | Iisadmin.dll | 6.0.3790.3959 | 21,504 | 17-Feb-2007 | x86 | SP2 | | Iiscfg.dll | 6.0.3790.3959 | 1,133,056 | 17-Feb-2007 | x86 | SP2 | | Iisclex4.dll | 6.0.3790.0 | 62,976 | 18-Feb-2007 | x86 | SP2 | | Iisext.dll | 6.0.3790.3959 | 82,944 | 17-Feb-2007 | x86 | SP2 | | Iislog.dll | 6.0.3790.3959 | 76,288 | 17-Feb-2007 | x86 | SP2 | | Iisres.dll | 6.0.3790.3959 | 122,880 | 17-Feb-2007 | x86 | SP2 | | Iisrstas.exe | 6.0.3790.3959 | 28,160 | 17-Feb-2007 | x86 | SP2 | | Iisui.dll | 6.0.3790.3959 | 217,088 | 17-Feb-2007 | x86 | SP2 | | Iisuiobj.dll | 6.0.3790.3959 | 68,608 | 17-Feb-2007 | x86 | SP2 | | Iisutil.dll | 6.0.3790.3959 | 167,936 | 17-Feb-2007 | x86 | SP2 | | Iisw3adm.dll | 6.0.3790.3959 | 216,576 | 17-Feb-2007 | x86 | SP2 | | Iiswmi.dll | 6.0.3790.3959 | 194,560 | 17-Feb-2007 | x86 | SP2 | | Inetinfo.exe | 6.0.3790.3959 | 14,336 | 17-Feb-2007 | x86 | SP2 | | Inetmgr.dll | 6.0.3790.3959 | 1,058,304 | 17-Feb-2007 | x86 | SP2 | | Inetmgr.exe | 6.0.3790.3959 | 19,456 | 17-Feb-2007 | x86 | SP2 | | Infocomm.dll | 6.0.3790.3959 | 235,520 | 17-Feb-2007 | x86 | SP2 | | Isapips.dll | 6.0.3790.3959 | 8,192 | 17-Feb-2007 | x86 | SP2 | | Isatq.dll | 6.0.3790.3959 | 52,736 | 17-Feb-2007 | x86 | SP2 | | Iscomlog.dll | 6.0.3790.3959 | 19,456 | 17-Feb-2007 | x86 | SP2 | | Logscrpt.dll | 6.0.3790.3959 | 25,600 | 17-Feb-2007 | x86 | SP2 | | Lonsint.dll | 6.0.3790.3959 | 13,312 | 17-Feb-2007 | x86 | SP2 | | Metadata.dll | 6.0.3790.3959 | 234,496 | 17-Feb-2007 | x86 | SP2 | | Nextlink.dll | 6.0.3790.3959 | 61,440 | 17-Feb-2007 | x86 | SP2 | | Nntpadm.dll | 6.0.3790.3959 | 187,392 | 17-Feb-2007 | x86 | SP2 | | Nntpsnap.dll | 6.0.3728.0 | 2,663,424 | 17-Feb-2007 | x86 | SP2 | | Rpcref.dll | 6.0.3790.3959 | 4,096 | 17-Feb-2007 | x86 | SP2 | | Seo.dll | 6.0.3790.3959 | 219,136 | 17-Feb-2007 | x86 | SP2 | | Smtpadm.dll | 6.0.3790.3959 | 179,200 | 17-Feb-2007 | x86 | SP2 | | Smtpsnap.dll | 6.0.3728.0 | 2,086,400 | 17-Feb-2007 | x86 | SP2 | | Ssinc.dll | 6.0.3790.3959 | 24,064 | 17-Feb-2007 | x86 | SP2 | | Svcext.dll | 6.0.3790.3959 | 44,544 | 17-Feb-2007 | x86 | SP2 | | Uihelper.dll | 6.0.3790.3959 | 114,176 | 17-Feb-2007 | x86 | SP2 | | Urlauth.dll | 6.0.3790.3959 | 15,360 | 17-Feb-2007 | x86 | SP2 | | W3cache.dll | 6.0.3790.3959 | 19,456 | 17-Feb-2007 | x86 | SP2 | | W3comlog.dll | 6.0.3790.3959 | 10,752 | 17-Feb-2007 | x86 | SP2 | | W3core.dll | 6.0.3790.3959 | 349,696 | 17-Feb-2007 | x86 | SP2 | | W3ctrlps.dll | 6.0.3790.3959 | 6,144 | 17-Feb-2007 | x86 | SP2 | | W3ctrs.dll | 6.0.3790.3959 | 24,064 | 17-Feb-2007 | x86 | SP2 | | W3dt.dll | 6.0.3790.3959 | 39,424 | 17-Feb-2007 | x86 | SP2 | | W3ext.dll | 6.0.3790.3959 | 92,672 | 17-Feb-2007 | x86 | SP2 | | W3isapi.dll | 6.0.3790.3959 | 62,464 | 17-Feb-2007 | x86 | SP2 | | W3tp.dll | 6.0.3790.3959 | 13,312 | 17-Feb-2007 | x86 | SP2 | | W3wp.exe | 6.0.3790.3959 | 7,168 | 17-Feb-2007 | x86 | SP2 | | Wam.dll | 6.0.3790.3959 | 23,040 | 17-Feb-2007 | x86 | SP2 | | Wamps.dll | 6.0.3790.3959 | 6,656 | 17-Feb-2007 | x86 | SP2 | | Wamreg.dll | 6.0.3790.3959 | 55,808 | 17-Feb-2007 | x86 | SP2 |
Known issues- Windows Server 2003
This update was rereleased on March 9, 2010 to perform an additional check to make sure that the IIS 6 system on a computer that is running Windows Server 2003 SP2 does not contain binaries from the SP1 version. If such binaries are found, this update will exit with an error message. To fix this condition, reapply the SP2 update to your computers and install this package after you successfully reinstall SP2.
The original version of this security update, released before March 9, 2010, could cause IIS application pools to not start on installations of Windows Server 2003 SP2 where IIS 6 may contain some SP1 binaries, IIS application pools may not start. The System log would display the following error message when the IIS service is started: Event ID 1009, Description: A process serving application pool 'DefaultAppPool' terminated unexpectedly. The process id was '1234'
For more information about this known issue, click the following article number to view the article in the Microsoft Knowledge Base:
2009746Â
(http://kbalertz.com/Feedback.aspx?kbNumber=2009746/
)
Internet Information Services 6.0 may not function correctly after installing KB973917
We recommend reviewing the "Prerequisites for Windows Server 2003" section if your computer is not a clean Windows Server 2003 SP2 installation.
As of December 16, 2009, if you use Automatic Updates, you will no longer be offered this update if your IIS installation is in a configuration where both SP1 and SP2 binaries are present on the computer. We recommend that you review the following article in the Microsoft Knowledge Base for the next steps that you must take to make sure that the computer is ready to apply this update. 2009746Â
(http://kbalertz.com/Feedback.aspx?kbNumber=2009746/
)
Internet Information Services 6.0 may not function correctly after installing KB973917
- Windows Server 2003 and Windows Server 2008
This update was re-released on March 9, 2010. This re-released update fully replaces the initial release. If you install the new release, the initial release will be uninstalled and replaced by the new one. Uninstalling the March 9 release of this update will leave the computer without Extended Protection for IIS functionality present.
How to obtain this updateFor Windows Server 2003For Itanium-based versions of Windows Server 2003For x64-based versions of Windows Server 2003 and for Windows XP x64 editionFor Windows Server 2008For Itanium-based versions of Windows Server 2008For x64-based versions of Windows Server 2008For Windows VistaFor x64-based versions of Windows VistaThe English (United States) version of this software update installs files that have the attributes that are listed in the following tables. The dates and times for these files are listed in Coordinated Universal Time (UTC). The dates and times for these files on your local computer are displayed in your local time and with your current daylight saving time (DST) bias. Additionally, the dates and times may change when you perform certain operations on the files.
Windows XP and Windows Server 2003 file information- The files that apply to a specific milestone (RTM, SPn) and service branch (QFE, GDR) are noted in the "SP requirement" and "Service branch" columns.
- GDR service branches contain only those fixes that are widely released to address widespread, critical issues. QFE service branches contain hotfixes in addition to widely released fixes.
- In addition to the files that are listed in these tables, this software update also installs an associated security catalog file (KBnumber.cat) that is signed with a Microsoft digital signature.
For all supported x64-based versions of Windows Server 2003 and for Windows XP Professional x64 editionCollapse this tableExpand this table | File name | File version | File size | Date | Time | Platform | SP requirement | Service branch |
|---|
| Http.sys | 5.2.3790.4616 | 562,176 | 18-Feb-2010 | 19:57 | x64 | SP2 | SP2GDR | | Httpapi.dll | 5.2.3790.4616 | 37,376 | 18-Feb-2010 | 19:57 | x64 | SP2 | SP2GDR | | Strmfilt.dll | 6.0.3790.4647 | 134,656 | 18-Feb-2010 | 19:57 | x64 | SP2 | SP2GDR | | W3core.dll | 6.0.3790.4667 | 547,328 | 18-Feb-2010 | 19:57 | x64 | SP2 | SP2GDR | | W3dt.dll | 6.0.3790.4667 | 58,880 | 18-Feb-2010 | 19:57 | x64 | SP2 | SP2GDR | | W3isapi.dll | 6.0.3790.4667 | 84,992 | 18-Feb-2010 | 19:57 | x64 | SP2 | SP2GDR | | Whttpapi.dll | 5.2.3790.4616 | 25,088 | 18-Feb-2010 | 19:57 | x86 | SP2 | SP2GDR\WOW | | Wstrmfilt.dll | 6.0.3790.4647 | 86,528 | 18-Feb-2010 | 19:57 | x86 | SP2 | SP2GDR\WOW | | Ww3core.dll | 6.0.3790.4667 | 350,720 | 18-Feb-2010 | 19:57 | x86 | SP2 | SP2GDR\WOW | | Ww3dt.dll | 6.0.3790.4667 | 39,424 | 18-Feb-2010 | 19:57 | x86 | SP2 | SP2GDR\WOW | | Ww3isapi.dll | 6.0.3790.4667 | 62,976 | 18-Feb-2010 | 19:57 | x86 | SP2 | SP2GDR\WOW | | Http.sys | 5.2.3790.4616 | 567,808 | 18-Feb-2010 | 19:53 | x64 | SP2 | SP2QFE | | Httpapi.dll | 5.2.3790.4616 | 37,376 | 18-Feb-2010 | 19:53 | x64 | SP2 | SP2QFE | | Strmfilt.dll | 6.0.3790.4647 | 134,656 | 18-Feb-2010 | 19:53 | x64 | SP2 | SP2QFE | | W3core.dll | 6.0.3790.4667 | 547,328 | 18-Feb-2010 | 19:53 | x64 | SP2 | SP2QFE | | W3dt.dll | 6.0.3790.4667 | 58,880 | 18-Feb-2010 | 19:53 | x64 | SP2 | SP2QFE | | W3isapi.dll | 6.0.3790.4667 | 84,992 | 18-Feb-2010 | 19:53 | x64 | SP2 | SP2QFE | | Whttpapi.dll | 5.2.3790.4616 | 25,088 | 18-Feb-2010 | 19:53 | x86 | SP2 | SP2QFE\WOW | | Wstrmfilt.dll | 6.0.3790.4647 | 86,528 | 18-Feb-2010 | 19:53 | x86 | SP2 | SP2QFE\WOW | | Ww3core.dll | 6.0.3790.4667 | 351,232 | 18-Feb-2010 | 19:53 | x86 | SP2 | SP2QFE\WOW | | Ww3dt.dll | 6.0.3790.4667 | 39,424 | 18-Feb-2010 | 19:53 | x86 | SP2 | SP2QFE\WOW | | Ww3isapi.dll | 6.0.3790.4667 | 62,976 | 18-Feb-2010 | 19:53 | x86 | SP2 | SP2QFE\WOW |
For all supported x86-based versions of Windows Server 2003Collapse this tableExpand this table | File name | File version | File size | Date | Time | Platform | SP requirement | Service branch |
|---|
| Http.sys | 5.2.3790.4616 | 292,864 | 06-Nov-2009 | 12:54 | x86 | SP2 | SP2GDR | | Httpapi.dll | 5.2.3790.4616 | 25,088 | 11-Nov-2009 | 05:09 | x86 | SP2 | SP2GDR | | Strmfilt.dll | 6.0.3790.4647 | 86,528 | 11-Jan-2010 | 10:23 | x86 | SP2 | SP2GDR | | W3core.dll | 6.0.3790.4667 | 350,720 | 18-Feb-2010 | 05:31 | x86 | SP2 | SP2GDR | | W3dt.dll | 6.0.3790.4667 | 39,424 | 18-Feb-2010 | 05:31 | x86 | SP2 | SP2GDR | | W3isapi.dll | 6.0.3790.4667 | 62,976 | 18-Feb-2010 | 05:31 | x86 | SP2 | SP2GDR | | Http.sys | 5.2.3790.4616 | 294,912 | 06-Nov-2009 | 11:46 | x86 | SP2 | SP2QFE | | Httpapi.dll | 5.2.3790.4616 | 25,088 | 11-Nov-2009 | 05:51 | x86 | SP2 | SP2QFE | | Strmfilt.dll | 6.0.3790.4647 | 86,528 | 11-Jan-2010 | 09:36 | x86 | SP2 | SP2QFE | | W3core.dll | 6.0.3790.4667 | 351,232 | 18-Feb-2010 | 05:50 | x86 | SP2 | SP2QFE | | W3dt.dll | 6.0.3790.4667 | 39,424 | 18-Feb-2010 | 05:50 | x86 | SP2 | SP2QFE | | W3isapi.dll | 6.0.3790.4667 | 62,976 | 18-Feb-2010 | 05:50 | x86 | SP2 | SP2QFE |
For all supported IA-64-based versions of Windows Server 2003Collapse this tableExpand this table | File name | File version | File size | Date | Time | Platform | SP requirement | Service branch |
|---|
| Http.sys | 5.2.3790.4616 | 806,912 | 18-Feb-2010 | 19:57 | IA-64 | SP2 | SP2GDR | | Httpapi.dll | 5.2.3790.4616 | 69,632 | 18-Feb-2010 | 19:57 | IA-64 | SP2 | SP2GDR | | Strmfilt.dll | 6.0.3790.4647 | 254,976 | 18-Feb-2010 | 19:57 | IA-64 | SP2 | SP2GDR | | W3core.dll | 6.0.3790.4667 | 1,066,496 | 18-Feb-2010 | 19:57 | IA-64 | SP2 | SP2GDR | | W3dt.dll | 6.0.3790.4667 | 87,040 | 18-Feb-2010 | 19:57 | IA-64 | SP2 | SP2GDR | | W3isapi.dll | 6.0.3790.4667 | 121,856 | 18-Feb-2010 | 19:57 | IA-64 | SP2 | SP2GDR | | Whttpapi.dll | 5.2.3790.4616 | 25,088 | 18-Feb-2010 | 19:57 | x86 | SP2 | SP2GDR\WOW | | Wstrmfilt.dll | 6.0.3790.4647 | 86,528 | 18-Feb-2010 | 19:57 | x86 | SP2 | SP2GDR\WOW | | Ww3core.dll | 6.0.3790.4667 | 350,720 | 18-Feb-2010 | 19:57 | x86 | SP2 | SP2GDR\WOW | | Ww3dt.dll | 6.0.3790.4667 | 39,424 | 18-Feb-2010 | 19:57 | x86 | SP2 | SP2GDR\WOW | | Ww3isapi.dll | 6.0.3790.4667 | 62,976 | 18-Feb-2010 | 19:57 | x86 | SP2 | SP2GDR\WOW | | Http.sys | 5.2.3790.4616 | 815,104 | 18-Feb-2010 | 19:51 | IA-64 | SP2 | SP2QFE | | Httpapi.dll | 5.2.3790.4616 | 69,632 | 18-Feb-2010 | 19:51 | IA-64 | SP2 | SP2QFE | | Strmfilt.dll | 6.0.3790.4647 | 254,976 | 18-Feb-2010 | 19:51 | IA-64 | SP2 | SP2QFE | | W3core.dll | 6.0.3790.4667 | 1,067,008 | 18-Feb-2010 | 19:51 | IA-64 | SP2 | SP2QFE | | W3dt.dll | 6.0.3790.4667 | 87,040 | 18-Feb-2010 | 19:51 | IA-64 | SP2 | SP2QFE | | W3isapi.dll | 6.0.3790.4667 | 121,856 | 18-Feb-2010 | 19:51 | IA-64 | SP2 | SP2QFE | | Whttpapi.dll | 5.2.3790.4616 | 25,088 | 18-Feb-2010 | 19:51 | x86 | SP2 | SP2QFE\WOW | | Wstrmfilt.dll | 6.0.3790.4647 | 86,528 | 18-Feb-2010 | 19:51 | x86 | SP2 | SP2QFE\WOW | | Ww3core.dll | 6.0.3790.4667 | 351,232 | 18-Feb-2010 | 19:51 | x86 | SP2 | SP2QFE\WOW | | Ww3dt.dll | 6.0.3790.4667 | 39,424 | 18-Feb-2010 | 19:51 | x86 | SP2 | SP2QFE\WOW | | Ww3isapi.dll | 6.0.3790.4667 | 62,976 | 18-Feb-2010 | 19:51 | x86 | SP2 | SP2QFE\WOW |
Windows Vista and Windows Server 2008 file information- The files that apply to a specific product, milestone (RTM, SPn), and service branch (LDR, GDR) can be identified by examining the file version numbers as shown in the following table:
Collapse this tableExpand this table | Version | Product | Milestone | Service branch | | 6.0.6000.16xxx | Windows Vista | RTM | GDR | | 6.0.6000.20xxx | Windows Vista | RTM | LDR | | 6.0.6001.18xxx | Windows Vista SP1 and Windows Server 2008 SP1 | SP1 | GDR | | 6.0.6001.22xxx | Windows Vista SP1 and Windows Server 2008 SP1 | SP1 | LDR | | 6.0.6002.18xxx | Windows Vista SP2 and Windows Server 2008 SP2 | SP2 | GDR | | 6.0.6002.22xxx | Windows Vista SP2 and Windows Server 2008 SP2 | SP2 | LDR |
- Service Pack 1 is integrated into the release version of Windows Server 2008. Therefore, RTM milestone files apply only to Windows Vista. RTM milestone files have a 6.0.0000. xxxxxx version number.
- GDR service branches contain only those fixes that are widely released to address widespread, critical issues. LDR service branches contain hotfixes in addition to widely released fixes.
- The MANIFEST files (.manifest) and the MUM files (.mum) that are installed for each environment are listed separately. MUM and MANIFEST files, and the associated security catalog (.cat) files, are critical to maintaining the state of the updated component. The security catalog files (attributes not listed) are signed with a Microsoft digital signature.
For all supported x86-based versions of Windows Vista and Windows Server 2008Collapse this tableExpand this table | File name | File version | File size | Date | Time | Platform |
|---|
| Httpapi.dll | 6.0.6000.17022 | 31,232 | 20-Feb-2010 | 23:51 | x86 | | Httpapi.dll | 6.0.6000.21227 | 31,232 | 20-Feb-2010 | 23:31 | x86 | | Httpapi.dll | 6.0.6001.18428 | 31,232 | 20-Feb-2010 | 23:37 | x86 | | Httpapi.dll | 6.0.6001.22638 | 31,232 | 20-Feb-2010 | 23:29 | x86 | | Httpapi.dll | 6.0.6002.18210 | 30,720 | 20-Feb-2010 | 23:05 | x86 | | Httpapi.dll | 6.0.6002.22343 | 30,720 | 20-Feb-2010 | 23:08 | x86 | | Http.sys | 6.0.6000.17022 | 396,800 | 20-Feb-2010 | 21:30 | x86 | | Http.sys | 6.0.6000.21227 | 398,848 | 20-Feb-2010 | 21:16 | x86 | | Http.sys | 6.0.6001.18428 | 411,136 | 20-Feb-2010 | 21:18 | x86 | | Http.sys | 6.0.6001.22638 | 411,136 | 20-Feb-2010 | 21:20 | x86 | | Http.sys | 6.0.6002.18210 | 411,648 | 20-Feb-2010 | 20:53 | x86 | | Http.sys | 6.0.6002.22343 | 411,648 | 20-Feb-2010 | 21:06 | x86 | | Authsspi.dll | 7.0.6000.17022 | 36,352 | 20-Feb-2010 | 23:50 | x86 | | Authsspi.dll | 7.0.6000.21227 | 36,352 | 20-Feb-2010 | 23:30 | x86 | | Authsspi.dll | 7.0.6001.18428 | 43,520 | 20-Feb-2010 | 23:35 | x86 | | Authsspi.dll | 7.0.6001.22638 | 43,520 | 20-Feb-2010 | 23:27 | x86 | | Authsspi.dll | 7.0.6002.18210 | 43,520 | 20-Feb-2010 | 23:04 | x86 | | Authsspi.dll | 7.0.6002.22343 | 43,520 | 20-Feb-2010 | 23:07 | x86 | | Hwebcore.dll | 7.0.6000.17022 | 12,288 | 20-Feb-2010 | 23:51 | x86 | | Iiscore.dll | 7.0.6000.17022 | 164,864 | 20-Feb-2010 | 23:52 | x86 | | Iisstart.htm | Not Applicable | 689 | 01-Apr-2009 | 16:01 | Not Applicable | | W3dt.dll | 7.0.6000.17022 | 23,552 | 20-Feb-2010 | 23:55 | x86 | | Welcome.png | Not Applicable | 184,946 | 01-Apr-2009 | 16:01 | Not Applicable | | Hwebcore.dll | 7.0.6000.21227 | 12,288 | 20-Feb-2010 | 23:31 | x86 | | Iiscore.dll | 7.0.6000.21227 | 164,864 | 20-Feb-2010 | 23:31 | x86 | | Iisstart.htm | Not Applicable | 689 | 01-Apr-2009 | 16:01 | Not Applicable | | W3dt.dll | 7.0.6000.21227 | 23,552 | 20-Feb-2010 | 23:36 | x86 | | Welcome.png | Not Applicable | 184,946 | 01-Apr-2009 | 16:01 | Not Applicable | | Hwebcore.dll | 7.0.6001.18359 | 12,800 | 09-Nov-2009 | 13:20 | x86 | | Iiscore.dll | 7.0.6001.18428 | 189,952 | 20-Feb-2010 | 23:37 | x86 | | Iisstart.htm | Not Applicable | 689 | 27-Mar-2009 | 08:27 | Not Applicable | | W3dt.dll | 7.0.6001.18428 | 23,552 | 20-Feb-2010 | 23:40 | x86 | | Welcome.png | Not Applicable | 184,946 | 27-Mar-2009 | 08:27 | Not Applicable | | Hwebcore.dll | 7.0.6001.22638 | 12,800 | 20-Feb-2010 | 23:29 | x86 | | Iiscore.dll | 7.0.6001.22638 | 190,976 | 20-Feb-2010 | 23:29 | x86 | | Iisstart.htm | Not Applicable | 689 | 01-Apr-2009 | 18:56 | Not Applicable | | W3dt.dll | 7.0.6001.22638 | 23,552 | 20-Feb-2010 | 23:31 | x86 | | Welcome.png | Not Applicable | 184,946 | 01-Apr-2009 | 18:56 | Not Applicable | | Hwebcore.dll | 7.0.6002.18139 | 12,800 | 09-Nov-2009 | 12:30 | x86 | | Iiscore.dll | 7.0.6002.18210 | 190,976 | 20-Feb-2010 | 23:05 | x86 | | Iisstart.htm | Not Applicable | 689 | 03-Apr-2009 | 20:42 | Not Applicable | | W3dt.dll | 7.0.6002.18210 | 23,552 | 20-Feb-2010 | 23:07 | x86 | | Welcome.png | Not Applicable | 184,946 | 03-Apr-2009 | 20:42 | Not Applicable | | Hwebcore.dll | 7.0.6002.22343 | 12,800 | 20-Feb-2010 | 23:08 | x86 | | Iiscore.dll | 7.0.6002.22343 | 190,976 | 20-Feb-2010 | 23:08 | x86 | | Iisstart.htm | Not Applicable | 689 | 03-Apr-2009 | 20:49 | Not Applicable | | W3dt.dll | 7.0.6002.22343 | 23,552 | 20-Feb-2010 | 23:12 | x86 | | Welcome.png | Not Applicable | 184,946 | 03-Apr-2009 | 20:49 | Not Applicable | | Isapi.dll | 7.0.6000.17022 | 107,008 | 20-Feb-2010 | 23:52 | x86 | | Isapi.dll | 7.0.6000.21227 | 107,008 | 20-Feb-2010 | 23:32 | x86 | | Isapi.dll | 7.0.6001.18428 | 107,008 | 20-Feb-2010 | 23:37 | x86 | | Isapi.dll | 7.0.6001.22638 | 107,008 | 20-Feb-2010 | 23:29 | x86 | | Isapi.dll | 7.0.6002.18210 | 107,008 | 20-Feb-2010 | 23:05 | x86 | | Isapi.dll | 7.0.6002.22343 | 107,008 | 20-Feb-2010 | 23:08 | x86 | | Admwprox.dll | 7.0.6000.17022 | 51,200 | 20-Feb-2010 | 23:50 | x86 | | Appcmd.exe | 7.0.6000.17022 | 150,528 | 20-Feb-2010 | 21:47 | x86 | | Appcmd.xml | Not Applicable | 3,655 | 01-Apr-2009 | 15:58 | Not Applicable | | Applicationhost.config | Not Applicable | 7,685 | 01-Apr-2009 | 15:58 | Not Applicable | | Appobj.dll | 7.0.6000.17022 | 297,472 | 20-Feb-2010 | 23:50 | x86 | | Aspnetca.exe | 7.0.6000.17022 | 178,176 | 20-Feb-2010 | 21:47 | x86 | | Aspnet_schema.xml | Not Applicable | 38,890 | 01-Apr-2009 | 15:58 | Not Applicable | | Fx_schema.xml | Not Applicable | 27,014 | 01-Apr-2009 | 15:58 | Not Applicable | | Iismig.dll | 7.0.6000.17022 | 128,512 | 20-Feb-2010 | 23:55 | x86 | | Iisreg.dll | 7.0.6000.17022 | 89,088 | 20-Feb-2010 | 23:52 | x86 | | Iisres.dll | 7.0.6000.17022 | 183,808 | 20-Feb-2010 | 20:30 | x86 | | Iisreset.exe | 7.0.6000.17022 | 14,848 | 20-Feb-2010 | 21:46 | x86 | | Iisrstap.dll | 7.0.6000.17022 | 8,192 | 20-Feb-2010 | 23:52 | x86 | | Iisrstas.exe | 7.0.6000.17022 | 30,720 | 20-Feb-2010 | 21:46 | x86 | | Iisrtl.dll | 7.0.6000.17022 | 148,480 | 20-Feb-2010 | 23:52 | x86 | | Iissetup.exe | 7.0.6000.17022 | 195,072 | 20-Feb-2010 | 21:47 | x86 | | Iissyspr.dll | 7.0.6000.17022 | 31,232 | 20-Feb-2010 | 23:52 | x86 | | Iisutil.dll | 7.0.6000.17022 | 189,952 | 20-Feb-2010 | 23:52 | x86 | | Iis_schema.xml | Not Applicable | 67,868 | 21-Jul-2009 | 09:12 | Not Applicable | | Nativerd.dll | 7.0.6000.17022 | 236,032 | 20-Feb-2010 | 23:54 | x86 | | Rsca.dll | 7.0.6000.17022 | 26,624 | 20-Feb-2010 | 23:55 | x86 | | W3ctrlps.dll | 7.0.6000.17022 | 9,216 | 20-Feb-2010 | 23:55 | x86 | | Wamregps.dll | 7.0.6000.17022 | 10,752 | 20-Feb-2010 | 23:55 | x86 | | Admwprox.dll | 7.0.6000.21227 | 51,200 | 20-Feb-2010 | 23:30 | x86 | | Appcmd.exe | 7.0.6000.21227 | 150,528 | 20-Feb-2010 | 21:31 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 01-Apr-2009 | 15:58 | Not Applicable | | Applicationhost.config | Not Applicable | 7,685 | 01-Apr-2009 | 15:58 | Not Applicable | | Appobj.dll | 7.0.6000.21227 | 297,472 | 20-Feb-2010 | 23:30 | x86 | | Aspnetca.exe | 7.0.6000.21227 | 178,176 | 20-Feb-2010 | 21:31 | x86 | | Aspnet_schema.xml | Not Applicable | 38,890 | 01-Apr-2009 | 15:58 | Not Applicable | | Fx_schema.xml | Not Applicable | 27,014 | 01-Apr-2009 | 15:58 | Not Applicable | | Iismig.dll | 7.0.6000.21227 | 128,512 | 20-Feb-2010 | 23:35 | x86 | | Iisreg.dll | 7.0.6000.21227 | 89,088 | 20-Feb-2010 | 23:31 | x86 | | Iisres.dll | 7.0.6000.21227 | 183,808 | 20-Feb-2010 | 20:21 | x86 | | Iisreset.exe | 7.0.6000.21227 | 14,848 | 20-Feb-2010 | 21:31 | x86 | | Iisrstap.dll | 7.0.6000.21227 | 8,192 | 20-Feb-2010 | 23:31 | x86 | | Iisrstas.exe | 7.0.6000.21227 | 30,720 | 20-Feb-2010 | 21:31 | x86 | | Iisrtl.dll | 7.0.6000.21227 | 148,480 | 20-Feb-2010 | 23:31 | x86 | | Iissetup.exe | 7.0.6000.21227 | 195,072 | 20-Feb-2010 | 21:31 | x86 | | Iissyspr.dll | 7.0.6000.21227 | 31,232 | 20-Feb-2010 | 23:31 | x86 | | Iisutil.dll | 7.0.6000.21227 | 189,952 | 20-Feb-2010 | 23:31 | x86 | | Iis_schema.xml | Not Applicable | 67,868 | 21-Jul-2009 | 09:12 | Not Applicable | | Nativerd.dll | 7.0.6000.21227 | 236,032 | 20-Feb-2010 | 23:34 | x86 | | Rsca.dll | 7.0.6000.21227 | 26,624 | 20-Feb-2010 | 23:35 | x86 | | W3ctrlps.dll | 7.0.6000.21227 | 9,216 | 20-Feb-2010 | 23:35 | x86 | | Wamregps.dll | 7.0.6000.21227 | 10,752 | 20-Feb-2010 | 23:36 | x86 | | Admwprox.dll | 7.0.6001.18359 | 51,712 | 09-Nov-2009 | 13:18 | x86 | | Ahadmin.dll | 7.0.6001.18359 | 27,136 | 09-Nov-2009 | 13:18 | x86 | | Appcmd.exe | 7.0.6001.18359 | 154,112 | 09-Nov-2009 | 11:21 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 27-Mar-2009 | 08:24 | Not Applicable | | Applicationhost.config | Not Applicable | 7,989 | 27-Mar-2009 | 08:24 | Not Applicable | | Appobj.dll | 7.0.6001.18359 | 311,296 | 09-Nov-2009 | 13:18 | x86 | | Aspnetca.exe | 7.0.6001.18359 | 182,784 | 09-Nov-2009 | 11:22 | x86 | | Aspnet_schema.xml | Not Applicable | 38,786 | 27-Mar-2009 | 08:24 | Not Applicable | | Fx_schema.xml | Not Applicable | 26,971 | 27-Mar-2009 | 08:24 | Not Applicable | | Iismig.dll | 7.0.6001.18359 | 209,408 | 09-Nov-2009 | 13:23 | x86 | | Iisreg.dll | 7.0.6001.18359 | 89,088 | 09-Nov-2009 | 13:20 | x86 | | Iisres.dll | 7.0.6001.18359 | 193,024 | 09-Nov-2009 | 11:21 | x86 | | Iisreset.exe | 7.0.6001.18359 | 14,848 | 09-Nov-2009 | 11:21 | x86 | | Iisrstap.dll | 7.0.6001.18359 | 8,192 | 09-Nov-2009 | 13:20 | x86 | | Iisrstas.exe | 7.0.6001.18359 | 31,232 | 09-Nov-2009 | 11:21 | x86 | | Iisrtl.dll | 7.0.6001.18359 | 153,600 | 09-Nov-2009 | 13:20 | x86 | | Iissetup.exe | 7.0.6001.18359 | 228,864 | 09-Nov-2009 | 11:22 | x86 | | Iissyspr.dll | 7.0.6001.18359 | 59,392 | 09-Nov-2009 | 13:20 | x86 | | Iisutil.dll | 7.0.6001.18359 | 202,752 | 09-Nov-2009 | 13:20 | x86 | | Iis_schema.xml | Not Applicable | 76,318 | 11-Jul-2009 | 14:24 | Not Applicable | | Nativerd.dll | 7.0.6001.18359 | 326,656 | 09-Nov-2009 | 13:22 | x86 | | Redirection.config | Not Applicable | 490 | 27-Mar-2009 | 08:24 | Not Applicable | | Rsca.dll | 7.0.6001.18359 | 26,624 | 09-Nov-2009 | 13:23 | x86 | | Rscaext.dll | 6.0.6001.18359 | 38,912 | 09-Nov-2009 | 13:23 | x86 | | Rscaext.xml | Not Applicable | 8,363 | 27-Mar-2009 | 08:24 | Not Applicable | | W3ctrlps.dll | 7.0.6001.18359 | 9,216 | 09-Nov-2009 | 13:23 | x86 | | Wamregps.dll | 7.0.6001.18359 | 10,752 | 09-Nov-2009 | 13:23 | x86 | | Admwprox.dll | 7.0.6001.22638 | 51,712 | 20-Feb-2010 | 23:26 | x86 | | Ahadmin.dll | 7.0.6001.22638 | 27,136 | 20-Feb-2010 | 23:26 | x86 | | Appcmd.exe | 7.0.6001.22638 | 154,112 | 20-Feb-2010 | 21:35 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 01-Apr-2009 | 18:54 | Not Applicable | | Applicationhost.config | Not Applicable | 7,989 | 01-Apr-2009 | 18:54 | Not Applicable | | Appobj.dll | 7.0.6001.22638 | 311,808 | 20-Feb-2010 | 23:26 | x86 | | Aspnetca.exe | 7.0.6001.22638 | 182,784 | 20-Feb-2010 | 21:35 | x86 | | Aspnet_schema.xml | Not Applicable | 38,786 | 01-Apr-2009 | 18:55 | Not Applicable | | Fx_schema.xml | Not Applicable | 26,943 | 08-May-2009 | 08:10 | Not Applicable | | Iismig.dll | 7.0.6001.22638 | 209,408 | 20-Feb-2010 | 23:31 | x86 | | Iisreg.dll | 7.0.6001.22638 | 89,088 | 20-Feb-2010 | 23:29 | x86 | | Iisres.dll | 7.0.6001.22638 | 193,024 | 20-Feb-2010 | 21:35 | x86 | | Iisreset.exe | 7.0.6001.22638 | 14,848 | 20-Feb-2010 | 21:35 | x86 | | Iisrstap.dll | 7.0.6001.22638 | 8,192 | 20-Feb-2010 | 23:29 | x86 | | Iisrstas.exe | 7.0.6001.22638 | 31,232 | 20-Feb-2010 | 21:35 | x86 | | Iisrtl.dll | 7.0.6001.22638 | 153,600 | 20-Feb-2010 | 23:29 | x86 | | Iissetup.exe | 7.0.6001.22638 | 228,864 | 20-Feb-2010 | 21:35 | x86 | | Iissyspr.dll | 7.0.6001.22638 | 59,392 | 20-Feb-2010 | 23:29 | x86 | | Iisutil.dll | 7.0.6001.22638 | 202,752 | 20-Feb-2010 | 23:29 | x86 | | Iis_schema.xml | Not Applicable | 79,213 | 20-Feb-2010 | 18:09 | Not Applicable | | Nativerd.dll | 7.0.6001.22638 | 331,776 | 20-Feb-2010 | 23:30 | x86 | | Redirection.config | Not Applicable | 490 | 01-Apr-2009 | 18:55 | Not Applicable | | Rsca.dll | 7.0.6001.22638 | 26,624 | 20-Feb-2010 | 23:31 | x86 | | Rscaext.dll | 6.0.6001.22638 | 38,912 | 20-Feb-2010 | 23:31 | x86 | | Rscaext.xml | Not Applicable | 8,363 | 01-Apr-2009 | 18:55 | Not Applicable | | W3ctrlps.dll | 7.0.6001.22638 | 9,216 | 20-Feb-2010 | 23:31 | x86 | | Wamregps.dll | 7.0.6001.22638 | 10,752 | 20-Feb-2010 | 23:31 | x86 | | Admwprox.dll | 7.0.6002.18139 | 51,712 | 09-Nov-2009 | 12:28 | x86 | | Ahadmin.dll | 7.0.6002.18139 | 27,136 | 09-Nov-2009 | 12:28 | x86 | | Appcmd.exe | 7.0.6002.18139 | 154,112 | 09-Nov-2009 | 10:48 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 03-Apr-2009 | 20:37 | Not Applicable | | Applicationhost.config | Not Applicable | 7,990 | 03-Apr-2009 | 20:37 | Not Applicable | | Appobj.dll | 7.0.6002.18139 | 311,808 | 09-Nov-2009 | 12:28 | x86 | | Aspnetca.exe | 7.0.6002.18139 | 182,784 | 09-Nov-2009 | 10:49 | x86 | | Aspnet_schema.xml | Not Applicable | 38,786 | 03-Apr-2009 | 20:38 | Not Applicable | | Fx_schema.xml | Not Applicable | 27,145 | 03-Apr-2009 | 20:38 | Not Applicable | | Iismig.dll | 7.0.6002.18139 | 209,408 | 09-Nov-2009 | 12:32 | x86 | | Iisreg.dll | 7.0.6002.18139 | 89,088 | 09-Nov-2009 | 12:30 | x86 | | Iisres.dll | 7.0.6002.18139 | 193,024 | 09-Nov-2009 | 10:48 | x86 | | Iisreset.exe | 7.0.6002.18139 | 14,848 | 09-Nov-2009 | 10:48 | x86 | | Iisrstap.dll | 7.0.6002.18139 | 8,192 | 09-Nov-2009 | 12:30 | x86 | | Iisrstas.exe | 7.0.6002.18139 | 31,232 | 09-Nov-2009 | 10:48 | x86 | | Iisrtl.dll | 7.0.6002.18139 | 153,600 | 09-Nov-2009 | 12:30 | x86 | | Iissetup.exe | 7.0.6002.18139 | 228,864 | 09-Nov-2009 | 10:49 | x86 | | Iissyspr.dll | 7.0.6002.18139 | 59,392 | 09-Nov-2009 | 12:30 | x86 | | Iisutil.dll | 7.0.6002.18139 | 202,752 | 09-Nov-2009 | 12:30 | x86 | | Iis_schema.xml | Not Applicable | 79,078 | 10-Jul-2009 | 07:03 | Not Applicable | | Nativerd.dll | 7.0.6002.18139 | 331,264 | 09-Nov-2009 | 12:31 | x86 | | Redirection.config | Not Applicable | 490 | 03-Apr-2009 | 20:38 | Not Applicable | | Rsca.dll | 7.0.6002.18139 | 26,624 | 09-Nov-2009 | 12:32 | x86 | | Rscaext.dll | 6.0.6002.18139 | 38,912 | 09-Nov-2009 | 12:32 | x86 | | Rscaext.xml | Not Applicable | 8,363 | 03-Apr-2009 | 20:38 | Not Applicable | | W3ctrlps.dll | 7.0.6002.18139 | 9,216 | 09-Nov-2009 | 12:32 | x86 | | Wamregps.dll | 7.0.6002.18139 | 10,752 | 09-Nov-2009 | 12:32 | x86 | | Admwprox.dll | 7.0.6002.22343 | 51,712 | 20-Feb-2010 | 23:06 | x86 | | Ahadmin.dll | 7.0.6002.22343 | 27,136 | 20-Feb-2010 | 23:07 | x86 | | Appcmd.exe | 7.0.6002.22343 | 154,112 | 20-Feb-2010 | 21:22 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 03-Apr-2009 | 20:43 | Not Applicable | | Applicationhost.config | Not Applicable | 7,990 | 03-Apr-2009 | 20:43 | Not Applicable | | Appobj.dll | 7.0.6002.22343 | 311,808 | 20-Feb-2010 | 23:07 | x86 | | Aspnetca.exe | 7.0.6002.22343 | 182,784 | 20-Feb-2010 | 21:22 | x86 | | Aspnet_schema.xml | Not Applicable | 38,809 | 09-Feb-2010 | 09:17 | Not Applicable | | Fx_schema.xml | Not Applicable | 27,105 | 09-Feb-2010 | 09:17 | Not Applicable | | Iismig.dll | 7.0.6002.22343 | 209,408 | 20-Feb-2010 | 23:11 | x86 | | Iisreg.dll | 7.0.6002.22343 | 89,088 | 20-Feb-2010 | 23:08 | x86 | | Iisres.dll | 7.0.6002.22343 | 193,024 | 20-Feb-2010 | 21:22 | x86 | | Iisreset.exe | 7.0.6002.22343 | 14,848 | 20-Feb-2010 | 21:21 | x86 | | Iisrstap.dll | 7.0.6002.22343 | 8,192 | 20-Feb-2010 | 23:08 | x86 | | Iisrstas.exe | 7.0.6002.22343 | 31,232 | 20-Feb-2010 | 21:21 | x86 | | Iisrtl.dll | 7.0.6002.22343 | 153,600 | 20-Feb-2010 | 23:08 | x86 | | Iissetup.exe | 7.0.6002.22343 | 228,864 | 20-Feb-2010 | 21:22 | x86 | | Iissyspr.dll | 7.0.6002.22343 | 59,392 | 20-Feb-2010 | 23:08 | x86 | | Iisutil.dll | 7.0.6002.22343 | 202,752 | 20-Feb-2010 | 23:08 | x86 | | Iis_schema.xml | Not Applicable | 79,610 | 20-Feb-2010 | 18:12 | Not Applicable | | Nativerd.dll | 7.0.6002.22343 | 333,312 | 20-Feb-2010 | 23:10 | x86 | | Redirection.config | Not Applicable | 490 | 03-Apr-2009 | 20:45 | Not Applicable | | Rsca.dll | 7.0.6002.22343 | 26,624 | 20-Feb-2010 | 23:11 | x86 | | Rscaext.dll | 6.0.6002.22343 | 38,912 | 20-Feb-2010 | 23:11 | x86 | | Rscaext.xml | Not Applicable | 8,363 | 03-Apr-2009 | 20:45 | Not Applicable | | W3ctrlps.dll | 7.0.6002.22343 | 9,216 | 20-Feb-2010 | 23:12 | x86 | | Wamregps.dll | 7.0.6002.22343 | 10,752 | 20-Feb-2010 | 23:12 | x86 | | Nshhttp.dll | 6.0.6000.17022 | 24,064 | 20-Feb-2010 | 23:54 | x86 | | Nshhttp.dll | 6.0.6000.21227 | 24,064 | 20-Feb-2010 | 23:35 | x86 | | Nshhttp.dll | 6.0.6001.18428 | 24,064 | 20-Feb-2010 | 23:39 | x86 | | Nshhttp.dll | 6.0.6001.22638 | 24,064 | 20-Feb-2010 | 23:31 | x86 | | Nshhttp.dll | 6.0.6002.18210 | 24,064 | 20-Feb-2010 | 23:06 | x86 | | Nshhttp.dll | 6.0.6002.22343 | 24,064 | 20-Feb-2010 | 23:10 | x86 | | Iisw3adm.dll | 7.0.6000.17022 | 322,560 | 20-Feb-2010 | 23:52 | x86 | | W3tp.dll | 7.0.6000.17022 | 15,360 | 20-Feb-2010 | 23:55 | x86 | | W3wphost.dll | 7.0.6000.17022 | 39,424 | 20-Feb-2010 | 23:55 | x86 | | Wbhstipm.dll | 7.0.6000.17022 | 25,088 | 20-Feb-2010 | 23:55 | x86 | | Wbhst_pm.dll | 7.0.6000.17022 | 22,016 | 20-Feb-2010 | 23:55 | x86 | | Iisw3adm.dll | 7.0.6000.21227 | 322,560 | 20-Feb-2010 | 23:31 | x86 | | W3tp.dll | 7.0.6000.21227 | 15,360 | 20-Feb-2010 | 23:36 | x86 | | W3wphost.dll | 7.0.6000.21227 | 39,424 | 20-Feb-2010 | 23:36 | x86 | | Wbhstipm.dll | 7.0.6000.21227 | 25,088 | 20-Feb-2010 | 23:36 | x86 | | Wbhst_pm.dll | 7.0.6000.21227 | 22,016 | 20-Feb-2010 | 23:36 | x86 | | Iisw3adm.dll | 7.0.6001.18428 | 371,712 | 20-Feb-2010 | 23:37 | x86 | | W3tp.dll | 7.0.6001.18359 | 15,872 | 09-Nov-2009 | 13:23 | x86 | | W3wphost.dll | 7.0.6001.18359 | 46,592 | 09-Nov-2009 | 13:23 | x86 | | Wbhstipm.dll | 7.0.6001.18359 | 24,064 | 09-Nov-2009 | 13:23 | x86 | | Wbhst_pm.dll | 7.0.6001.18359 | 22,528 | 09-Nov-2009 | 13:23 | x86 | | Iisw3adm.dll | 7.0.6001.22638 | 371,712 | 20-Feb-2010 | 23:29 | x86 | | W3tp.dll | 7.0.6001.22638 | 15,872 | 20-Feb-2010 | 23:31 | x86 | | W3wphost.dll | 7.0.6001.22638 | 46,592 | 20-Feb-2010 | 23:31 | x86 | | Wbhstipm.dll | 7.0.6001.22638 | 24,064 | 20-Feb-2010 | 23:31 | x86 | | Wbhst_pm.dll | 7.0.6001.22638 | 22,528 | 20-Feb-2010 | 23:31 | x86 | | Iisw3adm.dll | 7.0.6002.18210 | 373,760 | 20-Feb-2010 | 23:05 | x86 | | W3tp.dll | 7.0.6002.18139 | 15,872 | 09-Nov-2009 | 12:32 | x86 | | W3wphost.dll | 7.0.6002.18139 | 47,616 | 09-Nov-2009 | 12:32 | x86 | | Wbhstipm.dll | 7.0.6002.18139 | 24,064 | 09-Nov-2009 | 12:32 | x86 | | Wbhst_pm.dll | 7.0.6002.18139 | 22,528 | 09-Nov-2009 | 12:32 | x86 | | Iisw3adm.dll | 7.0.6002.22343 | 374,272 | 20-Feb-2010 | 23:08 | x86 | | W3tp.dll | 7.0.6002.22343 | 15,872 | 20-Feb-2010 | 23:12 | x86 | | W3wphost.dll | 7.0.6002.22343 | 48,128 | 20-Feb-2010 | 23:12 | x86 | | Wbhstipm.dll | 7.0.6002.22343 | 24,064 | 20-Feb-2010 | 23:12 | x86 | | Wbhst_pm.dll | 7.0.6002.22343 | 22,528 | 20-Feb-2010 | 23:12 | x86 |
For all supported x64-based versions of Windows Vista and Windows Server 2008Collapse this tableExpand this table | File name | File version | File size | Date | Time | Platform |
|---|
| Httpapi.dll | 6.0.6000.17022 | 33,792 | 21-Feb-2010 | 00:02 | x64 | | Httpapi.dll | 6.0.6000.21227 | 33,792 | 21-Feb-2010 | 05:45 | x64 | | Httpapi.dll | 6.0.6001.18428 | 33,792 | 20-Feb-2010 | 23:42 | x64 | | Httpapi.dll | 6.0.6001.22638 | 33,792 | 21-Feb-2010 | 00:05 | x64 | | Httpapi.dll | 6.0.6002.18210 | 33,792 | 20-Feb-2010 | 23:14 | x64 | | Httpapi.dll | 6.0.6002.22343 | 33,792 | 20-Feb-2010 | 23:10 | x64 | | Http.sys | 6.0.6000.17022 | 604,160 | 20-Feb-2010 | 21:50 | x64 | | Http.sys | 6.0.6000.21227 | 603,648 | 20-Feb-2010 | 21:49 | x64 | | Http.sys | 6.0.6001.18428 | 610,304 | 20-Feb-2010 | 21:40 | x64 | | Http.sys | 6.0.6001.22638 | 609,792 | 20-Feb-2010 | 21:46 | x64 | | Http.sys | 6.0.6002.18210 | 620,032 | 20-Feb-2010 | 21:30 | x64 | | Http.sys | 6.0.6002.22343 | 620,032 | 20-Feb-2010 | 21:20 | x64 | | Authsspi.dll | 7.0.6000.17022 | 42,496 | 20-Feb-2010 | 23:59 | x64 | | Authsspi.dll | 7.0.6000.21227 | 42,496 | 21-Feb-2010 | 05:42 | x64 | | Authsspi.dll | 7.0.6001.18428 | 49,152 | 20-Feb-2010 | 23:40 | x64 | | Authsspi.dll | 7.0.6001.22638 | 49,152 | 21-Feb-2010 | 00:03 | x64 | | Authsspi.dll | 7.0.6002.18210 | 49,152 | 20-Feb-2010 | 23:12 | x64 | | Authsspi.dll | 7.0.6002.22343 | 49,152 | 20-Feb-2010 | 23:08 | x64 | | Hwebcore.dll | 7.0.6000.17022 | 14,336 | 21-Feb-2010 | 00:02 | x64 | | Iiscore.dll | 7.0.6000.17022 | 269,312 | 21-Feb-2010 | 00:02 | x64 | | Iisstart.htm | Not Applicable | 689 | 02-Apr-2009 | 19:28 | Not Applicable | | W3dt.dll | 7.0.6000.17022 | 32,256 | 21-Feb-2010 | 00:06 | x64 | | Welcome.png | Not Applicable | 184,946 | 02-Apr-2009 | 19:28 | Not Applicable | | Hwebcore.dll | 7.0.6000.21227 | 14,336 | 21-Feb-2010 | 05:45 | x64 | | Iiscore.dll | 7.0.6000.21227 | 269,312 | 21-Feb-2010 | 05:45 | x64 | | Iisstart.htm | Not Applicable | 689 | 01-Apr-2009 | 16:02 | Not Applicable | | W3dt.dll | 7.0.6000.21227 | 32,256 | 21-Feb-2010 | 05:50 | x64 | | Welcome.png | Not Applicable | 184,946 | 01-Apr-2009 | 16:02 | Not Applicable | | Hwebcore.dll | 7.0.6001.18359 | 15,360 | 09-Nov-2009 | 13:44 | x64 | | Iiscore.dll | 7.0.6001.18428 | 296,448 | 20-Feb-2010 | 23:42 | x64 | | Iisstart.htm | Not Applicable | 689 | 24-Mar-2009 | 09:05 | Not Applicable | | W3dt.dll | 7.0.6001.18428 | 31,744 | 20-Feb-2010 | 23:46 | x64 | | Welcome.png | Not Applicable | 184,946 | 24-Mar-2009 | 09:05 | Not Applicable | | Hwebcore.dll | 7.0.6001.22638 | 15,360 | 21-Feb-2010 | 00:05 | x64 | | Iiscore.dll | 7.0.6001.22638 | 290,304 | 21-Feb-2010 | 00:05 | x64 | | Iisstart.htm | Not Applicable | 689 | 01-Apr-2009 | 15:59 | Not Applicable | | W3dt.dll | 7.0.6001.22638 | 31,744 | 21-Feb-2010 | 00:08 | x64 | | Welcome.png | Not Applicable | 184,946 | 01-Apr-2009 | 16:00 | Not Applicable | | Hwebcore.dll | 7.0.6002.18139 | 15,360 | 09-Nov-2009 | 12:59 | x64 | | Iiscore.dll | 7.0.6002.18210 | 297,472 | 20-Feb-2010 | 23:14 | x64 | | Iisstart.htm | Not Applicable | 689 | 03-Apr-2009 | 20:47 | Not Applicable | | W3dt.dll | 7.0.6002.18210 | 31,232 | 20-Feb-2010 | 23:17 | x64 | | Welcome.png | Not Applicable | 184,946 | 03-Apr-2009 | 20:47 | Not Applicable | | Hwebcore.dll | 7.0.6002.22343 | 15,360 | 20-Feb-2010 | 23:10 | x64 | | Iiscore.dll | 7.0.6002.22343 | 297,472 | 20-Feb-2010 | 23:10 | x64 | | Iisstart.htm | Not Applicable | 689 | 03-Apr-2009 | 20:41 | Not Applicable | | W3dt.dll | 7.0.6002.22343 | 31,232 | 20-Feb-2010 | 23:13 | x64 | | Welcome.png | Not Applicable | 184,946 | 03-Apr-2009 | 20:41 | Not Applicable | | Isapi.dll | 7.0.6000.17022 | 119,808 | 21-Feb-2010 | 00:02 | x64 | | Isapi.dll | 7.0.6000.21227 | 119,808 | 21-Feb-2010 | 05:46 | x64 | | Isapi.dll | 7.0.6001.18428 | 120,320 | 20-Feb-2010 | 23:42 | x64 | | Isapi.dll | 7.0.6001.22638 | 120,320 | 21-Feb-2010 | 00:05 | x64 | | Isapi.dll | 7.0.6002.18210 | 120,320 | 20-Feb-2010 | 23:14 | x64 | | Isapi.dll | 7.0.6002.22343 | 120,320 | 20-Feb-2010 | 23:10 | x64 | | Admwprox.dll | 7.0.6000.21227 | 54,784 | 21-Feb-2010 | 05:42 | x64 | | Appcmd.exe | 7.0.6000.21227 | 186,880 | 20-Feb-2010 | 22:08 | x64 | | Appcmd.xml | Not Applicable | 3,654 | 01-Apr-2009 | 15:59 | Not Applicable | | Applicationhost.config | Not Applicable | 7,685 | 01-Apr-2009 | 15:59 | Not Applicable | | Appobj.dll | 7.0.6000.21227 | 359,936 | 21-Feb-2010 | 05:42 | x64 | | Aspnetca.exe | 7.0.6000.21227 | 214,016 | 20-Feb-2010 | 22:08 | x64 | | Aspnet_schema.xml | Not Applicable | 38,890 | 01-Apr-2009 | 15:59 | Not Applicable | | Fx_schema.xml | Not Applicable | 27,014 | 01-Apr-2009 | 16:00 | Not Applicable | | Iismig.dll | 7.0.6000.21227 | 150,016 | 21-Feb-2010 | 05:49 | x64 | | Iisreg.dll | 7.0.6000.21227 | 111,616 | 21-Feb-2010 | 05:45 | x64 | | Iisres.dll | 7.0.6000.21227 | 183,808 | 20-Feb-2010 | 20:39 | x64 | | Iisreset.exe | 7.0.6000.21227 | 18,432 | 20-Feb-2010 | 22:07 | x64 | | Iisrstap.dll | 7.0.6000.21227 | 11,264 | 21-Feb-2010 | 05:45 | x64 | | Iisrstas.exe | 7.0.6000.21227 | 34,816 | 20-Feb-2010 | 22:07 | x64 | | Iisrtl.dll | 7.0.6000.21227 | 185,856 | 21-Feb-2010 | 05:45 | x64 | | Iissetup.exe | 7.0.6000.21227 | 241,152 | 20-Feb-2010 | 22:08 | x64 | | Iissyspr.dll | 7.0.6000.21227 | 36,352 | 21-Feb-2010 | 05:45 | x64 | | Iisutil.dll | 7.0.6000.21227 | 276,480 | 21-Feb-2010 | 05:45 | x64 | | Iis_schema.xml | Not Applicable | 67,868 | 21-Jul-2009 | 09:13 | Not Applicable | | Nativerd.dll | 7.0.6000.21227 | 310,272 | 21-Feb-2010 | 05:48 | x64 | | Rsca.dll | 7.0.6000.21227 | 31,232 | 21-Feb-2010 | 05:49 | x64 | | W3ctrlps.dll | 7.0.6000.21227 | 13,824 | 21-Feb-2010 | 05:50 | x64 | | Wamregps.dll | 7.0.6000.21227 | 15,872 | 21-Feb-2010 | 05:50 | x64 | | Admwprox.dll | 7.0.6001.18359 | 54,784 | 09-Nov-2009 | 13:42 | x64 | | Ahadmin.dll | 7.0.6001.18359 | 61,440 | 09-Nov-2009 | 13:42 | x64 | | Appcmd.exe | 7.0.6001.18359 | 190,976 | 09-Nov-2009 | 11:48 | x64 | | Appcmd.xml | Not Applicable | 3,654 | 24-Mar-2009 | 09:02 | Not Applicable | | Applicationhost.config | Not Applicable | 7,989 | 24-Mar-2009 | 09:02 | Not Applicable | | Appobj.dll | 7.0.6001.18359 | 378,368 | 09-Nov-2009 | 13:43 | x64 | | Aspnetca.exe | 7.0.6001.18359 | 218,624 | 09-Nov-2009 | 11:48 | x64 | | Aspnet_schema.xml | Not Applicable | 38,786 | 24-Mar-2009 | 09:03 | Not Applicable | | Fx_schema.xml | Not Applicable | 26,971 | 24-Mar-2009 | 09:03 | Not Applicable | | Iismig.dll | 7.0.6001.18359 | 242,688 | 09-Nov-2009 | 13:48 | x64 | | Iisreg.dll | 7.0.6001.18359 | 111,616 | 09-Nov-2009 | 13:45 | x64 | | Iisres.dll | 7.0.6001.18359 | 193,024 | 09-Nov-2009 | 11:48 | x64 | | Iisreset.exe | 7.0.6001.18359 | 16,896 | 09-Nov-2009 | 11:47 | x64 | | Iisrstap.dll | 7.0.6001.18359 | 11,264 | 09-Nov-2009 | 13:45 | x64 | | Iisrstas.exe | 7.0.6001.18359 | 34,816 | 09-Nov-2009 | 11:47 | x64 | | Iisrtl.dll | 7.0.6001.18359 | 192,512 | 09-Nov-2009 | 13:45 | x64 | | Iissetup.exe | 7.0.6001.18359 | 280,064 | 09-Nov-2009 | 11:48 | x64 | | Iissyspr.dll | 7.0.6001.18359 | 66,560 | 09-Nov-2009 | 13:45 | x64 | | Iisutil.dll | 7.0.6001.18359 | 275,456 | 09-Nov-2009 | 13:45 | x64 | | Iis_schema.xml | Not Applicable | 76,318 | 11-Jul-2009 | 14:24 | Not Applicable | | Nativerd.dll | 7.0.6001.18359 | 416,768 | 09-Nov-2009 | 13:46 | x64 | | Redirection.config | Not Applicable | 490 | 24-Mar-2009 | 09:03 | Not Applicable | | Rsca.dll | 7.0.6001.18359 | 31,232 | 09-Nov-2009 | 13:48 | x64 | | Rscaext.dll | 6.0.6001.18359 | 44,032 | 09-Nov-2009 | 13:48 | x64 | | Rscaext.xml | Not Applicable | 8,363 | 24-Mar-2009 | 09:03 | Not Applicable | | W3ctrlps.dll | 7.0.6001.18359 | 13,824 | 09-Nov-2009 | 13:48 | x64 | | Wamregps.dll | 7.0.6001.18359 | 15,872 | 09-Nov-2009 | 13:48 | x64 | | Admwprox.dll | 7.0.6001.22638 | 54,784 | 21-Feb-2010 | 00:03 | x64 | | Ahadmin.dll | 7.0.6001.22638 | 61,440 | 21-Feb-2010 | 00:03 | x64 | | Appcmd.exe | 7.0.6001.22638 | 191,488 | 20-Feb-2010 | 22:03 | x64 | | Appcmd.xml | Not Applicable | 3,654 | 01-Apr-2009 | 15:56 | Not Applicable | | Applicationhost.config | Not Applicable | 7,989 | 01-Apr-2009 | 15:56 | Not Applicable | | Appobj.dll | 7.0.6001.22638 | 379,392 | 21-Feb-2010 | 00:03 | x64 | | Aspnetca.exe | 7.0.6001.22638 | 218,624 | 20-Feb-2010 | 22:03 | x64 | | Aspnet_schema.xml | Not Applicable | 38,786 | 01-Apr-2009 | 15:56 | Not Applicable | | Fx_schema.xml | Not Applicable | 26,943 | 08-May-2009 | 08:11 | Not Applicable | | Iismig.dll | 7.0.6001.22638 | 242,688 | 21-Feb-2010 | 00:08 | x64 | | Iisreg.dll | 7.0.6001.22638 | 111,616 | 21-Feb-2010 | 00:05 | x64 | | Iisres.dll | 7.0.6001.22638 | 193,024 | 20-Feb-2010 | 22:02 | x64 | | Iisreset.exe | 7.0.6001.22638 | 16,896 | 20-Feb-2010 | 22:02 | x64 | | Iisrstap.dll | 7.0.6001.22638 | 11,264 | 21-Feb-2010 | 00:05 | x64 | | Iisrstas.exe | 7.0.6001.22638 | 34,816 | 20-Feb-2010 | 22:02 | x64 | | Iisrtl.dll | 7.0.6001.22638 | 192,512 | 21-Feb-2010 | 00:05 | x64 | | Iissetup.exe | 7.0.6001.22638 | 280,064 | 20-Feb-2010 | 22:03 | x64 | | Iissyspr.dll | 7.0.6001.22638 | 66,560 | 21-Feb-2010 | 00:05 | x64 | | Iisutil.dll | 7.0.6001.22638 | 275,456 | 21-Feb-2010 | 00:05 | x64 | | Iis_schema.xml | Not Applicable | 79,213 | 20-Feb-2010 | 18:10 | Not Applicable | | Nativerd.dll | 7.0.6001.22638 | 416,256 | 21-Feb-2010 | 00:07 | x64 | | Redirection.config | Not Applicable | 490 | 01-Apr-2009 | 15:56 | Not Applicable | | Rsca.dll | 7.0.6001.22638 | 31,232 | 21-Feb-2010 | 00:08 | x64 | | Rscaext.dll | 6.0.6001.22638 | 44,032 | 21-Feb-2010 | 00:08 | x64 | | Rscaext.xml | Not Applicable | 8,363 | 01-Apr-2009 | 15:56 | Not Applicable | | W3ctrlps.dll | 7.0.6001.22638 | 13,824 | 21-Feb-2010 | 00:08 | x64 | | Wamregps.dll | 7.0.6001.22638 | 15,872 | 21-Feb-2010 | 00:08 | x64 | | Admwprox.dll | 7.0.6002.18139 | 54,784 | 09-Nov-2009 | 12:58 | x64 | | Ahadmin.dll | 7.0.6002.18139 | 61,440 | 09-Nov-2009 | 12:58 | x64 | | Appcmd.exe | 7.0.6002.18139 | 191,488 | 09-Nov-2009 | 11:20 | x64 | | Appcmd.xml | Not Applicable | 3,654 | 03-Apr-2009 | 20:41 | Not Applicable | | Applicationhost.config | Not Applicable | 7,990 | 03-Apr-2009 | 20:41 | Not Applicable | | Appobj.dll | 7.0.6002.18139 | 379,392 | 09-Nov-2009 | 12:58 | x64 | | Aspnetca.exe | 7.0.6002.18139 | 218,624 | 09-Nov-2009 | 11:20 | x64 | | Aspnet_schema.xml | Not Applicable | 38,786 | 03-Apr-2009 | 20:42 | Not Applicable | | Fx_schema.xml | Not Applicable | 27,145 | 03-Apr-2009 | 20:42 | Not Applicable | | Iismig.dll | 7.0.6002.18139 | 242,688 | 09-Nov-2009 | 13:02 | x64 | | Iisreg.dll | 7.0.6002.18139 | 111,616 | 09-Nov-2009 | 12:59 | x64 | | Iisres.dll | 7.0.6002.18139 | 193,024 | 09-Nov-2009 | 11:20 | x64 | | Iisreset.exe | 7.0.6002.18139 | 16,896 | 09-Nov-2009 | 11:19 | x64 | | Iisrstap.dll | 7.0.6002.18139 | 11,264 | 09-Nov-2009 | 12:59 | x64 | | Iisrstas.exe | 7.0.6002.18139 | 34,816 | 09-Nov-2009 | 11:20 | x64 | | Iisrtl.dll | 7.0.6002.18139 | 192,512 | 09-Nov-2009 | 12:59 | x64 | | Iissetup.exe | 7.0.6002.18139 | 280,064 | 09-Nov-2009 | 11:20 | x64 | | Iissyspr.dll | 7.0.6002.18139 | 66,560 | 09-Nov-2009 | 12:59 | x64 | | Iisutil.dll | 7.0.6002.18139 | 276,992 | 09-Nov-2009 | 12:59 | x64 | | Iis_schema.xml | Not Applicable | 79,078 | 10-Jul-2009 | 07:03 | Not Applicable | | Nativerd.dll | 7.0.6002.18139 | 415,232 | 09-Nov-2009 | 13:01 | x64 | | Redirection.config | Not Applicable | 490 | 03-Apr-2009 | 20:42 | Not Applicable | | Rsca.dll | 7.0.6002.18139 | 31,232 | 09-Nov-2009 | 13:02 | x64 | | Rscaext.dll | 6.0.6002.18139 | 44,032 | 09-Nov-2009 | 13:02 | x64 | | Rscaext.xml | Not Applicable | 8,363 | 03-Apr-2009 | 20:42 | Not Applicable | | W3ctrlps.dll | 7.0.6002.18139 | 13,824 | 09-Nov-2009 | 13:03 | x64 | | Wamregps.dll | 7.0.6002.18139 | 15,872 | 09-Nov-2009 | 13:03 | x64 | | Admwprox.dll | 7.0.6002.22343 | 54,784 | 20-Feb-2010 | 23:08 | x64 | | Ahadmin.dll | 7.0.6002.22343 | 61,440 | 20-Feb-2010 | 23:08 | x64 | | Appcmd.exe | 7.0.6002.22343 | 191,488 | 20-Feb-2010 | 21:36 | x64 | | Appcmd.xml | Not Applicable | 3,654 | 03-Apr-2009 | 20:38 | Not Applicable | | Applicationhost.config | Not Applicable | 7,990 | 03-Apr-2009 | 20:38 | Not Applicable | | Appobj.dll | 7.0.6002.22343 | 379,392 | 20-Feb-2010 | 23:08 | x64 | | Aspnetca.exe | 7.0.6002.22343 | 218,624 | 20-Feb-2010 | 21:36 | x64 | | Aspnet_schema.xml | Not Applicable | 38,809 | 09-Feb-2010 | 09:17 | Not Applicable | | Fx_schema.xml | Not Applicable | 27,105 | 09-Feb-2010 | 09:17 | Not Applicable | | Iismig.dll | 7.0.6002.22343 | 242,688 | 20-Feb-2010 | 23:12 | x64 | | Iisreg.dll | 7.0.6002.22343 | 111,616 | 20-Feb-2010 | 23:10 | x64 | | Iisres.dll | 7.0.6002.22343 | 193,024 | 20-Feb-2010 | 21:36 | x64 | | Iisreset.exe | 7.0.6002.22343 | 16,896 | 20-Feb-2010 | 21:35 | x64 | | Iisrstap.dll | 7.0.6002.22343 | 11,264 | 20-Feb-2010 | 23:10 | x64 | | Iisrstas.exe | 7.0.6002.22343 | 34,816 | 20-Feb-2010 | 21:35 | x64 | | Iisrtl.dll | 7.0.6002.22343 | 192,512 | 20-Feb-2010 | 23:10 | x64 | | Iissetup.exe | 7.0.6002.22343 | 280,064 | 20-Feb-2010 | 21:36 | x64 | | Iissyspr.dll | 7.0.6002.22343 | 66,560 | 20-Feb-2010 | 23:10 | x64 | | Iisutil.dll | 7.0.6002.22343 | 276,992 | 20-Feb-2010 | 23:10 | x64 | | Iis_schema.xml | Not Applicable | 79,610 | 20-Feb-2010 | 18:11 | Not Applicable | | Nativerd.dll | 7.0.6002.22343 | 417,280 | 20-Feb-2010 | 23:11 | x64 | | Redirection.config | Not Applicable | 490 | 03-Apr-2009 | 20:39 | Not Applicable | | Rsca.dll | 7.0.6002.22343 | 31,232 | 20-Feb-2010 | 23:12 | x64 | | Rscaext.dll | 6.0.6002.22343 | 44,032 | 20-Feb-2010 | 23:12 | x64 | | Rscaext.xml | Not Applicable | 8,363 | 03-Apr-2009 | 20:39 | Not Applicable | | W3ctrlps.dll | 7.0.6002.22343 | 13,824 | 20-Feb-2010 | 23:13 | x64 | | Wamregps.dll | 7.0.6002.22343 | 15,872 | 20-Feb-2010 | 23:13 | x64 | | Nshhttp.dll | 6.0.6000.17022 | 32,768 | 21-Feb-2010 | 00:05 | x64 | | Nshhttp.dll | 6.0.6000.21227 | 32,768 | 21-Feb-2010 | 05:49 | x64 | | Nshhttp.dll | 6.0.6001.18428 | 32,768 | 20-Feb-2010 | 23:44 | x64 | | Nshhttp.dll | 6.0.6001.22638 | 32,768 | 21-Feb-2010 | 00:07 | x64 | | Nshhttp.dll | 6.0.6002.18210 | 32,768 | 20-Feb-2010 | 23:15 | x64 | | Nshhttp.dll | 6.0.6002.22343 | 32,768 | 20-Feb-2010 | 23:12 | x64 | | Iisw3adm.dll | 7.0.6000.17022 | 368,640 | 21-Feb-2010 | 00:02 | x64 | | W3tp.dll | 7.0.6000.17022 | 17,920 | 21-Feb-2010 | 00:06 | x64 | | W3wphost.dll | 7.0.6000.17022 | 43,520 | 21-Feb-2010 | 00:06 | x64 | | Wbhstipm.dll | 7.0.6000.17022 | 29,696 | 21-Feb-2010 | 00:07 | x64 | | Wbhst_pm.dll | 7.0.6000.17022 | 24,064 | 21-Feb-2010 | 00:07 | x64 | | Iisw3adm.dll | 7.0.6000.21227 | 368,640 | 21-Feb-2010 | 05:45 | x64 | | W3tp.dll | 7.0.6000.21227 | 17,920 | 21-Feb-2010 | 05:50 | x64 | | W3wphost.dll | 7.0.6000.21227 | 43,520 | 21-Feb-2010 | 05:50 | x64 | | Wbhstipm.dll | 7.0.6000.21227 | 29,696 | 21-Feb-2010 | 05:50 | x64 | | Wbhst_pm.dll | 7.0.6000.21227 | 24,064 | 21-Feb-2010 | 05:50 | x64 | | Iisw3adm.dll | 7.0.6001.18428 | 424,960 | 20-Feb-2010 | 23:42 | x64 | | W3tp.dll | 7.0.6001.18359 | 18,432 | 09-Nov-2009 | 13:48 | x64 | | W3wphost.dll | 7.0.6001.18359 | 50,176 | 09-Nov-2009 | 13:48 | x64 | | Wbhstipm.dll | 7.0.6001.18359 | 28,672 | 09-Nov-2009 | 13:48 | x64 | | Wbhst_pm.dll | 7.0.6001.18359 | 24,064 | 09-Nov-2009 | 13:48 | x64 | | Iisw3adm.dll | 7.0.6001.22638 | 424,960 | 21-Feb-2010 | 00:05 | x64 | | W3tp.dll | 7.0.6001.22638 | 18,432 | 21-Feb-2010 | 00:08 | x64 | | W3wphost.dll | 7.0.6001.22638 | 50,688 | 21-Feb-2010 | 00:08 | x64 | | Wbhstipm.dll | 7.0.6001.22638 | 28,672 | 21-Feb-2010 | 00:08 | x64 | | Wbhst_pm.dll | 7.0.6001.22638 | 24,064 | 21-Feb-2010 | 00:08 | x64 | | Iisw3adm.dll | 7.0.6002.18210 | 427,008 | 20-Feb-2010 | 23:14 | x64 | | W3tp.dll | 7.0.6002.18139 | 18,432 | 09-Nov-2009 | 13:03 | x64 | | W3wphost.dll | 7.0.6002.18139 | 51,712 | 09-Nov-2009 | 13:03 | x64 | | Wbhstipm.dll | 7.0.6002.18139 | 28,672 | 09-Nov-2009 | 13:03 | x64 | | Wbhst_pm.dll | 7.0.6002.18139 | 24,064 | 09-Nov-2009 | 13:03 | x64 | | Iisw3adm.dll | 7.0.6002.22343 | 427,520 | 20-Feb-2010 | 23:10 | x64 | | W3tp.dll | 7.0.6002.22343 | 18,432 | 20-Feb-2010 | 23:13 | x64 | | W3wphost.dll | 7.0.6002.22343 | 51,712 | 20-Feb-2010 | 23:13 | x64 | | Wbhstipm.dll | 7.0.6002.22343 | 28,672 | 20-Feb-2010 | 23:13 | x64 | | Wbhst_pm.dll | 7.0.6002.22343 | 24,064 | 20-Feb-2010 | 23:13 | x64 | | Authsspi.dll | 7.0.6000.17022 | 36,352 | 20-Feb-2010 | 23:50 | x86 | | Authsspi.dll | 7.0.6000.21227 | 36,352 | 20-Feb-2010 | 23:30 | x86 | | Authsspi.dll | 7.0.6001.18428 | 43,520 | 20-Feb-2010 | 23:35 | x86 | | Authsspi.dll | 7.0.6001.22638 | 43,520 | 20-Feb-2010 | 23:27 | x86 | | Authsspi.dll | 7.0.6002.18210 | 43,520 | 20-Feb-2010 | 23:04 | x86 | | Authsspi.dll | 7.0.6002.22343 | 43,520 | 20-Feb-2010 | 23:07 | x86 | | Hwebcore.dll | 7.0.6000.17022 | 12,288 | 20-Feb-2010 | 23:51 | x86 | | Iiscore.dll | 7.0.6000.17022 | 164,864 | 20-Feb-2010 | 23:52 | x86 | | W3dt.dll | 7.0.6000.17022 | 23,552 | 20-Feb-2010 | 23:55 | x86 | | Hwebcore.dll | 7.0.6000.21227 | 12,288 | 20-Feb-2010 | 23:31 | x86 | | Iiscore.dll | 7.0.6000.21227 | 164,864 | 20-Feb-2010 | 23:31 | x86 | | W3dt.dll | 7.0.6000.21227 | 23,552 | 20-Feb-2010 | 23:36 | x86 | | Hwebcore.dll | 7.0.6001.18359 | 12,800 | 09-Nov-2009 | 13:20 | x86 | | Iiscore.dll | 7.0.6001.18428 | 189,952 | 20-Feb-2010 | 23:37 | x86 | | W3dt.dll | 7.0.6001.18428 | 23,552 | 20-Feb-2010 | 23:40 | x86 | | Hwebcore.dll | 7.0.6001.22638 | 12,800 | 20-Feb-2010 | 23:29 | x86 | | Iiscore.dll | 7.0.6001.22638 | 190,976 | 20-Feb-2010 | 23:29 | x86 | | W3dt.dll | 7.0.6001.22638 | 23,552 | 20-Feb-2010 | 23:31 | x86 | | Hwebcore.dll | 7.0.6002.18139 | 12,800 | 09-Nov-2009 | 12:30 | x86 | | Iiscore.dll | 7.0.6002.18210 | 190,976 | 20-Feb-2010 | 23:05 | x86 | | W3dt.dll | 7.0.6002.18210 | 23,552 | 20-Feb-2010 | 23:07 | x86 | | Hwebcore.dll | 7.0.6002.22343 | 12,800 | 20-Feb-2010 | 23:08 | x86 | | Iiscore.dll | 7.0.6002.22343 | 190,976 | 20-Feb-2010 | 23:08 | x86 | | W3dt.dll | 7.0.6002.22343 | 23,552 | 20-Feb-2010 | 23:12 | x86 | | Isapi.dll | 7.0.6000.17022 | 107,008 | 20-Feb-2010 | 23:52 | x86 | | Isapi.dll | 7.0.6000.21227 | 107,008 | 20-Feb-2010 | 23:32 | x86 | | Isapi.dll | 7.0.6001.18428 | 107,008 | 20-Feb-2010 | 23:37 | x86 | | Isapi.dll | 7.0.6001.22638 | 107,008 | 20-Feb-2010 | 23:29 | x86 | | Isapi.dll | 7.0.6002.18210 | 107,008 | 20-Feb-2010 | 23:05 | x86 | | Isapi.dll | 7.0.6002.22343 | 107,008 | 20-Feb-2010 | 23:08 | x86 | | Admwprox.dll | 7.0.6000.21227 | 51,200 | 20-Feb-2010 | 23:30 | x86 | | Appcmd.exe | 7.0.6000.21227 | 150,528 | 20-Feb-2010 | 21:31 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 01-Apr-2009 | 15:58 | Not Applicable | | Appobj.dll | 7.0.6000.21227 | 297,472 | 20-Feb-2010 | 23:30 | x86 | | Aspnetca.exe | 7.0.6000.21227 | 178,176 | 20-Feb-2010 | 21:31 | x86 | | Iismig.dll | 7.0.6000.21227 | 128,512 | 20-Feb-2010 | 23:35 | x86 | | Iisreg.dll | 7.0.6000.21227 | 89,088 | 20-Feb-2010 | 23:31 | x86 | | Iisres.dll | 7.0.6000.21227 | 183,808 | 20-Feb-2010 | 20:21 | x86 | | Iisreset.exe | 7.0.6000.21227 | 14,848 | 20-Feb-2010 | 21:31 | x86 | | Iisrstap.dll | 7.0.6000.21227 | 8,192 | 20-Feb-2010 | 23:31 | x86 | | Iisrtl.dll | 7.0.6000.21227 | 148,480 | 20-Feb-2010 | 23:31 | x86 | | Iissetup.exe | 7.0.6000.21227 | 195,072 | 20-Feb-2010 | 21:31 | x86 | | Iissyspr.dll | 7.0.6000.21227 | 31,232 | 20-Feb-2010 | 23:31 | x86 | | Iisutil.dll | 7.0.6000.21227 | 189,952 | 20-Feb-2010 | 23:31 | x86 | | Nativerd.dll | 7.0.6000.21227 | 236,032 | 20-Feb-2010 | 23:34 | x86 | | Rsca.dll | 7.0.6000.21227 | 26,624 | 20-Feb-2010 | 23:35 | x86 | | W3ctrlps.dll | 7.0.6000.21227 | 9,216 | 20-Feb-2010 | 23:35 | x86 | | Wamregps.dll | 7.0.6000.21227 | 10,752 | 20-Feb-2010 | 23:36 | x86 | | Admwprox.dll | 7.0.6001.18428 | 51,712 | 20-Feb-2010 | 23:35 | x86 | | Ahadmin.dll | 7.0.6001.18428 | 27,136 | 20-Feb-2010 | 23:35 | x86 | | Appcmd.exe | 7.0.6001.18428 | 154,112 | 20-Feb-2010 | 21:33 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 27-Mar-2009 | 08:24 | Not Applicable | | Appobj.dll | 7.0.6001.18428 | 311,296 | 20-Feb-2010 | 23:35 | x86 | | Aspnetca.exe | 7.0.6001.18428 | 182,784 | 20-Feb-2010 | 21:34 | x86 | | Iismig.dll | 7.0.6001.18428 | 209,408 | 20-Feb-2010 | 23:40 | x86 | | Iisreg.dll | 7.0.6001.18428 | 89,088 | 20-Feb-2010 | 23:37 | x86 | | Iisres.dll | 7.0.6001.18428 | 193,024 | 20-Feb-2010 | 21:33 | x86 | | Iisreset.exe | 7.0.6001.18428 | 14,848 | 20-Feb-2010 | 21:33 | x86 | | Iisrstap.dll | 7.0.6001.18428 | 8,192 | 20-Feb-2010 | 23:37 | x86 | | Iisrtl.dll | 7.0.6001.18428 | 153,600 | 20-Feb-2010 | 23:37 | x86 | | Iissetup.exe | 7.0.6001.18428 | 228,864 | 20-Feb-2010 | 21:34 | x86 | | Iissyspr.dll | 7.0.6001.18428 | 59,392 | 20-Feb-2010 | 23:37 | x86 | | Iisutil.dll | 7.0.6001.18428 | 202,752 | 20-Feb-2010 | 23:37 | x86 | | Nativerd.dll | 7.0.6001.18428 | 326,656 | 20-Feb-2010 | 23:39 | x86 | | Rsca.dll | 7.0.6001.18428 | 26,624 | 20-Feb-2010 | 23:40 | x86 | | Rscaext.dll | 6.0.6001.18428 | 38,912 | 20-Feb-2010 | 23:40 | x86 | | W3ctrlps.dll | 7.0.6001.18428 | 9,216 | 20-Feb-2010 | 23:40 | x86 | | Wamregps.dll | 7.0.6001.18428 | 10,752 | 20-Feb-2010 | 23:40 | x86 | | Admwprox.dll | 7.0.6001.22638 | 51,712 | 20-Feb-2010 | 23:26 | x86 | | Ahadmin.dll | 7.0.6001.22638 | 27,136 | 20-Feb-2010 | 23:26 | x86 | | Appcmd.exe | 7.0.6001.22638 | 154,112 | 20-Feb-2010 | 21:35 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 01-Apr-2009 | 18:54 | Not Applicable | | Appobj.dll | 7.0.6001.22638 | 311,808 | 20-Feb-2010 | 23:26 | x86 | | Aspnetca.exe | 7.0.6001.22638 | 182,784 | 20-Feb-2010 | 21:35 | x86 | | Iismig.dll | 7.0.6001.22638 | 209,408 | 20-Feb-2010 | 23:31 | x86 | | Iisreg.dll | 7.0.6001.22638 | 89,088 | 20-Feb-2010 | 23:29 | x86 | | Iisres.dll | 7.0.6001.22638 | 193,024 | 20-Feb-2010 | 21:35 | x86 | | Iisreset.exe | 7.0.6001.22638 | 14,848 | 20-Feb-2010 | 21:35 | x86 | | Iisrstap.dll | 7.0.6001.22638 | 8,192 | 20-Feb-2010 | 23:29 | x86 | | Iisrtl.dll | 7.0.6001.22638 | 153,600 | 20-Feb-2010 | 23:29 | x86 | | Iissetup.exe | 7.0.6001.22638 | 228,864 | 20-Feb-2010 | 21:35 | x86 | | Iissyspr.dll | 7.0.6001.22638 | 59,392 | 20-Feb-2010 | 23:29 | x86 | | Iisutil.dll | 7.0.6001.22638 | 202,752 | 20-Feb-2010 | 23:29 | x86 | | Nativerd.dll | 7.0.6001.22638 | 331,776 | 20-Feb-2010 | 23:30 | x86 | | Rsca.dll | 7.0.6001.22638 | 26,624 | 20-Feb-2010 | 23:31 | x86 | | Rscaext.dll | 6.0.6001.22638 | 38,912 | 20-Feb-2010 | 23:31 | x86 | | W3ctrlps.dll | 7.0.6001.22638 | 9,216 | 20-Feb-2010 | 23:31 | x86 | | Wamregps.dll | 7.0.6001.22638 | 10,752 | 20-Feb-2010 | 23:31 | x86 | | Admwprox.dll | 7.0.6002.18210 | 51,712 | 20-Feb-2010 | 23:03 | x86 | | Ahadmin.dll | 7.0.6002.18210 | 27,136 | 20-Feb-2010 | 23:03 | x86 | | Appcmd.exe | 7.0.6002.18210 | 154,112 | 20-Feb-2010 | 21:05 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 03-Apr-2009 | 20:37 | Not Applicable | | Appobj.dll | 7.0.6002.18210 | 311,808 | 20-Feb-2010 | 23:03 | x86 | | Aspnetca.exe | 7.0.6002.18210 | 182,784 | 20-Feb-2010 | 21:05 | x86 | | Iismig.dll | 7.0.6002.18210 | 209,408 | 20-Feb-2010 | 23:07 | x86 | | Iisreg.dll | 7.0.6002.18210 | 89,088 | 20-Feb-2010 | 23:05 | x86 | | Iisres.dll | 7.0.6002.18210 | 193,024 | 20-Feb-2010 | 21:05 | x86 | | Iisreset.exe | 7.0.6002.18210 | 14,848 | 20-Feb-2010 | 21:05 | x86 | | Iisrstap.dll | 7.0.6002.18210 | 8,192 | 20-Feb-2010 | 23:05 | x86 | | Iisrtl.dll | 7.0.6002.18210 | 153,600 | 20-Feb-2010 | 23:05 | x86 | | Iissetup.exe | 7.0.6002.18210 | 228,864 | 20-Feb-2010 | 21:05 | x86 | | Iissyspr.dll | 7.0.6002.18210 | 59,392 | 20-Feb-2010 | 23:05 | x86 | | Iisutil.dll | 7.0.6002.18210 | 202,752 | 20-Feb-2010 | 23:05 | x86 | | Nativerd.dll | 7.0.6002.18210 | 331,264 | 20-Feb-2010 | 23:06 | x86 | | Rsca.dll | 7.0.6002.18210 | 26,624 | 20-Feb-2010 | 23:07 | x86 | | Rscaext.dll | 6.0.6002.18210 | 38,912 | 20-Feb-2010 | 23:07 | x86 | | W3ctrlps.dll | 7.0.6002.18210 | 9,216 | 20-Feb-2010 | 23:07 | x86 | | Wamregps.dll | 7.0.6002.18210 | 10,752 | 20-Feb-2010 | 23:07 | x86 | | Admwprox.dll | 7.0.6002.22343 | 51,712 | 20-Feb-2010 | 23:06 | x86 | | Ahadmin.dll | 7.0.6002.22343 | 27,136 | 20-Feb-2010 | 23:07 | x86 | | Appcmd.exe | 7.0.6002.22343 | 154,112 | 20-Feb-2010 | 21:22 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 03-Apr-2009 | 20:43 | Not Applicable | | Appobj.dll | 7.0.6002.22343 | 311,808 | 20-Feb-2010 | 23:07 | x86 | | Aspnetca.exe | 7.0.6002.22343 | 182,784 | 20-Feb-2010 | 21:22 | x86 | | Iismig.dll | 7.0.6002.22343 | 209,408 | 20-Feb-2010 | 23:11 | x86 | | Iisreg.dll | 7.0.6002.22343 | 89,088 | 20-Feb-2010 | 23:08 | x86 | | Iisres.dll | 7.0.6002.22343 | 193,024 | 20-Feb-2010 | 21:22 | x86 | | Iisreset.exe | 7.0.6002.22343 | 14,848 | 20-Feb-2010 | 21:21 | x86 | | Iisrstap.dll | 7.0.6002.22343 | 8,192 | 20-Feb-2010 | 23:08 | x86 | | Iisrtl.dll | 7.0.6002.22343 | 153,600 | 20-Feb-2010 | 23:08 | x86 | | Iissetup.exe | 7.0.6002.22343 | 228,864 | 20-Feb-2010 | 21:22 | x86 | | Iissyspr.dll | 7.0.6002.22343 | 59,392 | 20-Feb-2010 | 23:08 | x86 | | Iisutil.dll | 7.0.6002.22343 | 202,752 | 20-Feb-2010 | 23:08 | x86 | | Nativerd.dll | 7.0.6002.22343 | 333,312 | 20-Feb-2010 | 23:10 | x86 | | Rsca.dll | 7.0.6002.22343 | 26,624 | 20-Feb-2010 | 23:11 | x86 | | Rscaext.dll | 6.0.6002.22343 | 38,912 | 20-Feb-2010 | 23:11 | x86 | | W3ctrlps.dll | 7.0.6002.22343 | 9,216 | 20-Feb-2010 | 23:12 | x86 | | Wamregps.dll | 7.0.6002.22343 | 10,752 | 20-Feb-2010 | 23:12 | x86 | | Iisw3adm.dll | 7.0.6000.17022 | 322,560 | 20-Feb-2010 | 23:52 | x86 | | W3tp.dll | 7.0.6000.17022 | 15,360 | 20-Feb-2010 | 23:55 | x86 | | W3wphost.dll | 7.0.6000.17022 | 39,424 | 20-Feb-2010 | 23:55 | x86 | | Wbhstipm.dll | 7.0.6000.17022 | 25,088 | 20-Feb-2010 | 23:55 | x86 | | Wbhst_pm.dll | 7.0.6000.17022 | 22,016 | 20-Feb-2010 | 23:55 | x86 | | Iisw3adm.dll | 7.0.6000.21227 | 322,560 | 20-Feb-2010 | 23:31 | x86 | | W3tp.dll | 7.0.6000.21227 | 15,360 | 20-Feb-2010 | 23:36 | x86 | | W3wphost.dll | 7.0.6000.21227 | 39,424 | 20-Feb-2010 | 23:36 | x86 | | Wbhstipm.dll | 7.0.6000.21227 | 25,088 | 20-Feb-2010 | 23:36 | x86 | | Wbhst_pm.dll | 7.0.6000.21227 | 22,016 | 20-Feb-2010 | 23:36 | x86 | | Iisw3adm.dll | 7.0.6001.18428 | 371,712 | 20-Feb-2010 | 23:37 | x86 | | W3tp.dll | 7.0.6001.18359 | 15,872 | 09-Nov-2009 | 13:23 | x86 | | W3wphost.dll | 7.0.6001.18359 | 46,592 | 09-Nov-2009 | 13:23 | x86 | | Wbhstipm.dll | 7.0.6001.18359 | 24,064 | 09-Nov-2009 | 13:23 | x86 | | Wbhst_pm.dll | 7.0.6001.18359 | 22,528 | 09-Nov-2009 | 13:23 | x86 | | Iisw3adm.dll | 7.0.6001.22638 | 371,712 | 20-Feb-2010 | 23:29 | x86 | | W3tp.dll | 7.0.6001.22638 | 15,872 | 20-Feb-2010 | 23:31 | x86 | | W3wphost.dll | 7.0.6001.22638 | 46,592 | 20-Feb-2010 | 23:31 | x86 | | Wbhstipm.dll | 7.0.6001.22638 | 24,064 | 20-Feb-2010 | 23:31 | x86 | | Wbhst_pm.dll | 7.0.6001.22638 | 22,528 | 20-Feb-2010 | 23:31 | x86 | | Iisw3adm.dll | 7.0.6002.18210 | 373,760 | 20-Feb-2010 | 23:05 | x86 | | W3tp.dll | 7.0.6002.18139 | 15,872 | 09-Nov-2009 | 12:32 | x86 | | W3wphost.dll | 7.0.6002.18139 | 47,616 | 09-Nov-2009 | 12:32 | x86 | | Wbhstipm.dll | 7.0.6002.18139 | 24,064 | 09-Nov-2009 | 12:32 | x86 | | Wbhst_pm.dll | 7.0.6002.18139 | 22,528 | 09-Nov-2009 | 12:32 | x86 | | Iisw3adm.dll | 7.0.6002.22343 | 374,272 | 20-Feb-2010 | 23:08 | x86 | | W3tp.dll | 7.0.6002.22343 | 15,872 | 20-Feb-2010 | 23:12 | x86 | | W3wphost.dll | 7.0.6002.22343 | 48,128 | 20-Feb-2010 | 23:12 | x86 | | Wbhstipm.dll | 7.0.6002.22343 | 24,064 | 20-Feb-2010 | 23:12 | x86 | | Wbhst_pm.dll | 7.0.6002.22343 | 22,528 | 20-Feb-2010 | 23:12 | x86 | | Httpapi.dll | 6.0.6000.17022 | 31,232 | 20-Feb-2010 | 23:51 | x86 | | Httpapi.dll | 6.0.6000.21227 | 31,232 | 20-Feb-2010 | 23:31 | x86 | | Httpapi.dll | 6.0.6001.18428 | 31,232 | 20-Feb-2010 | 23:37 | x86 | | Httpapi.dll | 6.0.6001.22638 | 31,232 | 20-Feb-2010 | 23:29 | x86 | | Httpapi.dll | 6.0.6002.18210 | 30,720 | 20-Feb-2010 | 23:05 | x86 | | Httpapi.dll | 6.0.6002.22343 | 30,720 | 20-Feb-2010 | 23:08 | x86 | | Nshhttp.dll | 6.0.6000.17022 | 24,064 | 20-Feb-2010 | 23:54 | x86 | | Nshhttp.dll | 6.0.6000.21227 | 24,064 | 20-Feb-2010 | 23:35 | x86 | | Nshhttp.dll | 6.0.6001.18428 | 24,064 | 20-Feb-2010 | 23:39 | x86 | | Nshhttp.dll | 6.0.6001.22638 | 24,064 | 20-Feb-2010 | 23:31 | x86 | | Nshhttp.dll | 6.0.6002.18210 | 24,064 | 20-Feb-2010 | 23:06 | x86 | | Nshhttp.dll | 6.0.6002.22343 | 24,064 | 20-Feb-2010 | 23:10 | x86 |
For all supported IA-64-based versions of Windows Server 2008Collapse this tableExpand this table | File name | File version | File size | Date | Time | Platform |
|---|
| Httpapi.dll | 6.0.6001.18428 | 70,656 | 20-Feb-2010 | 23:41 | IA-64 | | Httpapi.dll | 6.0.6001.22638 | 70,656 | 20-Feb-2010 | 23:28 | IA-64 | | Httpapi.dll | 6.0.6002.18210 | 70,656 | 20-Feb-2010 | 22:56 | IA-64 | | Httpapi.dll | 6.0.6002.22343 | 70,656 | 20-Feb-2010 | 22:56 | IA-64 | | Http.sys | 6.0.6001.18428 | 1,176,576 | 20-Feb-2010 | 21:42 | IA-64 | | Http.sys | 6.0.6001.22638 | 1,176,576 | 20-Feb-2010 | 21:33 | IA-64 | | Http.sys | 6.0.6002.18210 | 1,176,576 | 20-Feb-2010 | 21:17 | IA-64 | | Http.sys | 6.0.6002.22343 | 1,176,576 | 20-Feb-2010 | 21:16 | IA-64 | | Authsspi.dll | 7.0.6001.18428 | 112,640 | 20-Feb-2010 | 23:39 | IA-64 | | Authsspi.dll | 7.0.6001.22638 | 112,640 | 20-Feb-2010 | 23:25 | IA-64 | | Authsspi.dll | 7.0.6002.18210 | 112,640 | 20-Feb-2010 | 22:54 | IA-64 | | Authsspi.dll | 7.0.6002.22343 | 112,640 | 20-Feb-2010 | 22:55 | IA-64 | | Hwebcore.dll | 7.0.6001.18359 | 37,376 | 09-Nov-2009 | 13:25 | IA-64 | | Iiscore.dll | 7.0.6001.18428 | 543,744 | 20-Feb-2010 | 23:41 | IA-64 | | Iisstart.htm | Not Applicable | 689 | 27-Mar-2009 | 08:27 | Not Applicable | | W3dt.dll | 7.0.6001.18428 | 52,224 | 20-Feb-2010 | 23:46 | IA-64 | | Welcome.png | Not Applicable | 184,946 | 27-Mar-2009 | 08:27 | Not Applicable | | Hwebcore.dll | 7.0.6001.22638 | 37,376 | 20-Feb-2010 | 23:28 | IA-64 | | Iiscore.dll | 7.0.6001.22638 | 545,792 | 20-Feb-2010 | 23:28 | IA-64 | | Iisstart.htm | Not Applicable | 689 | 01-Apr-2009 | 16:00 | Not Applicable | | W3dt.dll | 7.0.6001.22638 | 52,736 | 20-Feb-2010 | 23:32 | IA-64 | | Welcome.png | Not Applicable | 184,946 | 01-Apr-2009 | 16:00 | Not Applicable | | Hwebcore.dll | 7.0.6002.18139 | 37,376 | 09-Nov-2009 | 12:35 | IA-64 | | Iiscore.dll | 7.0.6002.18210 | 545,792 | 20-Feb-2010 | 22:56 | IA-64 | | Iisstart.htm | Not Applicable | 689 | 03-Apr-2009 | 20:47 | Not Applicable | | W3dt.dll | 7.0.6002.18210 | 52,224 | 20-Feb-2010 | 22:59 | IA-64 | | Welcome.png | Not Applicable | 184,946 | 03-Apr-2009 | 20:47 | Not Applicable | | Hwebcore.dll | 7.0.6002.22343 | 37,376 | 20-Feb-2010 | 22:56 | IA-64 | | Iiscore.dll | 7.0.6002.22343 | 545,792 | 20-Feb-2010 | 22:56 | IA-64 | | Iisstart.htm | Not Applicable | 689 | 03-Apr-2009 | 20:42 | Not Applicable | | W3dt.dll | 7.0.6002.22343 | 52,736 | 20-Feb-2010 | 23:01 | IA-64 | | Welcome.png | Not Applicable | 184,946 | 03-Apr-2009 | 20:42 | Not Applicable | | Isapi.dll | 7.0.6001.18428 | 241,152 | 20-Feb-2010 | 23:42 | IA-64 | | Isapi.dll | 7.0.6001.22638 | 241,152 | 20-Feb-2010 | 23:28 | IA-64 | | Isapi.dll | 7.0.6002.18210 | 241,152 | 20-Feb-2010 | 22:56 | IA-64 | | Isapi.dll | 7.0.6002.22343 | 241,152 | 20-Feb-2010 | 22:57 | IA-64 | | Admwprox.dll | 7.0.6001.18359 | 119,808 | 09-Nov-2009 | 13:23 | IA-64 | | Ahadmin.dll | 7.0.6001.18359 | 82,432 | 09-Nov-2009 | 13:23 | IA-64 | | Appcmd.exe | 7.0.6001.18359 | 404,480 | 09-Nov-2009 | 11:43 | IA-64 | | Appcmd.xml | Not Applicable | 3,654 | 27-Mar-2009 | 08:23 | Not Applicable | | Applicationhost.config | Not Applicable | 7,989 | 27-Mar-2009 | 08:23 | Not Applicable | | Appobj.dll | 7.0.6001.18359 | 726,016 | 09-Nov-2009 | 13:23 | IA-64 | | Aspnetca.exe | 7.0.6001.18359 | 432,128 | 09-Nov-2009 | 11:44 | IA-64 | | Aspnet_schema.xml | Not Applicable | 38,786 | 27-Mar-2009 | 08:24 | Not Applicable | | Fx_schema.xml | Not Applicable | 26,971 | 27-Mar-2009 | 08:24 | Not Applicable | | Iismig.dll | 7.0.6001.18359 | 452,096 | 09-Nov-2009 | 13:28 | IA-64 | | Iisreg.dll | 7.0.6001.18359 | 143,872 | 09-Nov-2009 | 13:25 | IA-64 | | Iisres.dll | 7.0.6001.18359 | 193,024 | 09-Nov-2009 | 11:43 | IA-64 | | Iisreset.exe | 7.0.6001.18359 | 34,816 | 09-Nov-2009 | 11:43 | IA-64 | | Iisrstap.dll | 7.0.6001.18359 | 18,944 | 09-Nov-2009 | 13:25 | IA-64 | | Iisrstas.exe | 7.0.6001.18359 | 78,336 | 09-Nov-2009 | 11:43 | IA-64 | | Iisrtl.dll | 7.0.6001.18359 | 393,216 | 09-Nov-2009 | 13:25 | IA-64 | | Iissetup.exe | 7.0.6001.18359 | 543,232 | 09-Nov-2009 | 11:44 | IA-64 | | Iissyspr.dll | 7.0.6001.18359 | 134,656 | 09-Nov-2009 | 13:25 | IA-64 | | Iisutil.dll | 7.0.6001.18359 | 513,024 | 09-Nov-2009 | 13:25 | IA-64 | | Iis_schema.xml | Not Applicable | 76,318 | 11-Jul-2009 | 14:24 | Not Applicable | | Nativerd.dll | 7.0.6001.18359 | 887,808 | 09-Nov-2009 | 13:27 | IA-64 | | Redirection.config | Not Applicable | 490 | 27-Mar-2009 | 08:24 | Not Applicable | | Rsca.dll | 7.0.6001.18359 | 74,240 | 09-Nov-2009 | 13:28 | IA-64 | | Rscaext.dll | 6.0.6001.18359 | 111,616 | 09-Nov-2009 | 13:28 | IA-64 | | Rscaext.xml | Not Applicable | 8,363 | 27-Mar-2009 | 08:24 | Not Applicable | | W3ctrlps.dll | 7.0.6001.18359 | 22,528 | 09-Nov-2009 | 13:29 | IA-64 | | Wamregps.dll | 7.0.6001.18359 | 28,160 | 09-Nov-2009 | 13:29 | IA-64 | | Admwprox.dll | 7.0.6001.22638 | 119,808 | 20-Feb-2010 | 23:25 | IA-64 | | Ahadmin.dll | 7.0.6001.22638 | 82,432 | 20-Feb-2010 | 23:25 | IA-64 | | Appcmd.exe | 7.0.6001.22638 | 404,992 | 20-Feb-2010 | 21:48 | IA-64 | | Appcmd.xml | Not Applicable | 3,654 | 01-Apr-2009 | 15:56 | Not Applicable | | Applicationhost.config | Not Applicable | 7,989 | 01-Apr-2009 | 15:56 | Not Applicable | | Appobj.dll | 7.0.6001.22638 | 727,552 | 20-Feb-2010 | 23:25 | IA-64 | | Aspnetca.exe | 7.0.6001.22638 | 432,128 | 20-Feb-2010 | 21:48 | IA-64 | | Aspnet_schema.xml | Not Applicable | 38,786 | 01-Apr-2009 | 15:57 | Not Applicable | | Fx_schema.xml | Not Applicable | 26,943 | 08-May-2009 | 09:25 | Not Applicable | | Iismig.dll | 7.0.6001.22638 | 452,096 | 20-Feb-2010 | 23:31 | IA-64 | | Iisreg.dll | 7.0.6001.22638 | 143,872 | 20-Feb-2010 | 23:28 | IA-64 | | Iisres.dll | 7.0.6001.22638 | 193,024 | 20-Feb-2010 | 21:48 | IA-64 | | Iisreset.exe | 7.0.6001.22638 | 34,816 | 20-Feb-2010 | 21:47 | IA-64 | | Iisrstap.dll | 7.0.6001.22638 | 18,944 | 20-Feb-2010 | 23:28 | IA-64 | | Iisrstas.exe | 7.0.6001.22638 | 78,336 | 20-Feb-2010 | 21:47 | IA-64 | | Iisrtl.dll | 7.0.6001.22638 | 393,216 | 20-Feb-2010 | 23:28 | IA-64 | | Iissetup.exe | 7.0.6001.22638 | 543,232 | 20-Feb-2010 | 21:48 | IA-64 | | Iissyspr.dll | 7.0.6001.22638 | 134,656 | 20-Feb-2010 | 23:28 | IA-64 | | Iisutil.dll | 7.0.6001.22638 | 513,024 | 20-Feb-2010 | 23:28 | IA-64 | | Iis_schema.xml | Not Applicable | 79,213 | 20-Feb-2010 | 18:09 | Not Applicable | | Nativerd.dll | 7.0.6001.22638 | 902,656 | 20-Feb-2010 | 23:30 | IA-64 | | Redirection.config | Not Applicable | 490 | 01-Apr-2009 | 15:57 | Not Applicable | | Rsca.dll | 7.0.6001.22638 | 74,240 | 20-Feb-2010 | 23:31 | IA-64 | | Rscaext.dll | 6.0.6001.22638 | 111,616 | 20-Feb-2010 | 23:31 | IA-64 | | Rscaext.xml | Not Applicable | 8,363 | 01-Apr-2009 | 15:57 | Not Applicable | | W3ctrlps.dll | 7.0.6001.22638 | 22,528 | 20-Feb-2010 | 23:32 | IA-64 | | Wamregps.dll | 7.0.6001.22638 | 28,160 | 20-Feb-2010 | 23:32 | IA-64 | | Admwprox.dll | 7.0.6002.18139 | 119,808 | 09-Nov-2009 | 12:33 | IA-64 | | Ahadmin.dll | 7.0.6002.18139 | 82,432 | 09-Nov-2009 | 12:34 | IA-64 | | Appcmd.exe | 7.0.6002.18139 | 404,992 | 09-Nov-2009 | 11:15 | IA-64 | | Appcmd.xml | Not Applicable | 3,654 | 03-Apr-2009 | 20:40 | Not Applicable | | Applicationhost.config | Not Applicable | 7,990 | 03-Apr-2009 | 20:40 | Not Applicable | | Appobj.dll | 7.0.6002.18139 | 727,552 | 09-Nov-2009 | 12:34 | IA-64 | | Aspnetca.exe | 7.0.6002.18139 | 432,128 | 09-Nov-2009 | 11:15 | IA-64 | | Aspnet_schema.xml | Not Applicable | 38,786 | 03-Apr-2009 | 20:42 | Not Applicable | | Fx_schema.xml | Not Applicable | 27,145 | 03-Apr-2009 | 20:42 | Not Applicable | | Iismig.dll | 7.0.6002.18139 | 452,096 | 09-Nov-2009 | 12:38 | IA-64 | | Iisreg.dll | 7.0.6002.18139 | 143,872 | 09-Nov-2009 | 12:36 | IA-64 | | Iisres.dll | 7.0.6002.18139 | 193,024 | 09-Nov-2009 | 11:15 | IA-64 | | Iisreset.exe | 7.0.6002.18139 | 34,816 | 09-Nov-2009 | 11:14 | IA-64 | | Iisrstap.dll | 7.0.6002.18139 | 18,944 | 09-Nov-2009 | 12:36 | IA-64 | | Iisrstas.exe | 7.0.6002.18139 | 78,336 | 09-Nov-2009 | 11:14 | IA-64 | | Iisrtl.dll | 7.0.6002.18139 | 393,216 | 09-Nov-2009 | 12:36 | IA-64 | | Iissetup.exe | 7.0.6002.18139 | 543,232 | 09-Nov-2009 | 11:15 | IA-64 | | Iissyspr.dll | 7.0.6002.18139 | 134,656 | 09-Nov-2009 | 12:36 | IA-64 | | Iisutil.dll | 7.0.6002.18139 | 513,024 | 09-Nov-2009 | 12:36 | IA-64 | | Iis_schema.xml | Not Applicable | 79,078 | 10-Jul-2009 | 07:02 | Not Applicable | | Nativerd.dll | 7.0.6002.18139 | 900,096 | 09-Nov-2009 | 12:37 | IA-64 | | Redirection.config | Not Applicable | 490 | 03-Apr-2009 | 20:42 | Not Applicable | | Rsca.dll | 7.0.6002.18139 | 74,240 | 09-Nov-2009 | 12:38 | IA-64 | | Rscaext.dll | 6.0.6002.18139 | 111,616 | 09-Nov-2009 | 12:38 | IA-64 | | Rscaext.xml | Not Applicable | 8,363 | 03-Apr-2009 | 20:42 | Not Applicable | | W3ctrlps.dll | 7.0.6002.18139 | 22,528 | 09-Nov-2009 | 12:39 | IA-64 | | Wamregps.dll | 7.0.6002.18139 | 28,160 | 09-Nov-2009 | 12:39 | IA-64 | | Admwprox.dll | 7.0.6002.22343 | 119,808 | 20-Feb-2010 | 22:54 | IA-64 | | Ahadmin.dll | 7.0.6002.22343 | 82,432 | 20-Feb-2010 | 22:55 | IA-64 | | Appcmd.exe | 7.0.6002.22343 | 404,992 | 20-Feb-2010 | 21:29 | IA-64 | | Appcmd.xml | Not Applicable | 3,654 | 03-Apr-2009 | 20:40 | Not Applicable | | Applicationhost.config | Not Applicable | 7,990 | 03-Apr-2009 | 20:40 | Not Applicable | | Appobj.dll | 7.0.6002.22343 | 727,552 | 20-Feb-2010 | 22:55 | IA-64 | | Aspnetca.exe | 7.0.6002.22343 | 432,128 | 20-Feb-2010 | 21:30 | IA-64 | | Aspnet_schema.xml | Not Applicable | 38,809 | 09-Feb-2010 | 09:17 | Not Applicable | | Fx_schema.xml | Not Applicable | 27,105 | 09-Feb-2010 | 09:17 | Not Applicable | | Iismig.dll | 7.0.6002.22343 | 452,096 | 20-Feb-2010 | 23:00 | IA-64 | | Iisreg.dll | 7.0.6002.22343 | 143,872 | 20-Feb-2010 | 22:56 | IA-64 | | Iisres.dll | 7.0.6002.22343 | 193,024 | 20-Feb-2010 | 21:29 | IA-64 | | Iisreset.exe | 7.0.6002.22343 | 34,816 | 20-Feb-2010 | 21:29 | IA-64 | | Iisrstap.dll | 7.0.6002.22343 | 18,944 | 20-Feb-2010 | 22:56 | IA-64 | | Iisrstas.exe | 7.0.6002.22343 | 78,336 | 20-Feb-2010 | 21:29 | IA-64 | | Iisrtl.dll | 7.0.6002.22343 | 393,216 | 20-Feb-2010 | 22:56 | IA-64 | | Iissetup.exe | 7.0.6002.22343 | 543,232 | 20-Feb-2010 | 21:30 | IA-64 | | Iissyspr.dll | 7.0.6002.22343 | 134,656 | 20-Feb-2010 | 22:56 | IA-64 | | Iisutil.dll | 7.0.6002.22343 | 513,024 | 20-Feb-2010 | 22:56 | IA-64 | | Iis_schema.xml | Not Applicable | 79,610 | 20-Feb-2010 | 18:11 | Not Applicable | | Nativerd.dll | 7.0.6002.22343 | 910,336 | 20-Feb-2010 | 22:58 | IA-64 | | Redirection.config | Not Applicable | 490 | 03-Apr-2009 | 20:40 | Not Applicable | | Rsca.dll | 7.0.6002.22343 | 74,240 | 20-Feb-2010 | 23:00 | IA-64 | | Rscaext.dll | 6.0.6002.22343 | 111,616 | 20-Feb-2010 | 23:00 | IA-64 | | Rscaext.xml | Not Applicable | 8,363 | 03-Apr-2009 | 20:40 | Not Applicable | | W3ctrlps.dll | 7.0.6002.22343 | 22,528 | 20-Feb-2010 | 23:01 | IA-64 | | Wamregps.dll | 7.0.6002.22343 | 28,160 | 20-Feb-2010 | 23:01 | IA-64 | | Nshhttp.dll | 6.0.6001.18428 | 60,928 | 20-Feb-2010 | 23:44 | IA-64 | | Nshhttp.dll | 6.0.6001.22638 | 60,928 | 20-Feb-2010 | 23:30 | IA-64 | | Nshhttp.dll | 6.0.6002.18210 | 60,928 | 20-Feb-2010 | 22:58 | IA-64 | | Nshhttp.dll | 6.0.6002.22343 | 60,928 | 20-Feb-2010 | 22:59 | IA-64 | | Iisw3adm.dll | 7.0.6001.18428 | 891,904 | 20-Feb-2010 | 23:41 | IA-64 | | W3tp.dll | 7.0.6001.18359 | 37,376 | 09-Nov-2009 | 13:29 | IA-64 | | W3wphost.dll | 7.0.6001.18359 | 117,760 | 09-Nov-2009 | 13:29 | IA-64 | | Wbhstipm.dll | 7.0.6001.18359 | 62,464 | 09-Nov-2009 | 13:29 | IA-64 | | Wbhst_pm.dll | 7.0.6001.18359 | 59,392 | 09-Nov-2009 | 13:29 | IA-64 | | Iisw3adm.dll | 7.0.6001.22638 | 892,928 | 20-Feb-2010 | 23:28 | IA-64 | | W3tp.dll | 7.0.6001.22638 | 37,376 | 20-Feb-2010 | 23:32 | IA-64 | | W3wphost.dll | 7.0.6001.22638 | 118,784 | 20-Feb-2010 | 23:32 | IA-64 | | Wbhstipm.dll | 7.0.6001.22638 | 62,464 | 20-Feb-2010 | 23:32 | IA-64 | | Wbhst_pm.dll | 7.0.6001.22638 | 59,392 | 20-Feb-2010 | 23:32 | IA-64 | | Iisw3adm.dll | 7.0.6002.18210 | 898,560 | 20-Feb-2010 | 22:56 | IA-64 | | W3tp.dll | 7.0.6002.18139 | 37,376 | 09-Nov-2009 | 12:39 | IA-64 | | W3wphost.dll | 7.0.6002.18139 | 120,832 | 09-Nov-2009 | 12:39 | IA-64 | | Wbhstipm.dll | 7.0.6002.18139 | 62,464 | 09-Nov-2009 | 12:39 | IA-64 | | Wbhst_pm.dll | 7.0.6002.18139 | 59,392 | 09-Nov-2009 | 12:39 | IA-64 | | Iisw3adm.dll | 7.0.6002.22343 | 898,560 | 20-Feb-2010 | 22:56 | IA-64 | | W3tp.dll | 7.0.6002.22343 | 37,376 | 20-Feb-2010 | 23:01 | IA-64 | | W3wphost.dll | 7.0.6002.22343 | 120,832 | 20-Feb-2010 | 23:01 | IA-64 | | Wbhstipm.dll | 7.0.6002.22343 | 62,464 | 20-Feb-2010 | 23:01 | IA-64 | | Wbhst_pm.dll | 7.0.6002.22343 | 59,392 | 20-Feb-2010 | 23:01 | IA-64 | | Authsspi.dll | 7.0.6001.18428 | 43,520 | 20-Feb-2010 | 23:35 | x86 | | Authsspi.dll | 7.0.6001.22638 | 43,520 | 20-Feb-2010 | 23:27 | x86 | | Authsspi.dll | 7.0.6002.18210 | 43,520 | 20-Feb-2010 | 23:04 | x86 | | Authsspi.dll | 7.0.6002.22343 | 43,520 | 20-Feb-2010 | 23:07 | x86 | | Hwebcore.dll | 7.0.6001.18359 | 12,800 | 09-Nov-2009 | 13:20 | x86 | | Iiscore.dll | 7.0.6001.18428 | 189,952 | 20-Feb-2010 | 23:37 | x86 | | W3dt.dll | 7.0.6001.18428 | 23,552 | 20-Feb-2010 | 23:40 | x86 | | Hwebcore.dll | 7.0.6001.22638 | 12,800 | 20-Feb-2010 | 23:29 | x86 | | Iiscore.dll | 7.0.6001.22638 | 190,976 | 20-Feb-2010 | 23:29 | x86 | | W3dt.dll | 7.0.6001.22638 | 23,552 | 20-Feb-2010 | 23:31 | x86 | | Hwebcore.dll | 7.0.6002.18139 | 12,800 | 09-Nov-2009 | 12:30 | x86 | | Iiscore.dll | 7.0.6002.18210 | 190,976 | 20-Feb-2010 | 23:05 | x86 | | W3dt.dll | 7.0.6002.18210 | 23,552 | 20-Feb-2010 | 23:07 | x86 | | Hwebcore.dll | 7.0.6002.22343 | 12,800 | 20-Feb-2010 | 23:08 | x86 | | Iiscore.dll | 7.0.6002.22343 | 190,976 | 20-Feb-2010 | 23:08 | x86 | | W3dt.dll | 7.0.6002.22343 | 23,552 | 20-Feb-2010 | 23:12 | x86 | | Isapi.dll | 7.0.6001.18428 | 107,008 | 20-Feb-2010 | 23:37 | x86 | | Isapi.dll | 7.0.6001.22638 | 107,008 | 20-Feb-2010 | 23:29 | x86 | | Isapi.dll | 7.0.6002.18210 | 107,008 | 20-Feb-2010 | 23:05 | x86 | | Isapi.dll | 7.0.6002.22343 | 107,008 | 20-Feb-2010 | 23:08 | x86 | | Admwprox.dll | 7.0.6001.18428 | 51,712 | 20-Feb-2010 | 23:35 | x86 | | Ahadmin.dll | 7.0.6001.18428 | 27,136 | 20-Feb-2010 | 23:35 | x86 | | Appcmd.exe | 7.0.6001.18428 | 154,112 | 20-Feb-2010 | 21:33 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 27-Mar-2009 | 08:24 | Not Applicable | | Appobj.dll | 7.0.6001.18428 | 311,296 | 20-Feb-2010 | 23:35 | x86 | | Aspnetca.exe | 7.0.6001.18428 | 182,784 | 20-Feb-2010 | 21:34 | x86 | | Iismig.dll | 7.0.6001.18428 | 209,408 | 20-Feb-2010 | 23:40 | x86 | | Iisreg.dll | 7.0.6001.18428 | 89,088 | 20-Feb-2010 | 23:37 | x86 | | Iisres.dll | 7.0.6001.18428 | 193,024 | 20-Feb-2010 | 21:33 | x86 | | Iisreset.exe | 7.0.6001.18428 | 14,848 | 20-Feb-2010 | 21:33 | x86 | | Iisrstap.dll | 7.0.6001.18428 | 8,192 | 20-Feb-2010 | 23:37 | x86 | | Iisrtl.dll | 7.0.6001.18428 | 153,600 | 20-Feb-2010 | 23:37 | x86 | | Iissetup.exe | 7.0.6001.18428 | 228,864 | 20-Feb-2010 | 21:34 | x86 | | Iissyspr.dll | 7.0.6001.18428 | 59,392 | 20-Feb-2010 | 23:37 | x86 | | Iisutil.dll | 7.0.6001.18428 | 202,752 | 20-Feb-2010 | 23:37 | x86 | | Nativerd.dll | 7.0.6001.18428 | 326,656 | 20-Feb-2010 | 23:39 | x86 | | Rsca.dll | 7.0.6001.18428 | 26,624 | 20-Feb-2010 | 23:40 | x86 | | Rscaext.dll | 6.0.6001.18428 | 38,912 | 20-Feb-2010 | 23:40 | x86 | | W3ctrlps.dll | 7.0.6001.18428 | 9,216 | 20-Feb-2010 | 23:40 | x86 | | Wamregps.dll | 7.0.6001.18428 | 10,752 | 20-Feb-2010 | 23:40 | x86 | | Admwprox.dll | 7.0.6001.22638 | 51,712 | 20-Feb-2010 | 23:26 | x86 | | Ahadmin.dll | 7.0.6001.22638 | 27,136 | 20-Feb-2010 | 23:26 | x86 | | Appcmd.exe | 7.0.6001.22638 | 154,112 | 20-Feb-2010 | 21:35 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 01-Apr-2009 | 18:54 | Not Applicable | | Appobj.dll | 7.0.6001.22638 | 311,808 | 20-Feb-2010 | 23:26 | x86 | | Aspnetca.exe | 7.0.6001.22638 | 182,784 | 20-Feb-2010 | 21:35 | x86 | | Iismig.dll | 7.0.6001.22638 | 209,408 | 20-Feb-2010 | 23:31 | x86 | | Iisreg.dll | 7.0.6001.22638 | 89,088 | 20-Feb-2010 | 23:29 | x86 | | Iisres.dll | 7.0.6001.22638 | 193,024 | 20-Feb-2010 | 21:35 | x86 | | Iisreset.exe | 7.0.6001.22638 | 14,848 | 20-Feb-2010 | 21:35 | x86 | | Iisrstap.dll | 7.0.6001.22638 | 8,192 | 20-Feb-2010 | 23:29 | x86 | | Iisrtl.dll | 7.0.6001.22638 | 153,600 | 20-Feb-2010 | 23:29 | x86 | | Iissetup.exe | 7.0.6001.22638 | 228,864 | 20-Feb-2010 | 21:35 | x86 | | Iissyspr.dll | 7.0.6001.22638 | 59,392 | 20-Feb-2010 | 23:29 | x86 | | Iisutil.dll | 7.0.6001.22638 | 202,752 | 20-Feb-2010 | 23:29 | x86 | | Nativerd.dll | 7.0.6001.22638 | 331,776 | 20-Feb-2010 | 23:30 | x86 | | Rsca.dll | 7.0.6001.22638 | 26,624 | 20-Feb-2010 | 23:31 | x86 | | Rscaext.dll | 6.0.6001.22638 | 38,912 | 20-Feb-2010 | 23:31 | x86 | | W3ctrlps.dll | 7.0.6001.22638 | 9,216 | 20-Feb-2010 | 23:31 | x86 | | Wamregps.dll | 7.0.6001.22638 | 10,752 | 20-Feb-2010 | 23:31 | x86 | | Admwprox.dll | 7.0.6002.18210 | 51,712 | 20-Feb-2010 | 23:03 | x86 | | Ahadmin.dll | 7.0.6002.18210 | 27,136 | 20-Feb-2010 | 23:03 | x86 | | Appcmd.exe | 7.0.6002.18210 | 154,112 | 20-Feb-2010 | 21:05 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 03-Apr-2009 | 20:37 | Not Applicable | | Appobj.dll | 7.0.6002.18210 | 311,808 | 20-Feb-2010 | 23:03 | x86 | | Aspnetca.exe | 7.0.6002.18210 | 182,784 | 20-Feb-2010 | 21:05 | x86 | | Iismig.dll | 7.0.6002.18210 | 209,408 | 20-Feb-2010 | 23:07 | x86 | | Iisreg.dll | 7.0.6002.18210 | 89,088 | 20-Feb-2010 | 23:05 | x86 | | Iisres.dll | 7.0.6002.18210 | 193,024 | 20-Feb-2010 | 21:05 | x86 | | Iisreset.exe | 7.0.6002.18210 | 14,848 | 20-Feb-2010 | 21:05 | x86 | | Iisrstap.dll | 7.0.6002.18210 | 8,192 | 20-Feb-2010 | 23:05 | x86 | | Iisrtl.dll | 7.0.6002.18210 | 153,600 | 20-Feb-2010 | 23:05 | x86 | | Iissetup.exe | 7.0.6002.18210 | 228,864 | 20-Feb-2010 | 21:05 | x86 | | Iissyspr.dll | 7.0.6002.18210 | 59,392 | 20-Feb-2010 | 23:05 | x86 | | Iisutil.dll | 7.0.6002.18210 | 202,752 | 20-Feb-2010 | 23:05 | x86 | | Nativerd.dll | 7.0.6002.18210 | 331,264 | 20-Feb-2010 | 23:06 | x86 | | Rsca.dll | 7.0.6002.18210 | 26,624 | 20-Feb-2010 | 23:07 | x86 | | Rscaext.dll | 6.0.6002.18210 | 38,912 | 20-Feb-2010 | 23:07 | x86 | | W3ctrlps.dll | 7.0.6002.18210 | 9,216 | 20-Feb-2010 | 23:07 | x86 | | Wamregps.dll | 7.0.6002.18210 | 10,752 | 20-Feb-2010 | 23:07 | x86 | | Admwprox.dll | 7.0.6002.22343 | 51,712 | 20-Feb-2010 | 23:06 | x86 | | Ahadmin.dll | 7.0.6002.22343 | 27,136 | 20-Feb-2010 | 23:07 | x86 | | Appcmd.exe | 7.0.6002.22343 | 154,112 | 20-Feb-2010 | 21:22 | x86 | | Appcmd.xml | Not Applicable | 3,654 | 03-Apr-2009 | 20:43 | Not Applicable | | Appobj.dll | 7.0.6002.22343 | 311,808 | 20-Feb-2010 | 23:07 | x86 | | Aspnetca.exe | 7.0.6002.22343 | 182,784 | 20-Feb-2010 | 21:22 | x86 | | Iismig.dll | 7.0.6002.22343 | 209,408 | 20-Feb-2010 | 23:11 | x86 | | Iisreg.dll | 7.0.6002.22343 | 89,088 | 20-Feb-2010 | 23:08 | x86 | | Iisres.dll | 7.0.6002.22343 | 193,024 | 20-Feb-2010 | 21:22 | x86 | | Iisreset.exe | 7.0.6002.22343 | 14,848 | 20-Feb-2010 | 21:21 | x86 | | Iisrstap.dll | 7.0.6002.22343 | 8,192 | 20-Feb-2010 | 23:08 | x86 | | Iisrtl.dll | 7.0.6002.22343 | 153,600 | 20-Feb-2010 | 23:08 | x86 | | Iissetup.exe | 7.0.6002.22343 | 228,864 | 20-Feb-2010 | 21:22 | x86 | | Iissyspr.dll | 7.0.6002.22343 | 59,392 | 20-Feb-2010 | 23:08 | x86 | | Iisutil.dll | 7.0.6002.22343 | 202,752 | 20-Feb-2010 | 23:08 | x86 | | Nativerd.dll | 7.0.6002.22343 | 333,312 | 20-Feb-2010 | 23:10 | x86 | | Rsca.dll | 7.0.6002.22343 | 26,624 | 20-Feb-2010 | 23:11 | x86 | | Rscaext.dll | 6.0.6002.22343 | 38,912 | 20-Feb-2010 | 23:11 | x86 | | W3ctrlps.dll | 7.0.6002.22343 | 9,216 | 20-Feb-2010 | 23:12 | x86 | | Wamregps.dll | 7.0.6002.22343 | 10,752 | 20-Feb-2010 | 23:12 | x86 | | Iisw3adm.dll | 7.0.6001.18428 | 371,712 | 20-Feb-2010 | 23:37 | x86 | | W3tp.dll | 7.0.6001.18359 | 15,872 | 09-Nov-2009 | 13:23 | x86 | | W3wphost.dll | 7.0.6001.18359 | 46,592 | 09-Nov-2009 | 13:23 | x86 | | Wbhstipm.dll | 7.0.6001.18359 | 24,064 | 09-Nov-2009 | 13:23 | x86 | | Wbhst_pm.dll | 7.0.6001.18359 | 22,528 | 09-Nov-2009 | 13:23 | x86 | | Iisw3adm.dll | 7.0.6001.22638 | 371,712 | 20-Feb-2010 | 23:29 | x86 | | W3tp.dll | 7.0.6001.22638 | 15,872 | 20-Feb-2010 | 23:31 | x86 | | W3wphost.dll | 7.0.6001.22638 | 46,592 | 20-Feb-2010 | 23:31 | x86 | | Wbhstipm.dll | 7.0.6001.22638 | 24,064 | 20-Feb-2010 | 23:31 | x86 | | Wbhst_pm.dll | 7.0.6001.22638 | 22,528 | 20-Feb-2010 | 23:31 | x86 | | Iisw3adm.dll | 7.0.6002.18210 | 373,760 | 20-Feb-2010 | 23:05 | x86 | | W3tp.dll | 7.0.6002.18139 | 15,872 | 09-Nov-2009 | 12:32 | x86 | | W3wphost.dll | 7.0.6002.18139 | 47,616 | 09-Nov-2009 | 12:32 | x86 | | Wbhstipm.dll | 7.0.6002.18139 | 24,064 | 09-Nov-2009 | 12:32 | x86 | | Wbhst_pm.dll | 7.0.6002.18139 | 22,528 | 09-Nov-2009 | 12:32 | x86 | | Iisw3adm.dll | 7.0.6002.22343 | 374,272 | 20-Feb-2010 | 23:08 | x86 | | W3tp.dll | 7.0.6002.22343 | 15,872 | 20-Feb-2010 | 23:12 | x86 | | W3wphost.dll | 7.0.6002.22343 | 48,128 | 20-Feb-2010 | 23:12 | x86 | | Wbhstipm.dll | 7.0.6002.22343 | 24,064 | 20-Feb-2010 | 23:12 | x86 | | Wbhst_pm.dll | 7.0.6002.22343 | 22,528 | 20-Feb-2010 | 23:12 | x86 | | Httpapi.dll | 6.0.6001.18428 | 31,232 | 20-Feb-2010 | 23:37 | x86 | | Httpapi.dll | 6.0.6001.22638 | 31,232 | 20-Feb-2010 | 23:29 | x86 | | Httpapi.dll | 6.0.6002.18210 | 30,720 | 20-Feb-2010 | 23:05 | x86 | | Httpapi.dll | 6.0.6002.22343 | 30,720 | 20-Feb-2010 | 23:08 | x86 | | Nshhttp.dll | 6.0.6001.18428 | 24,064 | 20-Feb-2010 | 23:39 | x86 | | Nshhttp.dll | 6.0.6001.22638 | 24,064 | 20-Feb-2010 | 23:31 | x86 | | Nshhttp.dll | 6.0.6002.18210 | 24,064 | 20-Feb-2010 | 23:06 | x86 | | Nshhttp.dll | 6.0.6002.22343 | 24,064 | 20-Feb-2010 | 23:10 | x86 |
Additional file information for Windows Vista and Windows Server 2008Additional files for all supported x86-based versions of Windows Vista and Windows Server 2008Collapse this tableExpand this table | File name | Package_10_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,054 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_10_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 8,371 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_11_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,578 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_11_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 6,028 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_12_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,371 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_12_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,922 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_13_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,532 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_13_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,778 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_14_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,639 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_14_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,602 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_15_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,116 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_15_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,692 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_16_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,897 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_16_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,455 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_17_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,374 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_17_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,616 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_18_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,213 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_18_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,760 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_19_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,958 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_19_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,530 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_1_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,734 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_1_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,436 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_20_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,481 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_20_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,443 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_21_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,739 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_21_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,296 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_22_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,971 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_22_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,229 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_23_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,078 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_23_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,035 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_24_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,374 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_24_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,621 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_25_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,213 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_25_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,763 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_26_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,578 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_26_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,196 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_27_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,958 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_27_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,692 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_28_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,431 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_28_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,573 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_29_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,739 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_29_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,455 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_2_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,733 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_2_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 6,184 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_3_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,160 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_3_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,112 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_4_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,114 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_4_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,687 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_5_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,895 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_5_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,450 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_6_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,577 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_6_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 6,027 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_7_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,957 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_7_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,525 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_8_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,004 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_8_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 6,951 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_9_for_kb973917_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,738 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_9_for_kb973917~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,288 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_0_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,805 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_0~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,876 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_1_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,611 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_1~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,679 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_2_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,200 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_2~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,287 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,952 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,998 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_0_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,870 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_0~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,905 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_1_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,932 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_1~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,011 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,670 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,703 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_0_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,801 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_0~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,868 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_1_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,200 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_1~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,292 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,682 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,715 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv_0_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,403 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv_0~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,422 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv_bf~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,411 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv~31bf3856ad364e35~x86~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,431 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Update-bf.mum | | File version | Not Applicable | | File size | 5,844 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | X86_02243200e0a585086e647c7a478338cf_31bf3856ad364e35_6.0.6002.18210_none_8d686d04b786208f.manifest | | File version | Not Applicable | | File size | 696 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_0e31613dbe369261d6ee2a72e27a8c0a_31bf3856ad364e35_6.0.6000.17022_none_48c838e4b3767e85.manifest | | File version | Not Applicable | | File size | 695 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_16b8451540f2bac23065ee8abfeac47f_31bf3856ad364e35_6.0.6002.18210_none_0fde06ba25647760.manifest | | File version | Not Applicable | | File size | 695 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_18184f074d19197726cc93b0a2364865_31bf3856ad364e35_6.0.6000.17022_none_1b1305d8d6dc2ef7.manifest | | File version | Not Applicable | | File size | 707 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_1891f3274f1f2e8ba25f92e78e5a8493_31bf3856ad364e35_6.0.6002.22343_none_321c8750935b706c.manifest | | File version | Not Applicable | | File size | 1,060 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_1d6b70544682ef9299e54108db7688e8_31bf3856ad364e35_6.0.6001.18428_none_75619f223319c79b.manifest | | File version | Not Applicable | | File size | 705 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_22960a5eed790d75ee667c091a4c7581_31bf3856ad364e35_6.0.6000.21227_none_47842f91193c3d3f.manifest | | File version | Not Applicable | | File size | 721 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_26bfdc1a86311b42574dd6c57065ea88_31bf3856ad364e35_6.0.6002.18210_none_fd9053e1e1756eeb.manifest | | File version | Not Applicable | | File size | 709 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_29455863b1821c9d5a7a5f11a9f7c6c1_31bf3856ad364e35_6.0.6002.18210_none_759b511ada792192.manifest | | File version | Not Applicable | | File size | 705 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_2a4b0d1ce11aa4a74ccd4da3aaa25a5d_31bf3856ad364e35_6.0.6001.18428_none_c7d26291cc02a52b.manifest | | File version | Not Applicable | | File size | 721 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_30c1f0f204792c7feba5464ad9bdc4b8_31bf3856ad364e35_6.0.6001.18428_none_6d677ccb84e7608c.manifest | | File version | Not Applicable | | File size | 707 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_3546623f376e043c15080ba3ae399bcb_31bf3856ad364e35_6.0.6000.21227_none_72b72945254fac67.manifest | | File version | Not Applicable | | File size | 709 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_4379e31d12edb6e70627b7ed76cc9de0_31bf3856ad364e35_6.0.6001.22638_none_178b9226b1b3a6a1.manifest | | File version | Not Applicable | | File size | 721 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_47ebe0294c731c961326c4fc14f220de_31bf3856ad364e35_6.0.6000.21227_none_cd4f1c3bccb8fec3.manifest | | File version | Not Applicable | | File size | 705 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_48fdea84483e574614c97ca281c3ee53_31bf3856ad364e35_6.0.6000.17022_none_14c012cd3521ea6e.manifest | | File version | Not Applicable | | File size | 709 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_4975b3be5b8fcf0051ede61724e941a6_31bf3856ad364e35_6.0.6000.17022_none_4ebe4565fbc2cb9a.manifest | | File version | Not Applicable | | File size | 721 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_4a733aa7bf40ad90f3bd0f1d05a293ab_31bf3856ad364e35_6.0.6000.21227_none_20a368c353dca4b1.manifest | | File version | Not Applicable | | File size | 707 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_4ba90992b4aeb4238404490e280cf1a5_31bf3856ad364e35_6.0.6001.22638_none_539f0d5944068a6c.manifest | | File version | Not Applicable | | File size | 1,060 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_5527b8ec04bba217931b49a6f786cc1c_31bf3856ad364e35_6.0.6000.17022_none_897ea49fcc59df8d.manifest | | File version | Not Applicable | | File size | 1,032 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_570df66d1b6884d22dc1fe98d567b0af_31bf3856ad364e35_6.0.6001.18428_none_93020da496d5b047.manifest | | File version | Not Applicable | | File size | 695 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_5aae770d47b1ced03bbc6ac6b7f3359a_31bf3856ad364e35_6.0.6002.22343_none_86ab67b7b5c13dbb.manifest | | File version | Not Applicable | | File size | 695 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_5c098d186475a265e346a17ad2b87c7f_31bf3856ad364e35_6.0.6000.21227_none_d9478d0f7b37546e.manifest | | File version | Not Applicable | | File size | 1,032 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_63b9e6a3524e61bd156cdb2884a12d4e_31bf3856ad364e35_6.0.6002.18210_none_0518ff409bf1c933.manifest | | File version | Not Applicable | | File size | 707 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_6e3b3edd03a56eab3baac5d4b6e68913_31bf3856ad364e35_6.0.6000.17022_none_b09f2abe0e75c4f7.manifest | | File version | Not Applicable | | File size | 705 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_6e412646c0db42a5b5d85104abc37d75_31bf3856ad364e35_6.0.6002.22343_none_14571af8ebcb98e1.manifest | | File version | Not Applicable | | File size | 692 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_742e92de08d14f579f5364e863edb2a4_31bf3856ad364e35_6.0.6000.17022_none_1ee1ac5feff3f077.manifest | | File version | Not Applicable | | File size | 707 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_7a562d060ef965ac4ccc6c4e19f06879_31bf3856ad364e35_6.0.6000.21227_none_36fb780a58d4691c.manifest | | File version | Not Applicable | | File size | 707 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_7c1ddb80ad48ee8f2d864da25bbdbdeb_31bf3856ad364e35_6.0.6000.21227_none_484ad23061d6921c.manifest | | File version | Not Applicable | | File size | 695 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_89fb22fd7470f4edeefe9446291a1aa4_31bf3856ad364e35_6.0.6002.18210_none_d1ccb2a4099f7bb5.manifest | | File version | Not Applicable | | File size | 721 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_a546e847cdf4f901301dca6be48dcafc_31bf3856ad364e35_6.0.6001.18428_none_ab8689be42529e10.manifest | | File version | Not Applicable | | File size | 696 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_ac29987ff1dedc34e66277cb7fcdc01f_31bf3856ad364e35_6.0.6001.22638_none_39eb2b1053feaf18.manifest | | File version | Not Applicable | | File size | 1,032 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_af69b9b96b1b873c7d046b2aaa6c5725_31bf3856ad364e35_6.0.6001.22638_none_53f1c011e9524f9d.manifest | | File version | Not Applicable | | File size | 695 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_b2973d859d4c289344df7b57e9155da6_31bf3856ad364e35_6.0.6001.22638_none_658ddea1cd7ecfe0.manifest | | File version | Not Applicable | | File size | 696 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_b54795121bf65e4c663c745ab2d31d12_31bf3856ad364e35_6.0.6001.22638_none_8171f5bbfc12ae9e.manifest | | File version | Not Applicable | | File size | 707 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_b61d286158fdfa168be9ca239e2bc271_31bf3856ad364e35_6.0.6001.18428_none_87e07fe86b520bc8.manifest | | File version | Not Applicable | | File size | 1,032 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_b7991a25ac467a47b008a510c2d84212_31bf3856ad364e35_6.0.6002.18210_none_755dbe445a6a3f13.manifest | | File version | Not Applicable | | File size | 692 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_bb39537142aba513b52806be81fb22c0_31bf3856ad364e35_6.0.6002.22343_none_5b70f63bb83faffe.manifest | | File version | Not Applicable | | File size | 721 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_c8f970e15672a13a06b3b85f9608d2a6_31bf3856ad364e35_6.0.6001.18428_none_90affe959b33bfde.manifest | | File version | Not Applicable | | File size | 707 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_cff1db8d75e7c3d0fce691627cadb479_31bf3856ad364e35_6.0.6001.22638_none_c3d60f83d36cc5ae.manifest | | File version | Not Applicable | | File size | 705 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_e0818432c4b4645be82d8c1135e0ae34_31bf3856ad364e35_6.0.6002.22343_none_6815f48e62f99ba2.manifest | | File version | Not Applicable | | File size | 705 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_e424ecc6ce0440e3c9d0f2b969d072cd_31bf3856ad364e35_6.0.6001.18428_none_14b30162261da913.manifest | | File version | Not Applicable | | File size | 709 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_e550057e4470cd5ffa78fd563e92bcb0_31bf3856ad364e35_6.0.6001.22638_none_bc446fdd2bd4e95b.manifest | | File version | Not Applicable | | File size | 1,421 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_e8ec3c8505cc5f513fba7f66beb0eb28_31bf3856ad364e35_6.0.6002.22343_none_d03b45c32fd552a0.manifest | | File version | Not Applicable | | File size | 696 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_e973366f819a0c45483cb042e9adb25a_31bf3856ad364e35_6.0.6002.22343_none_00dfc27901878f78.manifest | | File version | Not Applicable | | File size | 707 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_eb45cacc43a4419f4b10e0b68ce23713_31bf3856ad364e35_6.0.6002.22343_none_1d17583f67fab5ed.manifest | | File version | Not Applicable | | File size | 1,072 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_fb9361c986c88675bb3a308e782abd2e_31bf3856ad364e35_6.0.6002.18210_none_ab8d5295b8ceb510.manifest | | File version | Not Applicable | | File size | 707 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6000.17022_none_f3b23ce9a033de29.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:05 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6000.21227_none_f440dd0cb94cf9cd.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:14 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6001.18428_none_f59ea70f9d54d109.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:11 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6001.22638_none_f61d75d4b67a89eb.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:11 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6002.18210_none_f787e8799a7a3cab.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6002.22343_none_f7f4165eb3ad7c4d.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:59 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http_31bf3856ad364e35_6.0.6000.17022_none_aac6fc331bc2f16e.manifest | | File version | Not Applicable | | File size | 144,295 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:07 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http_31bf3856ad364e35_6.0.6000.21227_none_ab559c5634dc0d12.manifest | | File version | Not Applicable | | File size | 144,295 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:16 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http_31bf3856ad364e35_6.0.6001.18428_none_acb3665918e3e44e.manifest | | File version | Not Applicable | | File size | 144,304 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:13 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http_31bf3856ad364e35_6.0.6001.22638_none_ad32351e32099d30.manifest | | File version | Not Applicable | | File size | 144,304 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:13 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http_31bf3856ad364e35_6.0.6002.18210_none_ae9ca7c316094ff0.manifest | | File version | Not Applicable | | File size | 144,703 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:04 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http_31bf3856ad364e35_6.0.6002.22343_none_af08d5a82f3c8f92.manifest | | File version | Not Applicable | | File size | 144,703 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 07:00 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6000.17022_none_1ea369c7fee3251e.manifest | | File version | Not Applicable | | File size | 4,978 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:04 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6000.21227_none_1f3209eb17fc40c2.manifest | | File version | Not Applicable | | File size | 4,978 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:13 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6001.18428_none_208fd3edfc0417fe.manifest | | File version | Not Applicable | | File size | 5,610 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:10 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6001.22638_none_210ea2b31529d0e0.manifest | | File version | Not Applicable | | File size | 5,610 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:10 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6002.18210_none_22791557f92983a0.manifest | | File version | Not Applicable | | File size | 5,610 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:01 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6002.22343_none_22e5433d125cc342.manifest | | File version | Not Applicable | | File size | 5,610 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:58 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6000.17022_none_cdb008112c2cc173.manifest | | File version | Not Applicable | | File size | 15,023 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:03 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6000.21227_none_ce3ea8344545dd17.manifest | | File version | Not Applicable | | File size | 15,023 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:12 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6001.18428_none_cf9c7237294db453.manifest | | File version | Not Applicable | | File size | 17,364 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:36 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6001.22638_none_d01b40fc42736d35.manifest | | File version | Not Applicable | | File size | 16,238 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:09 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6002.18210_none_d185b3a126731ff5.manifest | | File version | Not Applicable | | File size | 17,364 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:36 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6002.22343_none_d1f1e1863fa65f97.manifest | | File version | Not Applicable | | File size | 16,238 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:57 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6000.17022_none_678f770e86bd182c.manifest | | File version | Not Applicable | | File size | 5,285 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:07 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6000.21227_none_681e17319fd633d0.manifest | | File version | Not Applicable | | File size | 5,285 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:16 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6001.18428_none_697be13483de0b0c.manifest | | File version | Not Applicable | | File size | 5,296 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:13 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6001.22638_none_69faaff99d03c3ee.manifest | | File version | Not Applicable | | File size | 5,296 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:13 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6002.18210_none_6b65229e810376ae.manifest | | File version | Not Applicable | | File size | 5,296 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:04 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6002.22343_none_6bd150839a36b650.manifest | | File version | Not Applicable | | File size | 5,296 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 07:00 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6000.17022_none_0eef72aeb7ba5ba2.manifest | | File version | Not Applicable | | File size | 257,162 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:04 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6000.21227_none_0f7e12d1d0d37746.manifest | | File version | Not Applicable | | File size | 257,162 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:13 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6001.18428_none_10dbdcd4b4db4e82.manifest | | File version | Not Applicable | | File size | 364,346 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:36 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6001.22638_none_115aab99ce010764.manifest | | File version | Not Applicable | | File size | 342,561 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:10 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6002.18210_none_12c51e3eb200ba24.manifest | | File version | Not Applicable | | File size | 364,346 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:36 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6002.22343_none_13314c23cb33f9c6.manifest | | File version | Not Applicable | | File size | 342,561 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:58 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6000.17022_none_71b326ce7762720f.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6000.21227_none_7241c6f1907b8db3.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:12 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6001.18428_none_739f90f4748364ef.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:08 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6001.22638_none_741e5fb98da91dd1.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:08 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6002.18210_none_7588d25e71a8d091.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:59 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6002.22343_none_75f500438adc1033.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:57 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6000.17022_none_d8a25cbbadca5f63.manifest | | File version | Not Applicable | | File size | 22,579 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:04 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6000.21227_none_d930fcdec6e37b07.manifest | | File version | Not Applicable | | File size | 22,579 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:14 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6001.18428_none_da8ec6e1aaeb5243.manifest | | File version | Not Applicable | | File size | 24,123 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:36 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6001.22638_none_db0d95a6c4110b25.manifest | | File version | Not Applicable | | File size | 22,611 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:10 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6002.18210_none_dc78084ba810bde5.manifest | | File version | Not Applicable | | File size | 24,123 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:36 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6002.22343_none_dce43630c143fd87.manifest | | File version | Not Applicable | | File size | 22,611 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:58 | | Platform | Not Applicable | |
Additional files for all supported x64-based versions of Windows Vista and Windows Server 2008Collapse this tableExpand this table | File name | Amd64_0396aa1abdbbe576799a7a40b78c785d_31bf3856ad364e35_6.0.6002.18210_none_a966731f4e806fd2.manifest | | File version | Not Applicable | | File size | 1,040 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_057bd3989c2363ad518ba05b5434aee3_31bf3856ad364e35_6.0.6001.18428_none_c93350729aabdaaa.manifest | | File version | Not Applicable | | File size | 1,068 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_096e3f5883b51f661a5b3d3b05a45228_31bf3856ad364e35_6.0.6000.17022_none_b6b9cb7d2b4ad7e2.manifest | | File version | Not Applicable | | File size | 1,378 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_1083aa8b7197d02b3276b2ee8db055d6_31bf3856ad364e35_6.0.6001.22638_none_a6b8864255b07317.manifest | | File version | Not Applicable | | File size | 700 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_1272d879f0db74466da50d82011d56be_31bf3856ad364e35_6.0.6001.22638_none_ac1e09b9814fe59e.manifest | | File version | Not Applicable | | File size | 1,064 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_12c69b7d340eaec8952a646257d20ca9_31bf3856ad364e35_6.0.6002.18210_none_259bc72bd1350b48.manifest | | File version | Not Applicable | | File size | 1,064 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_1393fbf846929dacb71c2dc096fef6fd_31bf3856ad364e35_6.0.6000.21227_none_6f27647de1f98ff9.manifest | | File version | Not Applicable | | File size | 1,068 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_1e490f85bef76e145bfba6102bb3074c_31bf3856ad364e35_6.0.6002.22343_none_d684fc12fa222bab.manifest | | File version | Not Applicable | | File size | 1,774 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_27dbcbcbe1ba1f955972057655fdb999_31bf3856ad364e35_6.0.6000.17022_none_ed4807514523c7a6.manifest | | File version | Not Applicable | | File size | 1,064 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_2e28a505dfa294929ccec3ded4b35986_31bf3856ad364e35_6.0.6001.22638_none_b51c68bab24784d0.manifest | | File version | Not Applicable | | File size | 1,092 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_31f6927e29b1a5d26b9dd8e22cdbed93_31bf3856ad364e35_6.0.6001.18428_none_6981b66bab29ed90.manifest | | File version | Not Applicable | | File size | 1,092 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_40bfc6461f3ddddb16f9d51409cac739_31bf3856ad364e35_6.0.6001.18428_none_3036a122db1dc5c3.manifest | | File version | Not Applicable | | File size | 1,038 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_5be331b2c05ac6bdd5f9a0e077ab3b48_31bf3856ad364e35_6.0.6000.21227_none_b743354204fd0c8a.manifest | | File version | Not Applicable | | File size | 1,038 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_5da01ae93dbbb976f9c751d02154c97c_31bf3856ad364e35_6.0.6000.17022_none_d1566aa5bb9ba58f.manifest | | File version | Not Applicable | | File size | 1,092 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_64a3134b9d6109e0419aa25d3918229a_31bf3856ad364e35_6.0.6000.21227_none_f051f2e59d90154f.manifest | | File version | Not Applicable | | File size | 1,064 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_69441914fe1aff3c4886b125ec274910_31bf3856ad364e35_6.0.6000.21227_none_b135204b8edaee45.manifest | | File version | Not Applicable | | File size | 1,060 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_6baa1fd38f3673e95415a2a911b8717f_31bf3856ad364e35_6.0.6000.17022_none_4637950ba6806c77.manifest | | File version | Not Applicable | | File size | 1,060 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_6dc5c282b081f39c9f583172b33b0e0f_31bf3856ad364e35_6.0.6002.18210_none_b894260b5ee6a8f6.manifest | | File version | Not Applicable | | File size | 1,060 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_791f1b1b3c80a076d5b268efc758b21e_31bf3856ad364e35_6.0.6002.18210_none_689f0329f8646a21.manifest | | File version | Not Applicable | | File size | 1,092 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_7afa4b76dd2ab49588a42db469ce621b_31bf3856ad364e35_6.0.6000.17022_none_bf1c589134624237.manifest | | File version | Not Applicable | | File size | 1,038 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_817942a7f72866294a45cb55e17538c3_31bf3856ad364e35_6.0.6002.22343_none_86768c10ab713ea0.manifest | | File version | Not Applicable | | File size | 1,064 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_85cf5ef553b5fea8cf22642b7a2a3a2f_31bf3856ad364e35_6.0.6001.18428_none_d996c8f2be5d0e97.manifest | | File version | Not Applicable | | File size | 700 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_86c257a6a5850c003a8cab18b968dc57_31bf3856ad364e35_6.0.6002.22343_none_2e7880fb1fe31e9e.manifest | | File version | Not Applicable | | File size | 1,040 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_8a1fd5dbef9f4d97ab73e7f456de9f96_31bf3856ad364e35_6.0.6001.22638_none_c7f5ae5a70286af5.manifest | | File version | Not Applicable | | File size | 1,038 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_8cb3fd542376e7a515dadd6ebc60ed3c_31bf3856ad364e35_6.0.6001.22638_none_4fb857a8eb600f7a.manifest | | File version | Not Applicable | | File size | 2,500 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_8e105a550e30dc81c302ac1e3434ef68_31bf3856ad364e35_6.0.6002.18210_none_60b2320c8fa96354.manifest | | File version | Not Applicable | | File size | 1,064 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_9c36ab24befd65432dc34e9e4e8bb8ee_31bf3856ad364e35_6.0.6001.18428_none_1e69dcae3a3adf80.manifest | | File version | Not Applicable | | File size | 1,064 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_a15609869652a1b4cc7467c081d1f305_31bf3856ad364e35_6.0.6001.18428_none_c6d9ff48d93ce792.manifest | | File version | Not Applicable | | File size | 1,378 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_a86bb8c50556739b66b39c563ffe1d0c_31bf3856ad364e35_6.0.6001.22638_none_4f512be61c0b0c63.manifest | | File version | Not Applicable | | File size | 1,378 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_aae82a18b174955f2fa696347e8e219b_31bf3856ad364e35_6.0.6000.21227_none_b4021b463ce5c319.manifest | | File version | Not Applicable | | File size | 1,092 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_be9f53095540b3e3f87d3b91dcb0c5dd_31bf3856ad364e35_6.0.6002.18210_none_67773f9b6f00f0d0.manifest | | File version | Not Applicable | | File size | 696 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_c3dd983a1e107ac78a6c06e03f3e2dd7_31bf3856ad364e35_6.0.6001.22638_none_599f4a465593665c.manifest | | File version | Not Applicable | | File size | 1,774 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_c6ce5d8a6fa0f2fa22c23fdf3d8af4c1_31bf3856ad364e35_6.0.6000.21227_none_776a8378fb80519e.manifest | | File version | Not Applicable | | File size | 1,064 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_d34640a5edbd74cad8da1700c5e2026f_31bf3856ad364e35_6.0.6001.18428_none_dd4ddeb62c552160.manifest | | File version | Not Applicable | | File size | 1,064 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_d96ad5ad29c37760b5f783a1ec12ae3a_31bf3856ad364e35_6.0.6002.22343_none_a2c0699f107b24bc.manifest | | File version | Not Applicable | | File size | 1,060 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_e9de41f465053c6b4b6ef1c2d2a4c066_31bf3856ad364e35_6.0.6000.21227_none_8b1ae827abc247ea.manifest | | File version | Not Applicable | | File size | 1,378 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_eade1565d70b6e23fa5d1627f7840bfc_31bf3856ad364e35_6.0.6002.22343_none_02440274b726071e.manifest | | File version | Not Applicable | | File size | 696 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_ec3247bba4d7e703bd7b424d934fccd1_31bf3856ad364e35_6.0.6002.18210_none_166c01881f2ec1a8.manifest | | File version | Not Applicable | | File size | 1,068 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_ee17ae045807e33ba9d7c7a8d1345d20_31bf3856ad364e35_6.0.6002.22343_none_b680acb6a946c6a7.manifest | | File version | Not Applicable | | File size | 1,092 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_f22bfafd1be63d4d51a4fb961525becf_31bf3856ad364e35_6.0.6000.17022_none_cca1afe2ed7ceccc.manifest | | File version | Not Applicable | | File size | 1,068 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_f359141b9e59548bdc5509b347f96dc7_31bf3856ad364e35_6.0.6002.22343_none_d858c81f4c736c9e.manifest | | File version | Not Applicable | | File size | 1,038 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_f476519d5763213fd50706e368e26823_31bf3856ad364e35_6.0.6002.22343_none_09cf3d202356fcc0.manifest | | File version | Not Applicable | | File size | 1,798 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_f5586f60ea6a85078037405364357a41_31bf3856ad364e35_6.0.6001.18428_none_41a3987c66c26d31.manifest | | File version | Not Applicable | | File size | 1,060 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_f950716d6de78b968b377fddf2bb782b_31bf3856ad364e35_6.0.6002.18210_none_b78c5be8334a52d8.manifest | | File version | Not Applicable | | File size | 1,038 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_ffd3fe027f843fe9c1b3b731047e1014_31bf3856ad364e35_6.0.6001.22638_none_a544a9f5c0482c2b.manifest | | File version | Not Applicable | | File size | 1,060 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http-api_31bf3856ad364e35_6.0.6000.17022_none_4fd0d86d58914f5f.manifest | | File version | Not Applicable | | File size | 4,722 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:52 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http-api_31bf3856ad364e35_6.0.6000.21227_none_505f789071aa6b03.manifest | | File version | Not Applicable | | File size | 4,722 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:04 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http-api_31bf3856ad364e35_6.0.6001.18428_none_51bd429355b2423f.manifest | | File version | Not Applicable | | File size | 4,722 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:10 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http-api_31bf3856ad364e35_6.0.6001.22638_none_523c11586ed7fb21.manifest | | File version | Not Applicable | | File size | 4,722 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:46 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http-api_31bf3856ad364e35_6.0.6002.18210_none_53a683fd52d7ade1.manifest | | File version | Not Applicable | | File size | 4,722 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:09 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http-api_31bf3856ad364e35_6.0.6002.22343_none_5412b1e26c0aed83.manifest | | File version | Not Applicable | | File size | 4,722 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:45 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http_31bf3856ad364e35_6.0.6000.17022_none_06e597b6d42062a4.manifest | | File version | Not Applicable | | File size | 144,559 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:54 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http_31bf3856ad364e35_6.0.6000.21227_none_077437d9ed397e48.manifest | | File version | Not Applicable | | File size | 144,559 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:06 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http_31bf3856ad364e35_6.0.6001.18428_none_08d201dcd1415584.manifest | | File version | Not Applicable | | File size | 144,568 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:12 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http_31bf3856ad364e35_6.0.6001.22638_none_0950d0a1ea670e66.manifest | | File version | Not Applicable | | File size | 144,568 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:48 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http_31bf3856ad364e35_6.0.6002.18210_none_0abb4346ce66c126.manifest | | File version | Not Applicable | | File size | 144,967 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:11 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-http_31bf3856ad364e35_6.0.6002.22343_none_0b27712be79a00c8.manifest | | File version | Not Applicable | | File size | 144,967 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:47 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6000.17022_none_7ac2054bb7409654.manifest | | File version | Not Applicable | | File size | 4,992 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:51 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6000.21227_none_7b50a56ed059b1f8.manifest | | File version | Not Applicable | | File size | 4,992 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:03 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6001.18428_none_7cae6f71b4618934.manifest | | File version | Not Applicable | | File size | 5,628 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:09 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6001.22638_none_7d2d3e36cd874216.manifest | | File version | Not Applicable | | File size | 5,628 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:45 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6002.18210_none_7e97b0dbb186f4d6.manifest | | File version | Not Applicable | | File size | 5,628 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:08 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6002.22343_none_7f03dec0caba3478.manifest | | File version | Not Applicable | | File size | 5,628 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:44 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6000.17022_none_29cea394e48a32a9.manifest | | File version | Not Applicable | | File size | 15,051 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:49 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6000.21227_none_2a5d43b7fda34e4d.manifest | | File version | Not Applicable | | File size | 15,051 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6001.18428_none_2bbb0dbae1ab2589.manifest | | File version | Not Applicable | | File size | 17,396 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:38 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6001.22638_none_2c39dc7ffad0de6b.manifest | | File version | Not Applicable | | File size | 16,270 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:44 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6002.18210_none_2da44f24ded0912b.manifest | | File version | Not Applicable | | File size | 17,396 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:38 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6002.22343_none_2e107d09f803d0cd.manifest | | File version | Not Applicable | | File size | 16,270 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:43 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6000.17022_none_c3ae12923f1a8962.manifest | | File version | Not Applicable | | File size | 5,611 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:54 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6000.21227_none_c43cb2b55833a506.manifest | | File version | Not Applicable | | File size | 5,611 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:06 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6001.18428_none_c59a7cb83c3b7c42.manifest | | File version | Not Applicable | | File size | 5,622 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:12 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6001.22638_none_c6194b7d55613524.manifest | | File version | Not Applicable | | File size | 5,622 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:48 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6002.18210_none_c783be223960e7e4.manifest | | File version | Not Applicable | | File size | 5,622 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:11 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6002.22343_none_c7efec0752942786.manifest | | File version | Not Applicable | | File size | 5,622 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:47 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6000.21227_none_6b9cae558930e87c.manifest | | File version | Not Applicable | | File size | 257,196 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:03 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6001.18428_none_6cfa78586d38bfb8.manifest | | File version | Not Applicable | | File size | 364,384 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:38 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6001.22638_none_6d79471d865e789a.manifest | | File version | Not Applicable | | File size | 342,599 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:45 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6002.18210_none_6ee3b9c26a5e2b5a.manifest | | File version | Not Applicable | | File size | 364,384 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:38 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6002.22343_none_6f4fe7a783916afc.manifest | | File version | Not Applicable | | File size | 342,599 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:44 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6000.17022_none_cdd1c2522fbfe345.manifest | | File version | Not Applicable | | File size | 6,238 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:48 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6000.21227_none_ce60627548d8fee9.manifest | | File version | Not Applicable | | File size | 6,238 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6001.18428_none_cfbe2c782ce0d625.manifest | | File version | Not Applicable | | File size | 6,238 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:07 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6001.22638_none_d03cfb3d46068f07.manifest | | File version | Not Applicable | | File size | 6,238 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:43 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6002.18210_none_d1a76de22a0641c7.manifest | | File version | Not Applicable | | File size | 6,238 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:07 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6002.22343_none_d2139bc743398169.manifest | | File version | Not Applicable | | File size | 6,238 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:42 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6000.17022_none_34c0f83f6627d099.manifest | | File version | Not Applicable | | File size | 22,611 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:51 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6000.21227_none_354f98627f40ec3d.manifest | | File version | Not Applicable | | File size | 22,611 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:03 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6001.18428_none_36ad62656348c379.manifest | | File version | Not Applicable | | File size | 24,155 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:38 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6001.22638_none_372c312a7c6e7c5b.manifest | | File version | Not Applicable | | File size | 22,643 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:45 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6002.18210_none_3896a3cf606e2f1b.manifest | | File version | Not Applicable | | File size | 24,155 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:38 | | Platform | Not Applicable | | | File name | Amd64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6002.22343_none_3902d1b479a16ebd.manifest | | File version | Not Applicable | | File size | 22,643 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 10:44 | | Platform | Not Applicable | | | File name | Package_10_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,193 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_10_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 11,628 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_11_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,009 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_11_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,827 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_12_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,389 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_12_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,863 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_13_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,963 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_13_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,575 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_14_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,330 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_14_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 9,923 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_15_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,365 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_15_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 6,111 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_16_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,130 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_16_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,844 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_17_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,803 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_17_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,411 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_18_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,229 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_18_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,699 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_19_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,205 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_19_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,947 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_1_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,744 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_1_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,450 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_20_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,170 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_20_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 9,762 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_21_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,970 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_21_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,683 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_22_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,439 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_22_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,104 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_23_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,763 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_23_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 9,350 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_24_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,803 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_24_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,416 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_25_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,229 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_25_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,702 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_26_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,009 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_26_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,076 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_27_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,205 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_27_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,190 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_28_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,116 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_28_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 6,061 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_29_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,970 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_29_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,923 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_2_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,166 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_2_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,985 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_3_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,845 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_3_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 9,427 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_4_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,363 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_4_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 6,106 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_5_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,128 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_5_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,839 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_6_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,008 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_6_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,826 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_7_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,204 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_7_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,942 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_8_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,687 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_8_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 9,264 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_9_for_kb973917_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,969 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_9_for_kb973917~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,675 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_0_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,825 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_0~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,896 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_1_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,631 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_1~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,699 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_2_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,226 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_2~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,313 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,964 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_client~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,010 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_0_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,882 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_0~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,917 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_1_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,956 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_1~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,035 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,680 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,713 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_0_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,821 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_0~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,888 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_1_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,226 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_1~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,318 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,692 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,725 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv_0_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,411 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv_0~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,430 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv_bf~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,419 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv~31bf3856ad364e35~amd64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,439 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Update-bf.mum | | File version | Not Applicable | | File size | 5,898 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6000.17022_none_8516af9deba1584f.manifest | | File version | Not Applicable | | File size | 3,671 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:56 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6000.21227_none_85a54fc104ba73f3.manifest | | File version | Not Applicable | | File size | 3,671 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:06 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6001.18428_none_870319c3e8c24b2f.manifest | | File version | Not Applicable | | File size | 3,671 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6001.22638_none_8781e88901e80411.manifest | | File version | Not Applicable | | File size | 3,671 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6002.18210_none_88ec5b2de5e7b6d1.manifest | | File version | Not Applicable | | File size | 3,671 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:54 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6002.22343_none_89588912ff1af673.manifest | | File version | Not Applicable | | File size | 3,671 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:51 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6000.17022_none_34234de718eaf4a4.manifest | | File version | Not Applicable | | File size | 8,818 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:56 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6000.21227_none_34b1ee0a32041048.manifest | | File version | Not Applicable | | File size | 8,818 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:06 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6001.18428_none_360fb80d160be784.manifest | | File version | Not Applicable | | File size | 10,378 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:38 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6001.22638_none_368e86d22f31a066.manifest | | File version | Not Applicable | | File size | 9,710 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6002.18210_none_37f8f97713315326.manifest | | File version | Not Applicable | | File size | 10,378 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:38 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6002.22343_none_3865275c2c6492c8.manifest | | File version | Not Applicable | | File size | 9,710 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:51 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6000.17022_none_ce02bce4737b4b5d.manifest | | File version | Not Applicable | | File size | 3,563 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:57 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6000.21227_none_ce915d078c946701.manifest | | File version | Not Applicable | | File size | 3,563 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:07 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6001.18428_none_cfef270a709c3e3d.manifest | | File version | Not Applicable | | File size | 3,563 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:03 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6001.22638_none_d06df5cf89c1f71f.manifest | | File version | Not Applicable | | File size | 3,563 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6002.18210_none_d1d868746dc1a9df.manifest | | File version | Not Applicable | | File size | 3,563 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:54 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6002.22343_none_d244965986f4e981.manifest | | File version | Not Applicable | | File size | 3,563 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:52 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6000.21227_none_75f158a7bd91aa77.manifest | | File version | Not Applicable | | File size | 246,881 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:07 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6001.18428_none_774f22aaa19981b3.manifest | | File version | Not Applicable | | File size | 329,795 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:03 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6001.22638_none_77cdf16fbabf3a95.manifest | | File version | Not Applicable | | File size | 329,795 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6002.18210_none_793864149ebeed55.manifest | | File version | Not Applicable | | File size | 329,795 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:54 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6002.22343_none_79a491f9b7f22cf7.manifest | | File version | Not Applicable | | File size | 329,795 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:51 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6000.17022_none_3f15a2919a889294.manifest | | File version | Not Applicable | | File size | 18,467 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:56 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6000.21227_none_3fa442b4b3a1ae38.manifest | | File version | Not Applicable | | File size | 18,467 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:06 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6001.18428_none_41020cb797a98574.manifest | | File version | Not Applicable | | File size | 19,731 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:38 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6001.22638_none_4180db7cb0cf3e56.manifest | | File version | Not Applicable | | File size | 18,467 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6002.18210_none_42eb4e2194cef116.manifest | | File version | Not Applicable | | File size | 19,731 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:38 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6002.22343_none_43577c06ae0230b8.manifest | | File version | Not Applicable | | File size | 18,467 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:51 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6000.17022_none_f3b23ce9a033de29.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:05 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6000.21227_none_f440dd0cb94cf9cd.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:14 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6001.18428_none_f59ea70f9d54d109.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:11 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6001.22638_none_f61d75d4b67a89eb.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:11 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6002.18210_none_f787e8799a7a3cab.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6002.22343_none_f7f4165eb3ad7c4d.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:59 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6000.17022_none_71b326ce7762720f.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6000.21227_none_7241c6f1907b8db3.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:12 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6001.18428_none_739f90f4748364ef.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:08 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6001.22638_none_741e5fb98da91dd1.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:08 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6002.18210_none_7588d25e71a8d091.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:59 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6002.22343_none_75f500438adc1033.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:57 | | Platform | Not Applicable | |
Additional files for all supported IA-64-based versions of Windows Server 2008Collapse this tableExpand this table | File name | Ia64_0963fdf14c4650815ae54f497fc4600a_31bf3856ad364e35_6.0.6002.18210_none_ac706ef6fab16933.manifest | | File version | Not Applicable | | File size | 1,058 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_0a9f753596c20f8afd6711039b6c69e6_31bf3856ad364e35_6.0.6001.22638_none_5830d25bfec207d6.manifest | | File version | Not Applicable | | File size | 1,375 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_131c188d454f77fcaa0939ce842a7f81_31bf3856ad364e35_6.0.6001.18428_none_772dfb17c5f1adf2.manifest | | File version | Not Applicable | | File size | 1,375 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_1707e1a7d422e10e3f5a0f455ec17b1a_31bf3856ad364e35_6.0.6002.18210_none_bbac25924390826a.manifest | | File version | Not Applicable | | File size | 1,036 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_22234b9ac58bb83b48529cecb1fd0eba_31bf3856ad364e35_6.0.6002.22343_none_99a1ee38e379d42d.manifest | | File version | Not Applicable | | File size | 1,038 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_2356089e9aff47a3323dce4209b91bf7_31bf3856ad364e35_6.0.6001.22638_none_d6082568fe96aee0.manifest | | File version | Not Applicable | | File size | 698 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_3839b52bd88e2b5ef31a93b27c65a7ed_31bf3856ad364e35_6.0.6002.22343_none_d6bda86c9fd57c5f.manifest | | File version | Not Applicable | | File size | 1,058 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_5b3a554bec5ab8e2baa5e1d4593196c5_31bf3856ad364e35_6.0.6001.18428_none_9d9b32ff66dc7f1f.manifest | | File version | Not Applicable | | File size | 1,062 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_6bd36a8cae19a34594bffe5c80c426f9_31bf3856ad364e35_6.0.6002.22343_none_a0b59ed428bf06ff.manifest | | File version | Not Applicable | | File size | 1,090 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_723e40ba0d9f0b30a09ff60e57f47fd2_31bf3856ad364e35_6.0.6001.18428_none_aead516a008a617f.manifest | | File version | Not Applicable | | File size | 1,090 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_7fda66093c38f2e4f343f7d98a2d5100_31bf3856ad364e35_6.0.6002.22343_none_7357753999ade097.manifest | | File version | Not Applicable | | File size | 1,062 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_802aaa013d25eac3bb2a40dfc89e9ef4_31bf3856ad364e35_6.0.6002.18210_none_448062fd6cce2ca1.manifest | | File version | Not Applicable | | File size | 694 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_8addda7c5702356126bbda748e6712c0_31bf3856ad364e35_6.0.6001.22638_none_b5f38508a32dbf4e.manifest | | File version | Not Applicable | | File size | 1,771 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_8e6838d3ad815a73000b9ef8d12b8157_31bf3856ad364e35_6.0.6001.18428_none_967bce8561924a28.manifest | | File version | Not Applicable | | File size | 1,062 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_8eb242dcc18c91b3ca2777f0e226440d_31bf3856ad364e35_6.0.6001.22638_none_87c38071ee68a371.manifest | | File version | Not Applicable | | File size | 1,090 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_92464b56ef895174b17a8ebe2a4b03e0_31bf3856ad364e35_6.0.6001.18428_none_53f049e78f702da8.manifest | | File version | Not Applicable | | File size | 1,066 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_a07425f4ea12fc6639248773ea165166_31bf3856ad364e35_6.0.6001.18428_none_6a60194094109b78.manifest | | File version | Not Applicable | | File size | 1,058 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_ad766a0d402053a2397d638871aec63e_31bf3856ad364e35_6.0.6001.18428_none_7b00107498de96b0.manifest | | File version | Not Applicable | | File size | 698 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_ae71445b9c722bb38482b222fcb58b28_31bf3856ad364e35_6.0.6002.18210_none_f5d56fba5e02df4c.manifest | | File version | Not Applicable | | File size | 1,066 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_ae8dcf9031f6c5451e8114f718d4da8d_31bf3856ad364e35_6.0.6002.22343_none_7ba4d1d2a0bcc6c9.manifest | | File version | Not Applicable | | File size | 694 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_b76eb400f2db500534ec405d888482e8_31bf3856ad364e35_6.0.6001.22638_none_1e6639d4b1dcdee8.manifest | | File version | Not Applicable | | File size | 1,058 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_b86a45a359e9f5cc9fdabe41deaf0502_31bf3856ad364e35_6.0.6001.22638_none_1582e15a7acb532f.manifest | | File version | Not Applicable | | File size | 1,036 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_c073a4f4e107a348f3e7d66e78bd7bff_31bf3856ad364e35_6.0.6001.22638_none_3d4d7c643ebf59c4.manifest | | File version | Not Applicable | | File size | 1,062 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_cd1145d7973776afb4694ec9de8bcf0e_31bf3856ad364e35_6.0.6002.22343_none_8086db86572b0ef5.manifest | | File version | Not Applicable | | File size | 1,771 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_cf51b45f64a0e8bc4375e685dae03e03_31bf3856ad364e35_6.0.6002.18210_none_203805c2ea3da750.manifest | | File version | Not Applicable | | File size | 1,038 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_e13cc44be96829b2fd1fdb07a2a603fd_31bf3856ad364e35_6.0.6002.18210_none_b24c95f6f07843f8.manifest | | File version | Not Applicable | | File size | 1,090 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_e45cf89010cd78f68bf5f238e34bb217_31bf3856ad364e35_6.0.6001.18428_none_e994f25c405c3854.manifest | | File version | Not Applicable | | File size | 1,036 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_e6d3b185f677dec7e7da4ea194134808_31bf3856ad364e35_6.0.6002.18210_none_3f0ebf69ba2e6e69.manifest | | File version | Not Applicable | | File size | 1,062 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_ea34d1949293a281647c2c4d1f3822fa_31bf3856ad364e35_6.0.6002.22343_none_67f6e2de761de3f3.manifest | | File version | Not Applicable | | File size | 1,036 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_fc8d8785f4b063a0491ac65bef9eded5_31bf3856ad364e35_6.0.6002.18210_none_4900400efe7815e2.manifest | | File version | Not Applicable | | File size | 1,062 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-http-api_31bf3856ad364e35_6.0.6001.18428_none_f5a04b059d52da05.manifest | | File version | Not Applicable | | File size | 4,715 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:00 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-http-api_31bf3856ad364e35_6.0.6001.22638_none_f61f19cab67892e7.manifest | | File version | Not Applicable | | File size | 4,715 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 23:31 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-http-api_31bf3856ad364e35_6.0.6002.18210_none_f7898c6f9a7845a7.manifest | | File version | Not Applicable | | File size | 4,715 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:31 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-http-api_31bf3856ad364e35_6.0.6002.22343_none_f7f5ba54b3ab8549.manifest | | File version | Not Applicable | | File size | 4,715 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:30 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-http_31bf3856ad364e35_6.0.6001.18428_none_acb50a4f18e1ed4a.manifest | | File version | Not Applicable | | File size | 144,558 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-http_31bf3856ad364e35_6.0.6001.22638_none_ad33d9143207a62c.manifest | | File version | Not Applicable | | File size | 144,558 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 23:33 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-http_31bf3856ad364e35_6.0.6002.18210_none_ae9e4bb9160758ec.manifest | | File version | Not Applicable | | File size | 144,957 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:33 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-http_31bf3856ad364e35_6.0.6002.22343_none_af0a799e2f3a988e.manifest | | File version | Not Applicable | | File size | 144,957 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:32 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6001.18428_none_209177e3fc0220fa.manifest | | File version | Not Applicable | | File size | 5,619 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:59 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6001.22638_none_211046a91527d9dc.manifest | | File version | Not Applicable | | File size | 5,619 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 23:30 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6002.18210_none_227ab94df9278c9c.manifest | | File version | Not Applicable | | File size | 5,619 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:30 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6002.22343_none_22e6e733125acc3e.manifest | | File version | Not Applicable | | File size | 5,619 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:30 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6001.18428_none_cf9e162d294bbd4f.manifest | | File version | Not Applicable | | File size | 17,380 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:37 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6001.22638_none_d01ce4f242717631.manifest | | File version | Not Applicable | | File size | 16,254 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 23:29 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6002.18210_none_d1875797267128f1.manifest | | File version | Not Applicable | | File size | 17,380 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:37 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6002.22343_none_d1f3857c3fa46893.manifest | | File version | Not Applicable | | File size | 16,254 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:29 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6001.18428_none_697d852a83dc1408.manifest | | File version | Not Applicable | | File size | 5,614 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6001.22638_none_69fc53ef9d01ccea.manifest | | File version | Not Applicable | | File size | 5,614 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 23:33 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6002.18210_none_6b66c69481017faa.manifest | | File version | Not Applicable | | File size | 5,614 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:33 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6002.22343_none_6bd2f4799a34bf4c.manifest | | File version | Not Applicable | | File size | 5,614 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:32 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6001.18428_none_10dd80cab4d9577e.manifest | | File version | Not Applicable | | File size | 364,365 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:37 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6001.22638_none_115c4f8fcdff1060.manifest | | File version | Not Applicable | | File size | 342,580 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 23:30 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6002.18210_none_12c6c234b1fec320.manifest | | File version | Not Applicable | | File size | 364,365 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:37 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6002.22343_none_1332f019cb3202c2.manifest | | File version | Not Applicable | | File size | 342,580 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:30 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6001.18428_none_73a134ea74816deb.manifest | | File version | Not Applicable | | File size | 6,229 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:57 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6001.22638_none_742003af8da726cd.manifest | | File version | Not Applicable | | File size | 6,229 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 23:28 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6002.18210_none_758a765471a6d98d.manifest | | File version | Not Applicable | | File size | 6,229 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:29 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6002.22343_none_75f6a4398ada192f.manifest | | File version | Not Applicable | | File size | 6,229 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:29 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6001.18428_none_da906ad7aae95b3f.manifest | | File version | Not Applicable | | File size | 24,139 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:37 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6001.22638_none_db0f399cc40f1421.manifest | | File version | Not Applicable | | File size | 22,627 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 23:30 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6002.18210_none_dc79ac41a80ec6e1.manifest | | File version | Not Applicable | | File size | 24,139 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:37 | | Platform | Not Applicable | | | File name | Ia64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6002.22343_none_dce5da26c1420683.manifest | | File version | Not Applicable | | File size | 22,627 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 00:30 | | Platform | Not Applicable | | | File name | Package_10_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,837 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_10_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 9,406 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_11_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,965 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_11_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,667 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_12_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,796 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_12_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 6,011 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_13_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,059 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_13_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 4,134 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_1_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,739 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_1_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,443 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_2_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,998 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_2_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,802 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_3_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,197 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_3_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,927 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_4_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,675 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_4_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 9,242 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_5_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,963 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_5_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,662 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_6_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 3,000 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_6_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,058 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_7_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,795 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_7_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 7,393 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_8_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,058 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_8_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,516 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_9_for_kb973917_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,198 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_9_for_kb973917~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 5,932 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_0_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,407 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_0~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,426 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_1_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,773 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_1~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,808 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,675 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_sc~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,706 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_0_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,810 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_0~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,878 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_1_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,728 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_1~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 2,803 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,687 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_server~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,718 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv_0_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,407 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv_0~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,426 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv_bf~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,415 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Package_for_kb973917_winpesrv~31bf3856ad364e35~ia64~~6.0.2.2.mum | | File version | Not Applicable | | File size | 1,434 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:34 | | Platform | Not Applicable | | | File name | Update-bf.mum | | File version | Not Applicable | | File size | 3,456 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:35 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6001.18428_none_870319c3e8c24b2f.manifest | | File version | Not Applicable | | File size | 3,671 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6001.22638_none_8781e88901e80411.manifest | | File version | Not Applicable | | File size | 3,671 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6002.18210_none_88ec5b2de5e7b6d1.manifest | | File version | Not Applicable | | File size | 3,671 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:54 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-i..henticationbinaries_31bf3856ad364e35_6.0.6002.22343_none_89588912ff1af673.manifest | | File version | Not Applicable | | File size | 3,671 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:51 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6001.18428_none_360fb80d160be784.manifest | | File version | Not Applicable | | File size | 10,378 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:37 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6001.22638_none_368e86d22f31a066.manifest | | File version | Not Applicable | | File size | 9,710 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6002.18210_none_37f8f97713315326.manifest | | File version | Not Applicable | | File size | 10,378 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:37 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-corewebengine_31bf3856ad364e35_6.0.6002.22343_none_3865275c2c6492c8.manifest | | File version | Not Applicable | | File size | 9,710 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:51 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6001.18428_none_cfef270a709c3e3d.manifest | | File version | Not Applicable | | File size | 3,563 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:03 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6001.22638_none_d06df5cf89c1f71f.manifest | | File version | Not Applicable | | File size | 3,563 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6002.18210_none_d1d868746dc1a9df.manifest | | File version | Not Applicable | | File size | 3,563 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:54 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-isapiextensions_31bf3856ad364e35_6.0.6002.22343_none_d244965986f4e981.manifest | | File version | Not Applicable | | File size | 3,563 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:52 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6001.18428_none_774f22aaa19981b3.manifest | | File version | Not Applicable | | File size | 329,795 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:03 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6001.22638_none_77cdf16fbabf3a95.manifest | | File version | Not Applicable | | File size | 329,795 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6002.18210_none_793864149ebeed55.manifest | | File version | Not Applicable | | File size | 329,795 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:54 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-iis-sharedlibraries_31bf3856ad364e35_6.0.6002.22343_none_79a491f9b7f22cf7.manifest | | File version | Not Applicable | | File size | 329,795 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:51 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6001.18428_none_41020cb797a98574.manifest | | File version | Not Applicable | | File size | 19,731 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:37 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6001.22638_none_4180db7cb0cf3e56.manifest | | File version | Not Applicable | | File size | 18,467 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6002.18210_none_42eb4e2194cef116.manifest | | File version | Not Applicable | | File size | 19,731 | | Date (UTC) | 22-Feb-2010 | | Time (UTC) | 13:37 | | Platform | Not Applicable | | | File name | Wow64_microsoft-windows-processmodellibraries_31bf3856ad364e35_6.0.6002.22343_none_43577c06ae0230b8.manifest | | File version | Not Applicable | | File size | 18,467 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:51 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6001.18428_none_f59ea70f9d54d109.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:11 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6001.22638_none_f61d75d4b67a89eb.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:11 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6002.18210_none_f787e8799a7a3cab.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:02 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-http-api_31bf3856ad364e35_6.0.6002.22343_none_f7f4165eb3ad7c4d.manifest | | File version | Not Applicable | | File size | 4,708 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:59 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6001.18428_none_739f90f4748364ef.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:08 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6001.22638_none_741e5fb98da91dd1.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 09:08 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6002.18210_none_7588d25e71a8d091.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 08:59 | | Platform | Not Applicable | | | File name | X86_microsoft-windows-nshhttp_31bf3856ad364e35_6.0.6002.22343_none_75f500438adc1033.manifest | | File version | Not Applicable | | File size | 6,220 | | Date (UTC) | 21-Feb-2010 | | Time (UTC) | 06:57 | | Platform | Not Applicable | |
APPLIES TO- Microsoft Internet Information Services 7.5
- Microsoft Internet Information Services 7.0
- Microsoft Internet Information Services 6.0
- Windows Vista Enterprise 64-bit Edition
- Windows Vista Home Basic 64-bit Edition
- Windows Vista Home Premium 64-bit Edition
- Windows Vista Ultimate 64-bit Edition
- Windows Vista Business 64-bit Edition
- Windows Vista Business
- Windows Vista Enterprise
- Windows Vista Home Basic
- Windows Vista Home Premium
- Windows Vista Starter
- Windows Vista Ultimate
- Windows Vista Service Pack 2, when used with:
- Windows Vista Enterprise 64-bit Edition
- Windows Vista Home Basic 64-bit Edition
- Windows Vista Home Premium 64-bit Edition
- Windows Vista Ultimate 64-bit Edition
- Windows Vista Business 64-bit Edition
- Windows Vista Business
- Windows Vista Enterprise
- Windows Vista Home Basic
- Windows Vista Home Premium
- Windows Vista Starter
- Windows Vista Ultimate
- Windows Vista Service Pack 1, when used with:
- Windows Vista Enterprise 64-bit Edition
- Windows Vista Home Basic 64-bit Edition
- Windows Vista Home Premium 64-bit Edition
- Windows Vista Ultimate 64-bit Edition
- Windows Vista Business 64-bit Edition
- Windows Vista Business
- Windows Vista Enterprise
- Windows Vista Home Basic
- Windows Vista Home Premium
- Windows Vista Starter
- Windows Vista Ultimate
- Windows Server 2008 for Itanium-Based Systems
- Windows Server 2008 Datacenter
- Windows Server 2008 Enterprise
- Windows Server 2008 Standard
- Windows Web Server 2008
- Windows Server 2008 Service Pack 2, when used with:
- Windows Server 2008 for Itanium-Based Systems
- Windows Server 2008 Datacenter
- Windows Server 2008 Enterprise
- Windows Server 2008 Standard
- Windows Web Server 2008
- Microsoft Windows Server 2003 R2 Standard x64 Edition
- Microsoft Windows Server 2003, Datacenter x64 Edition
- Microsoft Windows Server 2003, Standard Edition
- Microsoft Windows Server 2003, Enterprise Edition
- Microsoft Windows Server 2003, Datacenter Edition (32-bit x86)
- Microsoft Windows Server 2003, Web Edition
- Microsoft Windows Server 2003, Enterprise Edition for Itanium-based Systems
- Microsoft Windows Server 2003, Datacenter Edition for Itanium-based Systems
- Microsoft Windows Small Business Server 2003 Standard Edition
- Microsoft Windows Server 2003 Service Pack 2, when used with:
- Microsoft Windows Server 2003, Standard Edition
- Microsoft Windows Server 2003, Enterprise Edition
- Microsoft Windows Server 2003, Datacenter Edition (32-bit x86)
- Microsoft Windows Server 2003, Web Edition
- Microsoft Windows Server 2003, Enterprise Edition for Itanium-based Systems
- Microsoft Windows Server 2003, Datacenter Edition for Itanium-based Systems
- Microsoft Windows Server 2003, Standard x64 Edition
- Microsoft Windows Server 2003, Enterprise x64 Edition
- Microsoft Windows Server 2003, Datacenter x64 Edition
- Microsoft Windows Server 2003 R2 Standard Edition (32-bit x86)
- Microsoft Windows Server 2003 R2 Enterprise Edition (32-Bit x86)
- Microsoft Windows Server 2003 R2 Datacenter Edition (32-Bit x86)
- Microsoft Windows Server 2003 R2 Standard x64 Edition
- Microsoft Windows Server 2003 R2 Enterprise x64 Edition
- Microsoft Windows Server 2003 R2 Datacenter x64 Edition
- Microsoft Windows XP Professional x64 Edition
| kbsurveynew kbfix kbbug kbsecvulnerability kbsecbulletin kbsecurity kbqfe kbexpertiseinter KB973917 |
Community Feedback System
Very often, it takes hours to solve a problem. Very often, you've looked high
and low, and have tried a lot of solutions. When you finally found it, chances
are, it was because someone else helped you. Here's your chance to give back.
Use our community feedback tool to let others know what worked for you and what
didn't.
Please also understand that the community feedback system is not warranted to be
correct, it's simply a system that we've built to let people try and help each
other. If something in a feedback response doesn't make sense to you, or you're
not comfortable making changes that the feedback talks about (like registry
edits), please consult a professional.
Thank you for using kbAlertz.com Feedback System.
-- Scott Cate
Be the first to leave feedback, to help others about this knowledge base
article.
(Optional) Name
(Optional)
Public URL Or Email
Comments
No
HTML -- Text Only Please
|
 |
 |
 |
 |
 |
 |
 |
| |