简介
本文介绍一个与安全无关的更新,此更新能够在 Internet 信息服务 (IIS) 中实现身份验证扩展保护。
启用身份验证的扩展保护之后,身份验证请求将会绑定到客户端尝试连接的服务器的服务主体名称 (SPN) 以及发生集成 Windows 身份验证的外部传输层安全性 (TLS) 通道。 注意2010 年 3 月 9 日将发布此更新来解决一个安装问题和一个功能问题:-
当运行 Windows Server 2003 Service Pack 2 (SP2) 的计算机安装遇到 II6 包含一些 Windows Server 2003 Service Pack 1 (SP1) 二进制文件时,此更新能准确的检测出来,而且将拒绝安装并提供错误代码。在此日期之前发布的 973917 更新将成功安装,但是可能导致安装后 IIS 无法重新启动。
-
在运行 Windows Server 2003 的计算机上,此发布解决了一个可能导致启用身份验证扩展保护时分配过多内存的问题。
-
在运行 Windows Server 2008 的计算机上,此发布解决了一个当 IIS 配置为使用内核模式 Windows 身份验证时可能导致扩展保护无法正常工作的问题。
更多信息
配置
扩展保护强化了现有的 Windows 身份验证功能,从而减少了身份验证中继或“中间人”攻击。实现这一减少的方法是使用通过两种安全机制实现的安全信息:
-
通过通道绑定令牌 (CBT) 指定的通道绑定信息。该信息主要用于 SSL 连接。
-
通过服务主体名称 (SPN) 指定的服务绑定信息。该信息主要用于不使用 SSL 的连接或在已建立连接时使用。例如,将 SSL 卸载到另一个设备(如代理服务器或负载平衡器)的情况。
在 IIS 7.0 中,扩展保护是通过 <extendedProtection> 元素配置的。可以在标题“IIS 7.0 和 IIS 7.5 的配置”下找到详细的配置信息。对于 IIS 6.0,使用的配置参数相同,但这些参数是使用注册表项部署的(请查看“IIS 6.0 的配置”部分)。
<extendedProtection> 元素可能包含 <spn> 元素的集合,其中每个元素都包含针对服务绑定信息的唯一 SPN。每个 SPN 都表示连接路径中的一个唯一终结点,它可能是目标服务器或代理服务器的完全限定的域名 (FQDN) 或 NetBIOS 名称。例如,如果客户端通过代理服务器连接到目标服务器,则目标服务器上的 SPN 集合必须包含代理服务器的 SPN。集合中的每个 SPN 都必须将“HTTP”作为前缀。因此,“www.contoso.com”的 SPN 将为“HTTP/www.contoso.com”。扩展保护方案
考虑以下示例方案。
方案 |
标志 |
说明 |
---|---|---|
客户端直接连接到使用 HTTP 的目标服务器。 |
代理、ProxyCohosting |
将使用 SPN 检查,而不使用通道绑定令牌检查。 |
客户端直接连接到使用 SSL 的目标服务器。 |
无 |
使用通道绑定令牌检查,而不使用 SPN 检查。 |
客户端通过对路径使用 HTTP 的代理服务器连接到目标服务器。 |
代理、ProxyCohosting |
将使用 SPN 检查,而不使用通道绑定令牌检查。 |
客户端通过对路径使用 SSL 的代理服务器连接到目标服务器。 |
代理服务器 |
将使用 SPN 检查,而不使用通道绑定令牌检查。 |
客户端连接到使用 SSL 的代理服务器,而代理服务器连接到使用 HTTP(SSL 卸载)的目标服务器。 |
代理服务器 |
将使用 SPN 检查,而不使用通道绑定令牌检查。 |
-
在这些方案中,还可以指定 AllowDotlessSpn 标志(如果网络环境支持基于 NetBIOS 的 SPN)。但是,基于 NetBIOS 的 SPN 是不安全的。
-
对于将使用 SPN 检查,而不使用通道绑定令牌检查的方案,不需要指定 NoServiceNameCheck 标志。
-
IIS 6.0、IIS 7.0 或 IIS 7.5 的默认安装不启用或安装 Windows 身份验证。仅当为您的网站或应用程序启用 Windows 身份验证时,扩展保护才适用。
IIS 7.0 和 7.5 的配置
IIS 7.0 的默认安装不包含 Windows 身份验证角色服务。若要对 IIS 使用 Windows 身份验证,必须安装此角色服务,为您的网站或应用程序禁用匿名身份验证,然后为该站点或应用程序启用 Windows 身份验证。
注意 安装此角色服务之后,IIS 7.0 将以下配置设置提交给 ApplicationHost.config 文件。<windowsAuthentication enabled="false" />
如何为 IIS 7.5 启用 Windows 身份验证扩展保护
-
单击「开始」,指向“管理工具”,然后单击“Internet 信息服务 (IIS) 管理器”。
-
-
滚动到“主页”窗格的“安全”部分,双击“身份验证”。
-
-
-
-
-
如果想启用扩展保护,同时为不支持扩展保护的客户端提供低级支持,则选择“接受”。
-
如果想启用扩展保护,而不提供低级支持,则选择“必需”。
-
-
单击“确定”关闭“高级设置”对话框。
如何为 IIS 7.0 启用 Windows 身份验证扩展保护
用于 IIS 7.0 的 Internet 信息服务 (IIS) 管理器不显示用于对扩展保护进行更改的选项。因此,必须使用本文后面部分提供的配置示例或脚本进行更改。
配置
属性
在 ApplicationHost.config 文件中的站点、应用程序或虚拟目录级别中,<extendedProtection> 元素是可配置的。
属性 |
说明 |
---|---|
标志 |
可选标志属性。 为扩展保护指定其他行为设置。 标志属性可以是下表中值的组合。默认值为“无”。 |
tokenChecking |
可选枚举属性。 指定用于检查通道绑定信息的行为。 tokenChecking 属性可以是下表中的任何值。默认值为“无”。 |
标志属性为扩展保护配置其他行为。可能的标志如下所示。
名称 |
说明 |
---|---|
无 |
该标志指定没有为扩展保护启用任何其他行为。(例如,不使用任何代理服务器,已启用 SPN 检查并且需要 FQDN。) 数值为 0。 |
代理服务器 |
该标志指定通信路径的一部分将通过代理,或者客户端通过 HTTP 直接连接到目标服务器。 数值为 1。 |
NoServiceNameCheck |
该标志指定 SPN 检查被禁用。该标志不应该用于仅检查 SPN 的方案中。 数值为 2。 |
AllowDotlessSpn |
该标志指定 SPN 不必是 FQDN。 注意 设置该标志是不安全的,因为基于非 FQDN 的名称容易受到破坏名称解析的攻击。不建议使用该设置,因为它可能会使客户暴露于危险之中。 数值为 4。 |
ProxyCohosting |
该标志指定客户端到服务器的通信路径将仅使用 HTTP。通信路径的任何部分都不使用 SSL,并将使用 SPN 检查。 注意 指定该标志时,还必须指定“代理”标志。 数值为 32。 |
tokenChecking 属性配置用于检查通道绑定令牌的行为。该属性可能的值如下所示。
名称 |
说明 |
---|---|
无 |
该值指定 IIS 将不执行通道绑定令牌检查。该设置模拟扩展保护之前存在的行为。 数值为 0。 |
允许 |
该值指定启用通道绑定令牌检查,但该检查不是必需的。该设置允许与要受该功能保护的支持扩展保护的客户端通信,但仍然支持无法使用扩展保护的客户端。 数值为 1。 |
必需 |
该值指定通道绑定令牌检查是必需的。该设置不为不支持扩展保护的客户端提供支持。 数值为 2。 |
子元素
元素 |
说明 |
---|---|
spn |
向集合中添加 SPN。 |
clearSpns |
清除 SPN 的集合。 |
removeSpn |
从集合中删除 SPN。 |
配置示例
以下示例显示一个 <extendedProtection> 元素,该元素演示了为默认的网站启用具有扩展保护的 Windows 身份验证。该示例向 SPN 的集合中添加了两个 SPN 条目。
<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>
示例代码
以下示例演示如何为默认的网站启用具有扩展保护的 Windows 身份验证以及如何向集合中添加两个 SPN。
AppCmd.exe
appcmd.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
注意 使用 AppCmd.exe 配置这些设置时,必须确保将 commit 参数设置为 APPHOST。该设置将配置设置提交给 ApplicationHost.config 文件的相应位置部分。
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 .NET
Imports 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
JavaScript
var 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();
VBScript
Set 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()
IIS 6.0 的配置
重要说明:此部分、方法或任务包含有关如何修改注册表的步骤。但是,注册表修改不当可能会出现严重问题。因此,请一定严格按照下列步骤操作。为了获得进一步保护,请在修改注册表之前对其进行备份。这样就可以在出现问题时还原注册表。有关如何备份和还原注册表的更多信息,请单击下面的文章编号,以查看 Microsoft 知识库中相应的文章:
322756 如何在 Windows XP 中备份和还原注册表 在 IIS 6.0 上,可以通过设置以下注册表项来配置身份验证扩展保护。
注册表项: |
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W3SVC\Parameters\extendedProtection\tokenChecking |
允许的值: |
0(无)、1(允许)、2(必需) |
数据类型: |
DWORD |
默认值: |
0 |
名称 |
说明 |
---|---|
无 |
该值指定 IIS 将不执行通道绑定令牌检查。该设置模拟扩展保护之前存在的行为。 数值为 0。 |
允许 |
该值指定启用通道绑定令牌检查,但该检查不是必需的。该设置允许与要受该功能保护的支持扩展保护的客户端通信,但仍然支持无法使用扩展保护的客户端。 数值为 1。 |
必需 |
该值指定通道绑定令牌检查是必需的。该设置不为不支持扩展保护的客户端提供支持。 数值为 2。 |
注册表项: |
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W3SVC\Parameters\extendedProtection\flags |
允许的值: |
0(无)、1(代理)、2 (NoServiceNameCheck)、4 (AllowDotlessSpn)、32 (ProxyCohosting) |
数据类型: |
DWORD |
默认值: |
0 |
名称 |
说明 |
---|---|
无 |
该标志指定没有为扩展保护启用任何其他行为。(例如,未使用任何代理服务器。) 数值为 0。 |
代理服务器 |
该标志指定通信路径的一部分将通过代理,当客户端通过 HTTP 直接连接到目标服务器时,必须同时启用代理和 ProxyCoHosting。 数值为 1。 |
NoServiceNameCheck |
该标志指定 SPN 检查被禁用。该标志不应该用于仅检查 SPN 的方案中。 数值为 2。 |
AllowDotlessSpn |
该标志指定 SPN 不必是 FQDN。设置该标志允许基于 NetBIOS 的 SPN。 注意 设置该标志是不安全的,因为基于非 FQDN 的名称容易受到破坏名称解析的攻击。不建议使用该设置,因为它可能会使客户暴露于危险之中。 数值为 4。 |
ProxyCohosting |
该标志指定客户端到服务器的通信路径将仅使用 HTTP。通信路径的任何部分都不会使用 SSL 并且将使用 SPN 检查。如果通过代理发送的安全和不安全通讯必须成功进行身份验证,则也必须打开此位。 注意 指定该标志时,还必须指定“代理”标志。 数值为 32。 |
注册表项: |
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W3SVC\Parameters\extendedProtection\spns |
允许的值: |
<strings> |
数据类型: |
MULTI_SZ |
默认值: |
空 |
若要设置这些注册表项,请遵循以下流程:
-
启动注册表编辑器。为此,请依次单击「开始」、“运行”,键入 regedit,然后单击“确定”。
-
找到并单击下面的注册表子项:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W3SVC\Parameters\extendedProtection\ -
验证注册表值 tokenChecking、Flags 和 spns 是否存在。
如果这些注册表值不存在,请按照下列步骤创建它们:-
选择在步骤 2 中列出的注册表子项,指向“编辑”菜单上的“新建”,然后单击“DWORD 值”。
-
键入 tokenChecking,然后按 Enter。
-
选择在步骤 2 中列出的注册表子项,指向“编辑”菜单上的“新建”,然后单击“DWORD 值”。
-
键入 flags,然后按 Enter。
-
选择在步骤 2 中列出的注册表子项,指向“编辑”菜单上的“新建”,然后单击“MULTI_SZ 值”。
-
键入 spns,然后按 Enter。
-
-
单击以选择 tokenChecking 注册表值。
-
在“编辑”菜单上,单击“修改”。
-
在“数值数据”框中,键入首选值,然后单击“确定”。
-
单击以选择 flags 注册表值。
-
-
单击以选择 spns 注册表值。
-
在“数值数据”框中,键入适当的 spn,然后单击“确定”。
-
退出注册表编辑器。
有关身份验证扩展保护功能以及有关如何在安装此更新之后启用此功能的详细信息,请访问以下 Microsoft 网站:
http://www.microsoft.com/china/technet/security/advisory/973811.mspx有关 IIS 的详细信息,请访问以下 Microsoft 网站:
http://www.iis.net/具有扩展保护的集成 Windows 身份验证
http://msdn.microsoft.com/zh-cn/library/dd639324.aspx服务主体名称
http://msdn.microsoft.com/zh-cn/library/ms677949(VS.85).aspx
更新信息
Windows Server 的先决条件 2003
此更新需要正确安装 Windows Server 2003 Service Pack 2 (SP2)。有些时候 Service Pack 1 (SP1) 二进制文件安装在运行的版本不是 SP2 的计算机上。在此类计算机上安装此更新将导致 IIS 失败,服务器会对所有请求返回“503 服务不可用”错误消息。要确定服务器是否为 IIS 运行了正确的 SP2 二进制文件,请参考以下文件表以确认版本号与此处所列出的文件版本相同或更高。
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 |
已知问题
-
Windows Server 2003
此更新将在 2010 年 3 月 9 日发布用于执行一次额外检查,以便确保在运行 Windows Server 2003 SP2 的计算机上的 IIS 6 系统不包含来自 SP1 的二进制文件,如果发现这种二进制文件,此更新将提供错误代码。若要修复此问题,请将 SP2 更新重新应用到计算机,并在重新安装 SP2 后安装此程序包。 2010 年 3 月 9 日之前发布的此安全更新的原始版本,可能导致 IIS 应用程序池在 IIS 6 包含一些 SP1 二进制文件的 Windows Server 2003 SP2 计算机上无法启动。IIS 服务启动后,系统日志将显示以下错误信息:事件 ID 1009,描述:为应用程序池“DefaultAppPool”提供服务的进程意外终止。进程 ID 是“1234”
有关此已知问题的更多信息,请单击下面的文章编号,以查看 Microsoft 知识库中相应的文章:
2009746安装 KB973917 后,Internet Information Services 6.0 可能无法正常运行。 (EN) 如果您的计算机不是 Windows Server 2003 SP2 的全新安装,建议您查看“Windows Server 2003 先决条件”一节。 从 2009 年 12 月 16 日起,如果您使用自动更新,并且,在安装有 SP1 和 SP2 二进制文件的计算机上安装 IIS,则系统不会再向您提供此更新。我们建议您查看 Microsoft 知识库中的以下文章,了解为了确保计算机已准备就绪可以应用此更新而必须采取的后续步骤。
2009746 安装 KB973917 后,Internet Information Services 6.0 可能无法正常运行 (EN)
-
Windows Server 2003 和 Windows Server 2008
此更新已在 2010 年 3 月 9 日重新发布,如果安装,则此重新发布的更新将完全替换原始发布版本,原始发行版将卸载并由新发行版替换,卸载 3 月 9 日发行的此更新将使计算机脱离 IIS 功能提供的扩展保护。
如何获得此更新
适用于 Windows Server 2003
适用于基于 Itanium 的 Windows Server 2003 版本
http://www.microsoft.com/download/details.aspx?FamilyId=8ce32fd8-7efd-467b-a385-09470ffe645c
适用于基于 x64 的 Windows Server 2003 版本和适用于 Windows XP x64 edition
适用于 Windows Server 2008
适用于基于 Itanium 的 Windows Server 2008 版本
http://www.microsoft.com/download/details.aspx?FamilyId=3c9f9dd4-ac92-41c2-a1a8-7a16348d5988
适用于基于 x64 的 Windows Server 2008 版本
适用于 Windows Vista
适用于基于 x64 的 Windows Vista 版本
文件信息
此软件更新的英语(美国)版本将安装具有下表所列属性的文件。这些文件的日期和时间按协调世界时 (UTC) 列出。这些文件在您的本地计算机中的显示日期和时间是您的本地时间加上当前夏令时 (DST) 偏差。此外,如果对这些文件执行某些操作,日期和时间可能会更改。
Windows XP 和 Windows Server 2003 文件信息
-
应用于特定里程碑(RTM、SPn)和服务分支(QFE、GDR)的文件将记录在“SP 要求”和“服务分支”列中。
-
GDR 服务分支仅包含那些广泛发布以解决广泛分布的关键问题的修补程序。QFE 服务分支包含除了广泛发布的修补程序以外的其他修补程序。
-
除了在这些表中列出的文件以外,此软件更新还会安装使用 Microsoft 数字签名进行签名的关联的安全目录文件 (KBnumber.cat)。
对于所有受支持的 Windows Server 2003 的 x64 版本和 Windows XP Professional x64 版本
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 |
对于所有受支持的基于 x86 的 Windows Server 2003 版本
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 |
对于所有受支持的基于 IA-64 的 Windows Server 2003 版本
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 和 Windows Server 2008 文件信息
-
通过检查在下表中显示的文件版本号,可以识别应用于特定产品、里程碑(RTM、SPn)和服务分支(LDR、GDR)的文件:
版本
产品
里程碑
服务分支
6.0.6000.16xxx
Windows Vista
RTM
GDR
6.0.6000.20xxx
Windows Vista
RTM
LDR
6.0.6001.18xxx
Windows Vista SP1 和 Windows Server 2008 SP1
SP1
GDR
6.0.6001.22xxx
Windows Vista SP1 和 Windows Server 2008 SP1
SP1
LDR
6.0.6002.18xxx
Windows Vista SP2 和 Windows Server 2008 SP2
SP2
GDR
6.0.6002.22xxx
Windows Vista SP2 和 Windows Server 2008 SP2
SP2
LDR
-
Service Pack 1 集成到 Windows Server 2008 的发行版中。因此,RTM 里程碑文件仅应用于 Windows Vista。RTM 里程碑文件的版本号为 6.0.0000.xxxxxx。
-
GDR 服务分支仅包含广泛发布以解决那些广泛分布的关键问题的修补程序。LDR 服务分支包含除广泛发布的修补程序以外的其他修补程序。
-
针对每个环境而安装的 MANIFEST 文件 (.manifest) 和 MUM 文件 (.mum) 将单独列出。MUM 和 MANIFEST 文件以及关联的安全目录 (.cat) 文件对于维护已更新组件的状态非常关键。安全目录文件(未列出属性)均使用 Microsoft 数字签名进行签名。
对于所有受支持的基于 x86 的 Windows Vista 和 Windows Server 2008 版本
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 |
对于所有受支持的基于 x64 的 Windows Vista 和 Windows Server 2008 版本
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 |
对于所有受支持的基于 IA-64 的 Windows Server 2008 版本
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 |
Windows Vista 和 Windows Server 2008 的其他文件信息
所有受支持的基于 x86 的 Windows Vista 和 Windows Server 2008 版本的其他文件
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 |
所有受支持的基于 x64 的 Windows Vista 和 Windows Server 2008 版本的其他文件
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 |
所有受支持的基于 IA-64 的 Windows Server 2008 版本的其他文件
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 |