Support for Windows Vista Service Pack 1 (SP1) ends on July 12, 2011. To continue receiving security updates for Windows, make sure you're running Windows Vista with Service Pack 2 (SP2). For more information, refer to this Microsoft web page: Support is ending for some versions of Windows
This article describes a nonsecurity update that implements Extended Protection for Authentication in Internet Information Services (IIS).
When Extended Protection for Authentication is enabled, authentication requests are bound to both the Service Principal Names (SPN) of the server to which the client tries to connect and to the outer Transport Layer Security (TLS) channel over which Integrated Windows Authentication happens.
Note On March 9, 2010, this update was rereleased to address an installation issue and a functional issue:
This update will now correctly detect when a computer that is running Windows Server 2003 Service Pack 2 (SP2) is in an installation where IIS 6 contains some Windows Server 2003 Service Pack 1 (SP1) binaries, and will refuse to install and exits with an error code. The versions of update 973917 that were released before this date will successfully install, but they could cause IIS to not restart after installation.
On a computer that is running Windows Server 2003, this rerelease addresses an issue that could cause excessive amounts of memory to be allocated upon enabling Extended Protection for Authentication.
On a computer that is running Windows Server 2008, this rerelease addresses an issue that could cause Extended Protection not to function correctly when IIS is configured to use kernel-mode Windows Authentication.
Extended protection enhances the existing Windows Authentication functionality to mitigate authentication relay or "man in the middle" attacks. This mitigation is accomplished by using security information that is implemented through two security mechanisms:
Channel binding information that is specified through a Channel Binding Token (CBT). This is used primarily for SSL connections.
Service binding information that is specified through a service principal name (SPN). This is used primarily for connections that do not use SSL or when a connection is established. For example, this might be in a scenario in which SSL is offloaded to another device, such as a proxy server or load-balancer.
In IIS 7.0, Extended Protection is configured through the <extendedProtection> element. Detailed configuration information can be found under the header "Configuration on IIS 7.0 and IIS 7.5". For IIS 6.0, the same configuration parameters are used, but the parameters are deployed by using registry keys. (Review the section "Configuration on IIS 6.0.")
The <extendedProtection> element may contain a collection of <spn> elements, each of which contains a unique SPN for the service binding information. Each SPN represents a unique endpoint in the connection path. It may be a Fully Qualified Domain Name (FQDN) or NetBIOS name of the destination server or a proxy server. For example, if a client is connecting to a destination server through a proxy server, the SPN collection on the destination server would have to contain the SPN for the proxy server. Each SPN in the collection must be prefixed with "HTTP". Therefore, the SPN for "www.contoso.com" would be "HTTP/www.contoso.com".
Extended Protection Scenarios
Consider the following sample scenarios.
Collapse this tableExpand this table
Scenario
Flags
Description
Client connects directly to destination server that uses HTTP.
Proxy, ProxyCohosting
SPN checking will be used, and channel binding token checking will not be used.
Client connects directly to destination server that uses SSL.
None
Channel binding token checking is used, and SPN checking is not used.
Client connects to destination server through a proxy server that uses HTTP for the path.
Proxy, ProxyCohosting
SPN checking will be used, and channel binding token checking will not be used.
Client connects to destination server through a proxy server that uses SSL for the path.
Proxy
SPN checking will be used, and channel binding token checking will not be used.
Client connects to proxy server that uses SSL, and proxy server connects to the destination server that uses HTTP (SSL off-loading).
Proxy
SPN checking will be used, and channel binding token checking will not be used.
In these scenarios, you could also specify the AllowDotlessSpn flag if your networking environment supports NetBIOS-based SPNs. However, NetBIOS-based SPNs are not secure.
For the scenarios in which SPN checking will be used, and channel binding token checking will not be used, you should not specify the NoServiceNameCheck flag.
Default installation of IIS 6.0, IIS 7.0, or IIS 7.5 does not enable or install Windows authentication. Extended Protection is applicable only when Windows authentication is enabled for your Web site or application.
Configuration on IIS 7.0 and 7.5
The default installation of IIS 7.0 does not include the Windows authentication role service. To use Windows authentication on IIS, you must install the role service, disable Anonymous authentication for your Web site or application, and then enable Windows authentication for the site or application.
Note After you install the role service, IIS 7.0 commits the following configuration settings to the ApplicationHost.config file.
<windowsAuthentication enabled="false" />
How to enable Extended Protection for Windows authentication for IIS 7.5
Click Start, point to Administrative Tools, and then click Internet Information Services (IIS) Manager.
In the Connections pane, expand the server name, expand Sites, and then select the site, application or Web service for which you want to enable Extended Protection for Windows authentication.
Scroll to the Security section in the Home pane, and then double-click Authentication.
In the Authentication pane, select Windows Authentication.
Click Enable in the Actions pane.
Click Advanced Settings in the Actions pane.
When the Advanced Settings dialog box appears, select one of the following options in the Extended Protection menu:
Select Accept if you want to enable extended protection while providing down-level support for clients that do not support extended protection.
Select Required if you want to enable extended protection without providing down-level support.
Click OK to close the Advanced Settings dialog box.
How to enable Extended Protection for Windows authentication for IIS 7.0
Internet Information Services (IIS) Manager for IIS 7.0 does not expose the options to make changes to Extended Protection. Therefore, changes have to be made by using the configuration sample or the scripts that are shown later in this article.
Configuration
Attribute
The <extendedProtection> element is configurable at the site, application, or virtual directory level in the ApplicationHost.config file.
Collapse this tableExpand this table
Attribute
Description
flags
Optional flags attribute.
Specifies the additional behavior settings for extended protection.
The flags attribute can be a combination of the values in the next table. The default value is None.
tokenChecking
Optional enum attribute.
Specifies the behavior for checking channel binding information.
The tokenChecking attribute can be one of the values in the next table. The default value is None.
The flags attribute configures additional behavior for extended protection. The possible flags are as follows.
Collapse this tableExpand this table
Name
Description
None
This flag specifies that no additional behavior is enabled for extended protection. (For example, no proxy server is being used and SPN checking is enabled and requires FQDNs.)
The numeric value is 0.
Proxy
This flag specifies that part of the communication path will be through a proxy, or the client is connecting directly to the destination server over HTTP.
The numeric value is 1.
NoServiceNameCheck
This flag specifies that SPN checking is disabled. This flag should not be used in scenarios where only SPNs are being checked.
The numeric value is 2.
AllowDotlessSpn
This flag specifies that SPNs are not required to be an FQDN.
Note Setting this flag is not a secure scenario, as non-FQDN based names are vulnerable to name resolution poisoning attacks. This setting is not recommended as it may expose customers to risk.
The numeric value is 4.
ProxyCohosting
This flag specifies that the client-to-server communication path will use HTTP only. No part of the communication path will use SSL, and SPN checking will be used.
Note When you specify this flag, you must also specify the Proxy flag.
The numeric value is 32.
The tokenChecking attribute configures the behavior for checking for channel binding tokens. The possible values for this attribute are as follows.
Collapse this tableExpand this table
Name
Description
None
This value specifies that IIS will not perform channel binding token checking. This setting emulates the behavior that existed before extended protection.
The numeric value is 0.
Allow
This value specifies that channel binding token checking is enabled but not required. This setting allows communications with clients that support extended protection to be protected by the feature, but still supports clients that cannot use extended protection.
The numeric value is 1.
Require
This value specifies that channel binding token checking is required. This setting does not provide support for clients that do not support extended protection.
The numeric value is 2.
Child Elements
Collapse this tableExpand this table
Element
Description
spn
Adds an SPN to the collection.
clearSpns
Clears the collection of SPNs.
removeSpn
Removes an SPN from the collection.
Configuration Sample
The following sample displays a <extendedProtection> element that demonstrates enabling Windows authentication with extended protection for the Default Web Site. The sample adds two SPN entries to the collection of SPNs.
The following examples demonstrate how to enable Windows authentication with extended protection for the Default Web Site and how to add two SPNs to the collection.
AppCmd.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
Note You must make sure to set the commit parameter to APPHOST when you use AppCmd.exe to configure these settings. This setting commits the configuration settings to the appropriate location section in the ApplicationHost.config file.
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()
Configuration on IIS 6.0
Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the following article number to view the article in the Microsoft Knowledge Base:
This value specifies that IIS will not perform channel binding token checking. This setting emulates the behavior that existed before extended protection.
The numeric value is 0.
Allow
This value specifies that channel binding token checking is enabled but not required. This setting allows communications with clients that support extended protection to be protected by the feature, but it still supports clients that cannot use extended protection
The numeric value is 1.
Require
This value specifies that channel binding token checking is required. This setting does not provide support for clients that do not support extended protection.
This flag specifies that no additional behavior is enabled for extended protection. (For example, no proxy server is being used.)
The numeric value is 0.
Proxy
This flag specifies that part of the communication path will be through a proxy. When the client is connecting directly to the destination server over HTTP, both Proxy and ProxyCoHosting must be enabled.
The numeric value is 1.
NoServiceNameCheck
This flag specifies that SPN checking is disabled. This flag should not be used in scenarios in which only SPNs are being checked.
The numeric value is 2.
AllowDotlessSpn
This flag specifies that SPNs are not required to be an FQDN. Setting this flag allows NetBIOS-based SPNs.
Note Setting this flag is not a secure scenario, as non-FQDN based names are vulnerable to name resolution poisoning attacks. This setting is not recommended as it may expose customers to risk.
The numeric value is 4.
ProxyCohosting
This flag specifies that the client-to-server communication path will use HTTP only. No part of the communication path will use SSL, and SPN checking will be used. Turn on this bit also if both secure and nonsecure traffic that is sent through the proxy has to be successfully authenticated.
Note When you specify this flag, you must also specify the Proxy flag.
If these registry values are not present, follow these steps to create them:
Select the registry subkey that is listed in step 2, point to New on the Edit menu, and then click DWORD Value.
Type tokenChecking, and then press ENTER.
Select the registry subkey that is listed in step 2, point to New on the Edit menu, and then click DWORD Value.
Type flags, and then press ENTER.
Select the registry subkey that is listed in step 2, point to New on the Edit menu, and then click MULTI_SZ Value.
Type spns, and then press ENTER.
Click to select the tokenChecking registry value.
On the Edit menu, click Modify.
In the Value data box, type the preferred value, and then click OK.
Click to select the flags registry value.
In the Value data box, type the preferred value, and then click OK.
Click to select the spns registry value.
In the Value data box, enter an appropriate spn, and then click OK.
Exit Registry Editor.
For more information about the Extended Protection for Authentication feature and about how to enable this feature upon installing this update, visit the following Microsoft Web site:
This update requires a correct installation of Windows Server 2003 Service Pack 2 (SP2). There are some cases in which some Service Pack 1 (SP1) binaries may be installed on a computer that is otherwise running SP2. Installing this update on such a computer can cause an IIS failure, which causes the server to return "503 Service Unavailable" error messages for all requests. To determine whether the server is running the correct SP2 binaries for IIS, refer to the following file table to verify that version numbers are equal to the versions of the files listed here or to later versions.
Collapse this tableExpand this table
File name
File version
File size
Date
Platform
SP requirement
Adrot.dll
6.0.3790.3959
58,880
17-Feb-2007
x86
SP2
Adsiis.dll
6.0.3790.3959
291,328
17-Feb-2007
x86
SP2
Asp.dll
6.0.3790.3959
388,096
17-Feb-2007
x86
SP2
Browscap.dll
6.0.3790.3959
47,104
17-Feb-2007
x86
SP2
Certobj.dll
6.0.3790.3959
82,432
17-Feb-2007
x86
SP2
Coadmin.dll
6.0.3790.3959
64,000
17-Feb-2007
x86
SP2
Controt.dll
6.0.3790.3959
33,792
17-Feb-2007
x86
SP2
Davcdata.exe
6.0.3790.3959
27,136
17-Feb-2007
x86
SP2
Davcprox.dll
6.0.3790.3959
6,656
17-Feb-2007
x86
SP2
Gzip.dll
6.0.3790.3959
25,600
17-Feb-2007
x86
SP2
Httpext.dll
6.0.3790.3959
241,664
17-Feb-2007
x86
SP2
Httpmib.dll
6.0.3790.3959
18,944
17-Feb-2007
x86
SP2
Httpodbc.dll
6.0.3790.3959
48,640
17-Feb-2007
x86
SP2
Iisadmin.dll
6.0.3790.3959
21,504
17-Feb-2007
x86
SP2
Iiscfg.dll
6.0.3790.3959
1,133,056
17-Feb-2007
x86
SP2
Iisclex4.dll
6.0.3790.0
62,976
18-Feb-2007
x86
SP2
Iisext.dll
6.0.3790.3959
82,944
17-Feb-2007
x86
SP2
Iislog.dll
6.0.3790.3959
76,288
17-Feb-2007
x86
SP2
Iisres.dll
6.0.3790.3959
122,880
17-Feb-2007
x86
SP2
Iisrstas.exe
6.0.3790.3959
28,160
17-Feb-2007
x86
SP2
Iisui.dll
6.0.3790.3959
217,088
17-Feb-2007
x86
SP2
Iisuiobj.dll
6.0.3790.3959
68,608
17-Feb-2007
x86
SP2
Iisutil.dll
6.0.3790.3959
167,936
17-Feb-2007
x86
SP2
Iisw3adm.dll
6.0.3790.3959
216,576
17-Feb-2007
x86
SP2
Iiswmi.dll
6.0.3790.3959
194,560
17-Feb-2007
x86
SP2
Inetinfo.exe
6.0.3790.3959
14,336
17-Feb-2007
x86
SP2
Inetmgr.dll
6.0.3790.3959
1,058,304
17-Feb-2007
x86
SP2
Inetmgr.exe
6.0.3790.3959
19,456
17-Feb-2007
x86
SP2
Infocomm.dll
6.0.3790.3959
235,520
17-Feb-2007
x86
SP2
Isapips.dll
6.0.3790.3959
8,192
17-Feb-2007
x86
SP2
Isatq.dll
6.0.3790.3959
52,736
17-Feb-2007
x86
SP2
Iscomlog.dll
6.0.3790.3959
19,456
17-Feb-2007
x86
SP2
Logscrpt.dll
6.0.3790.3959
25,600
17-Feb-2007
x86
SP2
Lonsint.dll
6.0.3790.3959
13,312
17-Feb-2007
x86
SP2
Metadata.dll
6.0.3790.3959
234,496
17-Feb-2007
x86
SP2
Nextlink.dll
6.0.3790.3959
61,440
17-Feb-2007
x86
SP2
Nntpadm.dll
6.0.3790.3959
187,392
17-Feb-2007
x86
SP2
Nntpsnap.dll
6.0.3728.0
2,663,424
17-Feb-2007
x86
SP2
Rpcref.dll
6.0.3790.3959
4,096
17-Feb-2007
x86
SP2
Seo.dll
6.0.3790.3959
219,136
17-Feb-2007
x86
SP2
Smtpadm.dll
6.0.3790.3959
179,200
17-Feb-2007
x86
SP2
Smtpsnap.dll
6.0.3728.0
2,086,400
17-Feb-2007
x86
SP2
Ssinc.dll
6.0.3790.3959
24,064
17-Feb-2007
x86
SP2
Svcext.dll
6.0.3790.3959
44,544
17-Feb-2007
x86
SP2
Uihelper.dll
6.0.3790.3959
114,176
17-Feb-2007
x86
SP2
Urlauth.dll
6.0.3790.3959
15,360
17-Feb-2007
x86
SP2
W3cache.dll
6.0.3790.3959
19,456
17-Feb-2007
x86
SP2
W3comlog.dll
6.0.3790.3959
10,752
17-Feb-2007
x86
SP2
W3core.dll
6.0.3790.3959
349,696
17-Feb-2007
x86
SP2
W3ctrlps.dll
6.0.3790.3959
6,144
17-Feb-2007
x86
SP2
W3ctrs.dll
6.0.3790.3959
24,064
17-Feb-2007
x86
SP2
W3dt.dll
6.0.3790.3959
39,424
17-Feb-2007
x86
SP2
W3ext.dll
6.0.3790.3959
92,672
17-Feb-2007
x86
SP2
W3isapi.dll
6.0.3790.3959
62,464
17-Feb-2007
x86
SP2
W3tp.dll
6.0.3790.3959
13,312
17-Feb-2007
x86
SP2
W3wp.exe
6.0.3790.3959
7,168
17-Feb-2007
x86
SP2
Wam.dll
6.0.3790.3959
23,040
17-Feb-2007
x86
SP2
Wamps.dll
6.0.3790.3959
6,656
17-Feb-2007
x86
SP2
Wamreg.dll
6.0.3790.3959
55,808
17-Feb-2007
x86
SP2
Known issues
Windows Server 2003
This update was rereleased on March 9, 2010 to perform an additional check to make sure that the IIS 6 system on a computer that is running Windows Server 2003 SP2 does not contain binaries from the SP1 version. If such binaries are found, this update will exit with an error message. To fix this condition, reapply the SP2 update to your computers and install this package after you successfully reinstall SP2.
The original version of this security update, released before March 9, 2010, could cause IIS application pools to not start on installations of Windows Server 2003 SP2 where IIS 6 may contain some SP1 binaries, IIS application pools may not start. The System log would display the following error message when the IIS service is started:
Event ID 1009, Description: A process serving application pool 'DefaultAppPool' terminated unexpectedly. The process id was '1234'
For more information about this known issue, click the following article number to view the article in the Microsoft Knowledge Base:
Internet Information Services 6.0 may not function correctly after installing KB973917
We recommend reviewing the "Prerequisites for Windows Server 2003" section if your computer is not a clean Windows Server 2003 SP2 installation.
As of December 16, 2009, if you use Automatic Updates, you will no longer be offered this update if your IIS installation is in a configuration where both SP1 and SP2 binaries are present on the computer. We recommend that you review the following article in the Microsoft Knowledge Base for the next steps that you must take to make sure that the computer is ready to apply this update.
Internet Information Services 6.0 may not function correctly after installing KB973917
Windows Server 2003 and Windows Server 2008
This update was re-released on March 9, 2010. This re-released update fully replaces the initial release. If you install the new release, the initial release will be uninstalled and replaced by the new one. Uninstalling the March 9 release of this update will leave the computer without Extended Protection for IIS functionality present.
The English (United States) version of this software update installs files that have the attributes that are listed in the following tables. The dates and times for these files are listed in Coordinated Universal Time (UTC). The dates and times for these files on your local computer are displayed in your local time and with your current daylight saving time (DST) bias. Additionally, the dates and times may change when you perform certain operations on the files.
Windows XP and Windows Server 2003 file information
The files that apply to a specific milestone (RTM, SPn) and service branch (QFE, GDR) are noted in the "SP requirement" and "Service branch" columns.
GDR service branches contain only those fixes that are widely released to address widespread, critical issues. QFE service branches contain hotfixes in addition to widely released fixes.
In addition to the files that are listed in these tables, this software update also installs an associated security catalog file (KBnumber.cat) that is signed with a Microsoft digital signature.
For all supported x64-based versions of Windows Server 2003 and for Windows XP Professional x64 edition
Collapse this tableExpand this table
File name
File version
File size
Date
Time
Platform
SP requirement
Service branch
Http.sys
5.2.3790.4616
562,176
18-Feb-2010
19:57
x64
SP2
SP2GDR
Httpapi.dll
5.2.3790.4616
37,376
18-Feb-2010
19:57
x64
SP2
SP2GDR
Strmfilt.dll
6.0.3790.4647
134,656
18-Feb-2010
19:57
x64
SP2
SP2GDR
W3core.dll
6.0.3790.4667
547,328
18-Feb-2010
19:57
x64
SP2
SP2GDR
W3dt.dll
6.0.3790.4667
58,880
18-Feb-2010
19:57
x64
SP2
SP2GDR
W3isapi.dll
6.0.3790.4667
84,992
18-Feb-2010
19:57
x64
SP2
SP2GDR
Whttpapi.dll
5.2.3790.4616
25,088
18-Feb-2010
19:57
x86
SP2
SP2GDR\WOW
Wstrmfilt.dll
6.0.3790.4647
86,528
18-Feb-2010
19:57
x86
SP2
SP2GDR\WOW
Ww3core.dll
6.0.3790.4667
350,720
18-Feb-2010
19:57
x86
SP2
SP2GDR\WOW
Ww3dt.dll
6.0.3790.4667
39,424
18-Feb-2010
19:57
x86
SP2
SP2GDR\WOW
Ww3isapi.dll
6.0.3790.4667
62,976
18-Feb-2010
19:57
x86
SP2
SP2GDR\WOW
Http.sys
5.2.3790.4616
567,808
18-Feb-2010
19:53
x64
SP2
SP2QFE
Httpapi.dll
5.2.3790.4616
37,376
18-Feb-2010
19:53
x64
SP2
SP2QFE
Strmfilt.dll
6.0.3790.4647
134,656
18-Feb-2010
19:53
x64
SP2
SP2QFE
W3core.dll
6.0.3790.4667
547,328
18-Feb-2010
19:53
x64
SP2
SP2QFE
W3dt.dll
6.0.3790.4667
58,880
18-Feb-2010
19:53
x64
SP2
SP2QFE
W3isapi.dll
6.0.3790.4667
84,992
18-Feb-2010
19:53
x64
SP2
SP2QFE
Whttpapi.dll
5.2.3790.4616
25,088
18-Feb-2010
19:53
x86
SP2
SP2QFE\WOW
Wstrmfilt.dll
6.0.3790.4647
86,528
18-Feb-2010
19:53
x86
SP2
SP2QFE\WOW
Ww3core.dll
6.0.3790.4667
351,232
18-Feb-2010
19:53
x86
SP2
SP2QFE\WOW
Ww3dt.dll
6.0.3790.4667
39,424
18-Feb-2010
19:53
x86
SP2
SP2QFE\WOW
Ww3isapi.dll
6.0.3790.4667
62,976
18-Feb-2010
19:53
x86
SP2
SP2QFE\WOW
For all supported x86-based versions of Windows Server 2003
Collapse this tableExpand this table
File name
File version
File size
Date
Time
Platform
SP requirement
Service branch
Http.sys
5.2.3790.4616
292,864
06-Nov-2009
12:54
x86
SP2
SP2GDR
Httpapi.dll
5.2.3790.4616
25,088
11-Nov-2009
05:09
x86
SP2
SP2GDR
Strmfilt.dll
6.0.3790.4647
86,528
11-Jan-2010
10:23
x86
SP2
SP2GDR
W3core.dll
6.0.3790.4667
350,720
18-Feb-2010
05:31
x86
SP2
SP2GDR
W3dt.dll
6.0.3790.4667
39,424
18-Feb-2010
05:31
x86
SP2
SP2GDR
W3isapi.dll
6.0.3790.4667
62,976
18-Feb-2010
05:31
x86
SP2
SP2GDR
Http.sys
5.2.3790.4616
294,912
06-Nov-2009
11:46
x86
SP2
SP2QFE
Httpapi.dll
5.2.3790.4616
25,088
11-Nov-2009
05:51
x86
SP2
SP2QFE
Strmfilt.dll
6.0.3790.4647
86,528
11-Jan-2010
09:36
x86
SP2
SP2QFE
W3core.dll
6.0.3790.4667
351,232
18-Feb-2010
05:50
x86
SP2
SP2QFE
W3dt.dll
6.0.3790.4667
39,424
18-Feb-2010
05:50
x86
SP2
SP2QFE
W3isapi.dll
6.0.3790.4667
62,976
18-Feb-2010
05:50
x86
SP2
SP2QFE
For all supported IA-64-based versions of Windows Server 2003
Collapse this tableExpand this table
File name
File version
File size
Date
Time
Platform
SP requirement
Service branch
Http.sys
5.2.3790.4616
806,912
18-Feb-2010
19:57
IA-64
SP2
SP2GDR
Httpapi.dll
5.2.3790.4616
69,632
18-Feb-2010
19:57
IA-64
SP2
SP2GDR
Strmfilt.dll
6.0.3790.4647
254,976
18-Feb-2010
19:57
IA-64
SP2
SP2GDR
W3core.dll
6.0.3790.4667
1,066,496
18-Feb-2010
19:57
IA-64
SP2
SP2GDR
W3dt.dll
6.0.3790.4667
87,040
18-Feb-2010
19:57
IA-64
SP2
SP2GDR
W3isapi.dll
6.0.3790.4667
121,856
18-Feb-2010
19:57
IA-64
SP2
SP2GDR
Whttpapi.dll
5.2.3790.4616
25,088
18-Feb-2010
19:57
x86
SP2
SP2GDR\WOW
Wstrmfilt.dll
6.0.3790.4647
86,528
18-Feb-2010
19:57
x86
SP2
SP2GDR\WOW
Ww3core.dll
6.0.3790.4667
350,720
18-Feb-2010
19:57
x86
SP2
SP2GDR\WOW
Ww3dt.dll
6.0.3790.4667
39,424
18-Feb-2010
19:57
x86
SP2
SP2GDR\WOW
Ww3isapi.dll
6.0.3790.4667
62,976
18-Feb-2010
19:57
x86
SP2
SP2GDR\WOW
Http.sys
5.2.3790.4616
815,104
18-Feb-2010
19:51
IA-64
SP2
SP2QFE
Httpapi.dll
5.2.3790.4616
69,632
18-Feb-2010
19:51
IA-64
SP2
SP2QFE
Strmfilt.dll
6.0.3790.4647
254,976
18-Feb-2010
19:51
IA-64
SP2
SP2QFE
W3core.dll
6.0.3790.4667
1,067,008
18-Feb-2010
19:51
IA-64
SP2
SP2QFE
W3dt.dll
6.0.3790.4667
87,040
18-Feb-2010
19:51
IA-64
SP2
SP2QFE
W3isapi.dll
6.0.3790.4667
121,856
18-Feb-2010
19:51
IA-64
SP2
SP2QFE
Whttpapi.dll
5.2.3790.4616
25,088
18-Feb-2010
19:51
x86
SP2
SP2QFE\WOW
Wstrmfilt.dll
6.0.3790.4647
86,528
18-Feb-2010
19:51
x86
SP2
SP2QFE\WOW
Ww3core.dll
6.0.3790.4667
351,232
18-Feb-2010
19:51
x86
SP2
SP2QFE\WOW
Ww3dt.dll
6.0.3790.4667
39,424
18-Feb-2010
19:51
x86
SP2
SP2QFE\WOW
Ww3isapi.dll
6.0.3790.4667
62,976
18-Feb-2010
19:51
x86
SP2
SP2QFE\WOW
Windows Vista and Windows Server 2008 file information
The files that apply to a specific product, milestone (RTM, SPn), and service branch (LDR, GDR) can be identified by examining the file version numbers as shown in the following table:
Collapse this tableExpand this table
Version
Product
Milestone
Service branch
6.0.6000.16xxx
Windows Vista
RTM
GDR
6.0.6000.20xxx
Windows Vista
RTM
LDR
6.0.6001.18xxx
Windows Vista SP1 and Windows Server 2008 SP1
SP1
GDR
6.0.6001.22xxx
Windows Vista SP1 and Windows Server 2008 SP1
SP1
LDR
6.0.6002.18xxx
Windows Vista SP2 and Windows Server 2008 SP2
SP2
GDR
6.0.6002.22xxx
Windows Vista SP2 and Windows Server 2008 SP2
SP2
LDR
Service Pack 1 is integrated into the release version of Windows Server 2008. Therefore, RTM milestone files apply only to Windows Vista. RTM milestone files have a 6.0.0000. xxxxxx version number.
GDR service branches contain only those fixes that are widely released to address widespread, critical issues. LDR service branches contain hotfixes in addition to widely released fixes.
The MANIFEST files (.manifest) and the MUM files (.mum) that are installed for each environment are listed separately. MUM and MANIFEST files, and the associated security catalog (.cat) files, are critical to maintaining the state of the updated component. The security catalog files (attributes not listed) are signed with a Microsoft digital signature.
For all supported x86-based versions of Windows Vista and Windows Server 2008
Collapse this tableExpand this table
File name
File version
File size
Date
Time
Platform
Httpapi.dll
6.0.6000.17022
31,232
20-Feb-2010
23:51
x86
Httpapi.dll
6.0.6000.21227
31,232
20-Feb-2010
23:31
x86
Httpapi.dll
6.0.6001.18428
31,232
20-Feb-2010
23:37
x86
Httpapi.dll
6.0.6001.22638
31,232
20-Feb-2010
23:29
x86
Httpapi.dll
6.0.6002.18210
30,720
20-Feb-2010
23:05
x86
Httpapi.dll
6.0.6002.22343
30,720
20-Feb-2010
23:08
x86
Http.sys
6.0.6000.17022
396,800
20-Feb-2010
21:30
x86
Http.sys
6.0.6000.21227
398,848
20-Feb-2010
21:16
x86
Http.sys
6.0.6001.18428
411,136
20-Feb-2010
21:18
x86
Http.sys
6.0.6001.22638
411,136
20-Feb-2010
21:20
x86
Http.sys
6.0.6002.18210
411,648
20-Feb-2010
20:53
x86
Http.sys
6.0.6002.22343
411,648
20-Feb-2010
21:06
x86
Authsspi.dll
7.0.6000.17022
36,352
20-Feb-2010
23:50
x86
Authsspi.dll
7.0.6000.21227
36,352
20-Feb-2010
23:30
x86
Authsspi.dll
7.0.6001.18428
43,520
20-Feb-2010
23:35
x86
Authsspi.dll
7.0.6001.22638
43,520
20-Feb-2010
23:27
x86
Authsspi.dll
7.0.6002.18210
43,520
20-Feb-2010
23:04
x86
Authsspi.dll
7.0.6002.22343
43,520
20-Feb-2010
23:07
x86
Hwebcore.dll
7.0.6000.17022
12,288
20-Feb-2010
23:51
x86
Iiscore.dll
7.0.6000.17022
164,864
20-Feb-2010
23:52
x86
Iisstart.htm
Not Applicable
689
01-Apr-2009
16:01
Not Applicable
W3dt.dll
7.0.6000.17022
23,552
20-Feb-2010
23:55
x86
Welcome.png
Not Applicable
184,946
01-Apr-2009
16:01
Not Applicable
Hwebcore.dll
7.0.6000.21227
12,288
20-Feb-2010
23:31
x86
Iiscore.dll
7.0.6000.21227
164,864
20-Feb-2010
23:31
x86
Iisstart.htm
Not Applicable
689
01-Apr-2009
16:01
Not Applicable
W3dt.dll
7.0.6000.21227
23,552
20-Feb-2010
23:36
x86
Welcome.png
Not Applicable
184,946
01-Apr-2009
16:01
Not Applicable
Hwebcore.dll
7.0.6001.18359
12,800
09-Nov-2009
13:20
x86
Iiscore.dll
7.0.6001.18428
189,952
20-Feb-2010
23:37
x86
Iisstart.htm
Not Applicable
689
27-Mar-2009
08:27
Not Applicable
W3dt.dll
7.0.6001.18428
23,552
20-Feb-2010
23:40
x86
Welcome.png
Not Applicable
184,946
27-Mar-2009
08:27
Not Applicable
Hwebcore.dll
7.0.6001.22638
12,800
20-Feb-2010
23:29
x86
Iiscore.dll
7.0.6001.22638
190,976
20-Feb-2010
23:29
x86
Iisstart.htm
Not Applicable
689
01-Apr-2009
18:56
Not Applicable
W3dt.dll
7.0.6001.22638
23,552
20-Feb-2010
23:31
x86
Welcome.png
Not Applicable
184,946
01-Apr-2009
18:56
Not Applicable
Hwebcore.dll
7.0.6002.18139
12,800
09-Nov-2009
12:30
x86
Iiscore.dll
7.0.6002.18210
190,976
20-Feb-2010
23:05
x86
Iisstart.htm
Not Applicable
689
03-Apr-2009
20:42
Not Applicable
W3dt.dll
7.0.6002.18210
23,552
20-Feb-2010
23:07
x86
Welcome.png
Not Applicable
184,946
03-Apr-2009
20:42
Not Applicable
Hwebcore.dll
7.0.6002.22343
12,800
20-Feb-2010
23:08
x86
Iiscore.dll
7.0.6002.22343
190,976
20-Feb-2010
23:08
x86
Iisstart.htm
Not Applicable
689
03-Apr-2009
20:49
Not Applicable
W3dt.dll
7.0.6002.22343
23,552
20-Feb-2010
23:12
x86
Welcome.png
Not Applicable
184,946
03-Apr-2009
20:49
Not Applicable
Isapi.dll
7.0.6000.17022
107,008
20-Feb-2010
23:52
x86
Isapi.dll
7.0.6000.21227
107,008
20-Feb-2010
23:32
x86
Isapi.dll
7.0.6001.18428
107,008
20-Feb-2010
23:37
x86
Isapi.dll
7.0.6001.22638
107,008
20-Feb-2010
23:29
x86
Isapi.dll
7.0.6002.18210
107,008
20-Feb-2010
23:05
x86
Isapi.dll
7.0.6002.22343
107,008
20-Feb-2010
23:08
x86
Admwprox.dll
7.0.6000.17022
51,200
20-Feb-2010
23:50
x86
Appcmd.exe
7.0.6000.17022
150,528
20-Feb-2010
21:47
x86
Appcmd.xml
Not Applicable
3,655
01-Apr-2009
15:58
Not Applicable
Applicationhost.config
Not Applicable
7,685
01-Apr-2009
15:58
Not Applicable
Appobj.dll
7.0.6000.17022
297,472
20-Feb-2010
23:50
x86
Aspnetca.exe
7.0.6000.17022
178,176
20-Feb-2010
21:47
x86
Aspnet_schema.xml
Not Applicable
38,890
01-Apr-2009
15:58
Not Applicable
Fx_schema.xml
Not Applicable
27,014
01-Apr-2009
15:58
Not Applicable
Iismig.dll
7.0.6000.17022
128,512
20-Feb-2010
23:55
x86
Iisreg.dll
7.0.6000.17022
89,088
20-Feb-2010
23:52
x86
Iisres.dll
7.0.6000.17022
183,808
20-Feb-2010
20:30
x86
Iisreset.exe
7.0.6000.17022
14,848
20-Feb-2010
21:46
x86
Iisrstap.dll
7.0.6000.17022
8,192
20-Feb-2010
23:52
x86
Iisrstas.exe
7.0.6000.17022
30,720
20-Feb-2010
21:46
x86
Iisrtl.dll
7.0.6000.17022
148,480
20-Feb-2010
23:52
x86
Iissetup.exe
7.0.6000.17022
195,072
20-Feb-2010
21:47
x86
Iissyspr.dll
7.0.6000.17022
31,232
20-Feb-2010
23:52
x86
Iisutil.dll
7.0.6000.17022
189,952
20-Feb-2010
23:52
x86
Iis_schema.xml
Not Applicable
67,868
21-Jul-2009
09:12
Not Applicable
Nativerd.dll
7.0.6000.17022
236,032
20-Feb-2010
23:54
x86
Rsca.dll
7.0.6000.17022
26,624
20-Feb-2010
23:55
x86
W3ctrlps.dll
7.0.6000.17022
9,216
20-Feb-2010
23:55
x86
Wamregps.dll
7.0.6000.17022
10,752
20-Feb-2010
23:55
x86
Admwprox.dll
7.0.6000.21227
51,200
20-Feb-2010
23:30
x86
Appcmd.exe
7.0.6000.21227
150,528
20-Feb-2010
21:31
x86
Appcmd.xml
Not Applicable
3,654
01-Apr-2009
15:58
Not Applicable
Applicationhost.config
Not Applicable
7,685
01-Apr-2009
15:58
Not Applicable
Appobj.dll
7.0.6000.21227
297,472
20-Feb-2010
23:30
x86
Aspnetca.exe
7.0.6000.21227
178,176
20-Feb-2010
21:31
x86
Aspnet_schema.xml
Not Applicable
38,890
01-Apr-2009
15:58
Not Applicable
Fx_schema.xml
Not Applicable
27,014
01-Apr-2009
15:58
Not Applicable
Iismig.dll
7.0.6000.21227
128,512
20-Feb-2010
23:35
x86
Iisreg.dll
7.0.6000.21227
89,088
20-Feb-2010
23:31
x86
Iisres.dll
7.0.6000.21227
183,808
20-Feb-2010
20:21
x86
Iisreset.exe
7.0.6000.21227
14,848
20-Feb-2010
21:31
x86
Iisrstap.dll
7.0.6000.21227
8,192
20-Feb-2010
23:31
x86
Iisrstas.exe
7.0.6000.21227
30,720
20-Feb-2010
21:31
x86
Iisrtl.dll
7.0.6000.21227
148,480
20-Feb-2010
23:31
x86
Iissetup.exe
7.0.6000.21227
195,072
20-Feb-2010
21:31
x86
Iissyspr.dll
7.0.6000.21227
31,232
20-Feb-2010
23:31
x86
Iisutil.dll
7.0.6000.21227
189,952
20-Feb-2010
23:31
x86
Iis_schema.xml
Not Applicable
67,868
21-Jul-2009
09:12
Not Applicable
Nativerd.dll
7.0.6000.21227
236,032
20-Feb-2010
23:34
x86
Rsca.dll
7.0.6000.21227
26,624
20-Feb-2010
23:35
x86
W3ctrlps.dll
7.0.6000.21227
9,216
20-Feb-2010
23:35
x86
Wamregps.dll
7.0.6000.21227
10,752
20-Feb-2010
23:36
x86
Admwprox.dll
7.0.6001.18359
51,712
09-Nov-2009
13:18
x86
Ahadmin.dll
7.0.6001.18359
27,136
09-Nov-2009
13:18
x86
Appcmd.exe
7.0.6001.18359
154,112
09-Nov-2009
11:21
x86
Appcmd.xml
Not Applicable
3,654
27-Mar-2009
08:24
Not Applicable
Applicationhost.config
Not Applicable
7,989
27-Mar-2009
08:24
Not Applicable
Appobj.dll
7.0.6001.18359
311,296
09-Nov-2009
13:18
x86
Aspnetca.exe
7.0.6001.18359
182,784
09-Nov-2009
11:22
x86
Aspnet_schema.xml
Not Applicable
38,786
27-Mar-2009
08:24
Not Applicable
Fx_schema.xml
Not Applicable
26,971
27-Mar-2009
08:24
Not Applicable
Iismig.dll
7.0.6001.18359
209,408
09-Nov-2009
13:23
x86
Iisreg.dll
7.0.6001.18359
89,088
09-Nov-2009
13:20
x86
Iisres.dll
7.0.6001.18359
193,024
09-Nov-2009
11:21
x86
Iisreset.exe
7.0.6001.18359
14,848
09-Nov-2009
11:21
x86
Iisrstap.dll
7.0.6001.18359
8,192
09-Nov-2009
13:20
x86
Iisrstas.exe
7.0.6001.18359
31,232
09-Nov-2009
11:21
x86
Iisrtl.dll
7.0.6001.18359
153,600
09-Nov-2009
13:20
x86
Iissetup.exe
7.0.6001.18359
228,864
09-Nov-2009
11:22
x86
Iissyspr.dll
7.0.6001.18359
59,392
09-Nov-2009
13:20
x86
Iisutil.dll
7.0.6001.18359
202,752
09-Nov-2009
13:20
x86
Iis_schema.xml
Not Applicable
76,318
11-Jul-2009
14:24
Not Applicable
Nativerd.dll
7.0.6001.18359
326,656
09-Nov-2009
13:22
x86
Redirection.config
Not Applicable
490
27-Mar-2009
08:24
Not Applicable
Rsca.dll
7.0.6001.18359
26,624
09-Nov-2009
13:23
x86
Rscaext.dll
6.0.6001.18359
38,912
09-Nov-2009
13:23
x86
Rscaext.xml
Not Applicable
8,363
27-Mar-2009
08:24
Not Applicable
W3ctrlps.dll
7.0.6001.18359
9,216
09-Nov-2009
13:23
x86
Wamregps.dll
7.0.6001.18359
10,752
09-Nov-2009
13:23
x86
Admwprox.dll
7.0.6001.22638
51,712
20-Feb-2010
23:26
x86
Ahadmin.dll
7.0.6001.22638
27,136
20-Feb-2010
23:26
x86
Appcmd.exe
7.0.6001.22638
154,112
20-Feb-2010
21:35
x86
Appcmd.xml
Not Applicable
3,654
01-Apr-2009
18:54
Not Applicable
Applicationhost.config
Not Applicable
7,989
01-Apr-2009
18:54
Not Applicable
Appobj.dll
7.0.6001.22638
311,808
20-Feb-2010
23:26
x86
Aspnetca.exe
7.0.6001.22638
182,784
20-Feb-2010
21:35
x86
Aspnet_schema.xml
Not Applicable
38,786
01-Apr-2009
18:55
Not Applicable
Fx_schema.xml
Not Applicable
26,943
08-May-2009
08:10
Not Applicable
Iismig.dll
7.0.6001.22638
209,408
20-Feb-2010
23:31
x86
Iisreg.dll
7.0.6001.22638
89,088
20-Feb-2010
23:29
x86
Iisres.dll
7.0.6001.22638
193,024
20-Feb-2010
21:35
x86
Iisreset.exe
7.0.6001.22638
14,848
20-Feb-2010
21:35
x86
Iisrstap.dll
7.0.6001.22638
8,192
20-Feb-2010
23:29
x86
Iisrstas.exe
7.0.6001.22638
31,232
20-Feb-2010
21:35
x86
Iisrtl.dll
7.0.6001.22638
153,600
20-Feb-2010
23:29
x86
Iissetup.exe
7.0.6001.22638
228,864
20-Feb-2010
21:35
x86
Iissyspr.dll
7.0.6001.22638
59,392
20-Feb-2010
23:29
x86
Iisutil.dll
7.0.6001.22638
202,752
20-Feb-2010
23:29
x86
Iis_schema.xml
Not Applicable
79,213
20-Feb-2010
18:09
Not Applicable
Nativerd.dll
7.0.6001.22638
331,776
20-Feb-2010
23:30
x86
Redirection.config
Not Applicable
490
01-Apr-2009
18:55
Not Applicable
Rsca.dll
7.0.6001.22638
26,624
20-Feb-2010
23:31
x86
Rscaext.dll
6.0.6001.22638
38,912
20-Feb-2010
23:31
x86
Rscaext.xml
Not Applicable
8,363
01-Apr-2009
18:55
Not Applicable
W3ctrlps.dll
7.0.6001.22638
9,216
20-Feb-2010
23:31
x86
Wamregps.dll
7.0.6001.22638
10,752
20-Feb-2010
23:31
x86
Admwprox.dll
7.0.6002.18139
51,712
09-Nov-2009
12:28
x86
Ahadmin.dll
7.0.6002.18139
27,136
09-Nov-2009
12:28
x86
Appcmd.exe
7.0.6002.18139
154,112
09-Nov-2009
10:48
x86
Appcmd.xml
Not Applicable
3,654
03-Apr-2009
20:37
Not Applicable
Applicationhost.config
Not Applicable
7,990
03-Apr-2009
20:37
Not Applicable
Appobj.dll
7.0.6002.18139
311,808
09-Nov-2009
12:28
x86
Aspnetca.exe
7.0.6002.18139
182,784
09-Nov-2009
10:49
x86
Aspnet_schema.xml
Not Applicable
38,786
03-Apr-2009
20:38
Not Applicable
Fx_schema.xml
Not Applicable
27,145
03-Apr-2009
20:38
Not Applicable
Iismig.dll
7.0.6002.18139
209,408
09-Nov-2009
12:32
x86
Iisreg.dll
7.0.6002.18139
89,088
09-Nov-2009
12:30
x86
Iisres.dll
7.0.6002.18139
193,024
09-Nov-2009
10:48
x86
Iisreset.exe
7.0.6002.18139
14,848
09-Nov-2009
10:48
x86
Iisrstap.dll
7.0.6002.18139
8,192
09-Nov-2009
12:30
x86
Iisrstas.exe
7.0.6002.18139
31,232
09-Nov-2009
10:48
x86
Iisrtl.dll
7.0.6002.18139
153,600
09-Nov-2009
12:30
x86
Iissetup.exe
7.0.6002.18139
228,864
09-Nov-2009
10:49
x86
Iissyspr.dll
7.0.6002.18139
59,392
09-Nov-2009
12:30
x86
Iisutil.dll
7.0.6002.18139
202,752
09-Nov-2009
12:30
x86
Iis_schema.xml
Not Applicable
79,078
10-Jul-2009
07:03
Not Applicable
Nativerd.dll
7.0.6002.18139
331,264
09-Nov-2009
12:31
x86
Redirection.config
Not Applicable
490
03-Apr-2009
20:38
Not Applicable
Rsca.dll
7.0.6002.18139
26,624
09-Nov-2009
12:32
x86
Rscaext.dll
6.0.6002.18139
38,912
09-Nov-2009
12:32
x86
Rscaext.xml
Not Applicable
8,363
03-Apr-2009
20:38
Not Applicable
W3ctrlps.dll
7.0.6002.18139
9,216
09-Nov-2009
12:32
x86
Wamregps.dll
7.0.6002.18139
10,752
09-Nov-2009
12:32
x86
Admwprox.dll
7.0.6002.22343
51,712
20-Feb-2010
23:06
x86
Ahadmin.dll
7.0.6002.22343
27,136
20-Feb-2010
23:07
x86
Appcmd.exe
7.0.6002.22343
154,112
20-Feb-2010
21:22
x86
Appcmd.xml
Not Applicable
3,654
03-Apr-2009
20:43
Not Applicable
Applicationhost.config
Not Applicable
7,990
03-Apr-2009
20:43
Not Applicable
Appobj.dll
7.0.6002.22343
311,808
20-Feb-2010
23:07
x86
Aspnetca.exe
7.0.6002.22343
182,784
20-Feb-2010
21:22
x86
Aspnet_schema.xml
Not Applicable
38,809
09-Feb-2010
09:17
Not Applicable
Fx_schema.xml
Not Applicable
27,105
09-Feb-2010
09:17
Not Applicable
Iismig.dll
7.0.6002.22343
209,408
20-Feb-2010
23:11
x86
Iisreg.dll
7.0.6002.22343
89,088
20-Feb-2010
23:08
x86
Iisres.dll
7.0.6002.22343
193,024
20-Feb-2010
21:22
x86
Iisreset.exe
7.0.6002.22343
14,848
20-Feb-2010
21:21
x86
Iisrstap.dll
7.0.6002.22343
8,192
20-Feb-2010
23:08
x86
Iisrstas.exe
7.0.6002.22343
31,232
20-Feb-2010
21:21
x86
Iisrtl.dll
7.0.6002.22343
153,600
20-Feb-2010
23:08
x86
Iissetup.exe
7.0.6002.22343
228,864
20-Feb-2010
21:22
x86
Iissyspr.dll
7.0.6002.22343
59,392
20-Feb-2010
23:08
x86
Iisutil.dll
7.0.6002.22343
202,752
20-Feb-2010
23:08
x86
Iis_schema.xml
Not Applicable
79,610
20-Feb-2010
18:12
Not Applicable
Nativerd.dll
7.0.6002.22343
333,312
20-Feb-2010
23:10
x86
Redirection.config
Not Applicable
490
03-Apr-2009
20:45
Not Applicable
Rsca.dll
7.0.6002.22343
26,624
20-Feb-2010
23:11
x86
Rscaext.dll
6.0.6002.22343
38,912
20-Feb-2010
23:11
x86
Rscaext.xml
Not Applicable
8,363
03-Apr-2009
20:45
Not Applicable
W3ctrlps.dll
7.0.6002.22343
9,216
20-Feb-2010
23:12
x86
Wamregps.dll
7.0.6002.22343
10,752
20-Feb-2010
23:12
x86
Nshhttp.dll
6.0.6000.17022
24,064
20-Feb-2010
23:54
x86
Nshhttp.dll
6.0.6000.21227
24,064
20-Feb-2010
23:35
x86
Nshhttp.dll
6.0.6001.18428
24,064
20-Feb-2010
23:39
x86
Nshhttp.dll
6.0.6001.22638
24,064
20-Feb-2010
23:31
x86
Nshhttp.dll
6.0.6002.18210
24,064
20-Feb-2010
23:06
x86
Nshhttp.dll
6.0.6002.22343
24,064
20-Feb-2010
23:10
x86
Iisw3adm.dll
7.0.6000.17022
322,560
20-Feb-2010
23:52
x86
W3tp.dll
7.0.6000.17022
15,360
20-Feb-2010
23:55
x86
W3wphost.dll
7.0.6000.17022
39,424
20-Feb-2010
23:55
x86
Wbhstipm.dll
7.0.6000.17022
25,088
20-Feb-2010
23:55
x86
Wbhst_pm.dll
7.0.6000.17022
22,016
20-Feb-2010
23:55
x86
Iisw3adm.dll
7.0.6000.21227
322,560
20-Feb-2010
23:31
x86
W3tp.dll
7.0.6000.21227
15,360
20-Feb-2010
23:36
x86
W3wphost.dll
7.0.6000.21227
39,424
20-Feb-2010
23:36
x86
Wbhstipm.dll
7.0.6000.21227
25,088
20-Feb-2010
23:36
x86
Wbhst_pm.dll
7.0.6000.21227
22,016
20-Feb-2010
23:36
x86
Iisw3adm.dll
7.0.6001.18428
371,712
20-Feb-2010
23:37
x86
W3tp.dll
7.0.6001.18359
15,872
09-Nov-2009
13:23
x86
W3wphost.dll
7.0.6001.18359
46,592
09-Nov-2009
13:23
x86
Wbhstipm.dll
7.0.6001.18359
24,064
09-Nov-2009
13:23
x86
Wbhst_pm.dll
7.0.6001.18359
22,528
09-Nov-2009
13:23
x86
Iisw3adm.dll
7.0.6001.22638
371,712
20-Feb-2010
23:29
x86
W3tp.dll
7.0.6001.22638
15,872
20-Feb-2010
23:31
x86
W3wphost.dll
7.0.6001.22638
46,592
20-Feb-2010
23:31
x86
Wbhstipm.dll
7.0.6001.22638
24,064
20-Feb-2010
23:31
x86
Wbhst_pm.dll
7.0.6001.22638
22,528
20-Feb-2010
23:31
x86
Iisw3adm.dll
7.0.6002.18210
373,760
20-Feb-2010
23:05
x86
W3tp.dll
7.0.6002.18139
15,872
09-Nov-2009
12:32
x86
W3wphost.dll
7.0.6002.18139
47,616
09-Nov-2009
12:32
x86
Wbhstipm.dll
7.0.6002.18139
24,064
09-Nov-2009
12:32
x86
Wbhst_pm.dll
7.0.6002.18139
22,528
09-Nov-2009
12:32
x86
Iisw3adm.dll
7.0.6002.22343
374,272
20-Feb-2010
23:08
x86
W3tp.dll
7.0.6002.22343
15,872
20-Feb-2010
23:12
x86
W3wphost.dll
7.0.6002.22343
48,128
20-Feb-2010
23:12
x86
Wbhstipm.dll
7.0.6002.22343
24,064
20-Feb-2010
23:12
x86
Wbhst_pm.dll
7.0.6002.22343
22,528
20-Feb-2010
23:12
x86
For all supported x64-based versions of Windows Vista and Windows Server 2008
Collapse this tableExpand this table
File name
File version
File size
Date
Time
Platform
Httpapi.dll
6.0.6000.17022
33,792
21-Feb-2010
00:02
x64
Httpapi.dll
6.0.6000.21227
33,792
21-Feb-2010
05:45
x64
Httpapi.dll
6.0.6001.18428
33,792
20-Feb-2010
23:42
x64
Httpapi.dll
6.0.6001.22638
33,792
21-Feb-2010
00:05
x64
Httpapi.dll
6.0.6002.18210
33,792
20-Feb-2010
23:14
x64
Httpapi.dll
6.0.6002.22343
33,792
20-Feb-2010
23:10
x64
Http.sys
6.0.6000.17022
604,160
20-Feb-2010
21:50
x64
Http.sys
6.0.6000.21227
603,648
20-Feb-2010
21:49
x64
Http.sys
6.0.6001.18428
610,304
20-Feb-2010
21:40
x64
Http.sys
6.0.6001.22638
609,792
20-Feb-2010
21:46
x64
Http.sys
6.0.6002.18210
620,032
20-Feb-2010
21:30
x64
Http.sys
6.0.6002.22343
620,032
20-Feb-2010
21:20
x64
Authsspi.dll
7.0.6000.17022
42,496
20-Feb-2010
23:59
x64
Authsspi.dll
7.0.6000.21227
42,496
21-Feb-2010
05:42
x64
Authsspi.dll
7.0.6001.18428
49,152
20-Feb-2010
23:40
x64
Authsspi.dll
7.0.6001.22638
49,152
21-Feb-2010
00:03
x64
Authsspi.dll
7.0.6002.18210
49,152
20-Feb-2010
23:12
x64
Authsspi.dll
7.0.6002.22343
49,152
20-Feb-2010
23:08
x64
Hwebcore.dll
7.0.6000.17022
14,336
21-Feb-2010
00:02
x64
Iiscore.dll
7.0.6000.17022
269,312
21-Feb-2010
00:02
x64
Iisstart.htm
Not Applicable
689
02-Apr-2009
19:28
Not Applicable
W3dt.dll
7.0.6000.17022
32,256
21-Feb-2010
00:06
x64
Welcome.png
Not Applicable
184,946
02-Apr-2009
19:28
Not Applicable
Hwebcore.dll
7.0.6000.21227
14,336
21-Feb-2010
05:45
x64
Iiscore.dll
7.0.6000.21227
269,312
21-Feb-2010
05:45
x64
Iisstart.htm
Not Applicable
689
01-Apr-2009
16:02
Not Applicable
W3dt.dll
7.0.6000.21227
32,256
21-Feb-2010
05:50
x64
Welcome.png
Not Applicable
184,946
01-Apr-2009
16:02
Not Applicable
Hwebcore.dll
7.0.6001.18359
15,360
09-Nov-2009
13:44
x64
Iiscore.dll
7.0.6001.18428
296,448
20-Feb-2010
23:42
x64
Iisstart.htm
Not Applicable
689
24-Mar-2009
09:05
Not Applicable
W3dt.dll
7.0.6001.18428
31,744
20-Feb-2010
23:46
x64
Welcome.png
Not Applicable
184,946
24-Mar-2009
09:05
Not Applicable
Hwebcore.dll
7.0.6001.22638
15,360
21-Feb-2010
00:05
x64
Iiscore.dll
7.0.6001.22638
290,304
21-Feb-2010
00:05
x64
Iisstart.htm
Not Applicable
689
01-Apr-2009
15:59
Not Applicable
W3dt.dll
7.0.6001.22638
31,744
21-Feb-2010
00:08
x64
Welcome.png
Not Applicable
184,946
01-Apr-2009
16:00
Not Applicable
Hwebcore.dll
7.0.6002.18139
15,360
09-Nov-2009
12:59
x64
Iiscore.dll
7.0.6002.18210
297,472
20-Feb-2010
23:14
x64
Iisstart.htm
Not Applicable
689
03-Apr-2009
20:47
Not Applicable
W3dt.dll
7.0.6002.18210
31,232
20-Feb-2010
23:17
x64
Welcome.png
Not Applicable
184,946
03-Apr-2009
20:47
Not Applicable
Hwebcore.dll
7.0.6002.22343
15,360
20-Feb-2010
23:10
x64
Iiscore.dll
7.0.6002.22343
297,472
20-Feb-2010
23:10
x64
Iisstart.htm
Not Applicable
689
03-Apr-2009
20:41
Not Applicable
W3dt.dll
7.0.6002.22343
31,232
20-Feb-2010
23:13
x64
Welcome.png
Not Applicable
184,946
03-Apr-2009
20:41
Not Applicable
Isapi.dll
7.0.6000.17022
119,808
21-Feb-2010
00:02
x64
Isapi.dll
7.0.6000.21227
119,808
21-Feb-2010
05:46
x64
Isapi.dll
7.0.6001.18428
120,320
20-Feb-2010
23:42
x64
Isapi.dll
7.0.6001.22638
120,320
21-Feb-2010
00:05
x64
Isapi.dll
7.0.6002.18210
120,320
20-Feb-2010
23:14
x64
Isapi.dll
7.0.6002.22343
120,320
20-Feb-2010
23:10
x64
Admwprox.dll
7.0.6000.21227
54,784
21-Feb-2010
05:42
x64
Appcmd.exe
7.0.6000.21227
186,880
20-Feb-2010
22:08
x64
Appcmd.xml
Not Applicable
3,654
01-Apr-2009
15:59
Not Applicable
Applicationhost.config
Not Applicable
7,685
01-Apr-2009
15:59
Not Applicable
Appobj.dll
7.0.6000.21227
359,936
21-Feb-2010
05:42
x64
Aspnetca.exe
7.0.6000.21227
214,016
20-Feb-2010
22:08
x64
Aspnet_schema.xml
Not Applicable
38,890
01-Apr-2009
15:59
Not Applicable
Fx_schema.xml
Not Applicable
27,014
01-Apr-2009
16:00
Not Applicable
Iismig.dll
7.0.6000.21227
150,016
21-Feb-2010
05:49
x64
Iisreg.dll
7.0.6000.21227
111,616
21-Feb-2010
05:45
x64
Iisres.dll
7.0.6000.21227
183,808
20-Feb-2010
20:39
x64
Iisreset.exe
7.0.6000.21227
18,432
20-Feb-2010
22:07
x64
Iisrstap.dll
7.0.6000.21227
11,264
21-Feb-2010
05:45
x64
Iisrstas.exe
7.0.6000.21227
34,816
20-Feb-2010
22:07
x64
Iisrtl.dll
7.0.6000.21227
185,856
21-Feb-2010
05:45
x64
Iissetup.exe
7.0.6000.21227
241,152
20-Feb-2010
22:08
x64
Iissyspr.dll
7.0.6000.21227
36,352
21-Feb-2010
05:45
x64
Iisutil.dll
7.0.6000.21227
276,480
21-Feb-2010
05:45
x64
Iis_schema.xml
Not Applicable
67,868
21-Jul-2009
09:13
Not Applicable
Nativerd.dll
7.0.6000.21227
310,272
21-Feb-2010
05:48
x64
Rsca.dll
7.0.6000.21227
31,232
21-Feb-2010
05:49
x64
W3ctrlps.dll
7.0.6000.21227
13,824
21-Feb-2010
05:50
x64
Wamregps.dll
7.0.6000.21227
15,872
21-Feb-2010
05:50
x64
Admwprox.dll
7.0.6001.18359
54,784
09-Nov-2009
13:42
x64
Ahadmin.dll
7.0.6001.18359
61,440
09-Nov-2009
13:42
x64
Appcmd.exe
7.0.6001.18359
190,976
09-Nov-2009
11:48
x64
Appcmd.xml
Not Applicable
3,654
24-Mar-2009
09:02
Not Applicable
Applicationhost.config
Not Applicable
7,989
24-Mar-2009
09:02
Not Applicable
Appobj.dll
7.0.6001.18359
378,368
09-Nov-2009
13:43
x64
Aspnetca.exe
7.0.6001.18359
218,624
09-Nov-2009
11:48
x64
Aspnet_schema.xml
Not Applicable
38,786
24-Mar-2009
09:03
Not Applicable
Fx_schema.xml
Not Applicable
26,971
24-Mar-2009
09:03
Not Applicable
Iismig.dll
7.0.6001.18359
242,688
09-Nov-2009
13:48
x64
Iisreg.dll
7.0.6001.18359
111,616
09-Nov-2009
13:45
x64
Iisres.dll
7.0.6001.18359
193,024
09-Nov-2009
11:48
x64
Iisreset.exe
7.0.6001.18359
16,896
09-Nov-2009
11:47
x64
Iisrstap.dll
7.0.6001.18359
11,264
09-Nov-2009
13:45
x64
Iisrstas.exe
7.0.6001.18359
34,816
09-Nov-2009
11:47
x64
Iisrtl.dll
7.0.6001.18359
192,512
09-Nov-2009
13:45
x64
Iissetup.exe
7.0.6001.18359
280,064
09-Nov-2009
11:48
x64
Iissyspr.dll
7.0.6001.18359
66,560
09-Nov-2009
13:45
x64
Iisutil.dll
7.0.6001.18359
275,456
09-Nov-2009
13:45
x64
Iis_schema.xml
Not Applicable
76,318
11-Jul-2009
14:24
Not Applicable
Nativerd.dll
7.0.6001.18359
416,768
09-Nov-2009
13:46
x64
Redirection.config
Not Applicable
490
24-Mar-2009
09:03
Not Applicable
Rsca.dll
7.0.6001.18359
31,232
09-Nov-2009
13:48
x64
Rscaext.dll
6.0.6001.18359
44,032
09-Nov-2009
13:48
x64
Rscaext.xml
Not Applicable
8,363
24-Mar-2009
09:03
Not Applicable
W3ctrlps.dll
7.0.6001.18359
13,824
09-Nov-2009
13:48
x64
Wamregps.dll
7.0.6001.18359
15,872
09-Nov-2009
13:48
x64
Admwprox.dll
7.0.6001.22638
54,784
21-Feb-2010
00:03
x64
Ahadmin.dll
7.0.6001.22638
61,440
21-Feb-2010
00:03
x64
Appcmd.exe
7.0.6001.22638
191,488
20-Feb-2010
22:03
x64
Appcmd.xml
Not Applicable
3,654
01-Apr-2009
15:56
Not Applicable
Applicationhost.config
Not Applicable
7,989
01-Apr-2009
15:56
Not Applicable
Appobj.dll
7.0.6001.22638
379,392
21-Feb-2010
00:03
x64
Aspnetca.exe
7.0.6001.22638
218,624
20-Feb-2010
22:03
x64
Aspnet_schema.xml
Not Applicable
38,786
01-Apr-2009
15:56
Not Applicable
Fx_schema.xml
Not Applicable
26,943
08-May-2009
08:11
Not Applicable
Iismig.dll
7.0.6001.22638
242,688
21-Feb-2010
00:08
x64
Iisreg.dll
7.0.6001.22638
111,616
21-Feb-2010
00:05
x64
Iisres.dll
7.0.6001.22638
193,024
20-Feb-2010
22:02
x64
Iisreset.exe
7.0.6001.22638
16,896
20-Feb-2010
22:02
x64
Iisrstap.dll
7.0.6001.22638
11,264
21-Feb-2010
00:05
x64
Iisrstas.exe
7.0.6001.22638
34,816
20-Feb-2010
22:02
x64
Iisrtl.dll
7.0.6001.22638
192,512
21-Feb-2010
00:05
x64
Iissetup.exe
7.0.6001.22638
280,064
20-Feb-2010
22:03
x64
Iissyspr.dll
7.0.6001.22638
66,560
21-Feb-2010
00:05
x64
Iisutil.dll
7.0.6001.22638
275,456
21-Feb-2010
00:05
x64
Iis_schema.xml
Not Applicable
79,213
20-Feb-2010
18:10
Not Applicable
Nativerd.dll
7.0.6001.22638
416,256
21-Feb-2010
00:07
x64
Redirection.config
Not Applicable
490
01-Apr-2009
15:56
Not Applicable
Rsca.dll
7.0.6001.22638
31,232
21-Feb-2010
00:08
x64
Rscaext.dll
6.0.6001.22638
44,032
21-Feb-2010
00:08
x64
Rscaext.xml
Not Applicable
8,363
01-Apr-2009
15:56
Not Applicable
W3ctrlps.dll
7.0.6001.22638
13,824
21-Feb-2010
00:08
x64
Wamregps.dll
7.0.6001.22638
15,872
21-Feb-2010
00:08
x64
Admwprox.dll
7.0.6002.18139
54,784
09-Nov-2009
12:58
x64
Ahadmin.dll
7.0.6002.18139
61,440
09-Nov-2009
12:58
x64
Appcmd.exe
7.0.6002.18139
191,488
09-Nov-2009
11:20
x64
Appcmd.xml
Not Applicable
3,654
03-Apr-2009
20:41
Not Applicable
Applicationhost.config
Not Applicable
7,990
03-Apr-2009
20:41
Not Applicable
Appobj.dll
7.0.6002.18139
379,392
09-Nov-2009
12:58
x64
Aspnetca.exe
7.0.6002.18139
218,624
09-Nov-2009
11:20
x64
Aspnet_schema.xml
Not Applicable
38,786
03-Apr-2009
20:42
Not Applicable
Fx_schema.xml
Not Applicable
27,145
03-Apr-2009
20:42
Not Applicable
Iismig.dll
7.0.6002.18139
242,688
09-Nov-2009
13:02
x64
Iisreg.dll
7.0.6002.18139
111,616
09-Nov-2009
12:59
x64
Iisres.dll
7.0.6002.18139
193,024
09-Nov-2009
11:20
x64
Iisreset.exe
7.0.6002.18139
16,896
09-Nov-2009
11:19
x64
Iisrstap.dll
7.0.6002.18139
11,264
09-Nov-2009
12:59
x64
Iisrstas.exe
7.0.6002.18139
34,816
09-Nov-2009
11:20
x64
Iisrtl.dll
7.0.6002.18139
192,512
09-Nov-2009
12:59
x64
Iissetup.exe
7.0.6002.18139
280,064
09-Nov-2009
11:20
x64
Iissyspr.dll
7.0.6002.18139
66,560
09-Nov-2009
12:59
x64
Iisutil.dll
7.0.6002.18139
276,992
09-Nov-2009
12:59
x64
Iis_schema.xml
Not Applicable
79,078
10-Jul-2009
07:03
Not Applicable
Nativerd.dll
7.0.6002.18139
415,232
09-Nov-2009
13:01
x64
Redirection.config
Not Applicable
490
03-Apr-2009
20:42
Not Applicable
Rsca.dll
7.0.6002.18139
31,232
09-Nov-2009
13:02
x64
Rscaext.dll
6.0.6002.18139
44,032
09-Nov-2009
13:02
x64
Rscaext.xml
Not Applicable
8,363
03-Apr-2009
20:42
Not Applicable
W3ctrlps.dll
7.0.6002.18139
13,824
09-Nov-2009
13:03
x64
Wamregps.dll
7.0.6002.18139
15,872
09-Nov-2009
13:03
x64
Admwprox.dll
7.0.6002.22343
54,784
20-Feb-2010
23:08
x64
Ahadmin.dll
7.0.6002.22343
61,440
20-Feb-2010
23:08
x64
Appcmd.exe
7.0.6002.22343
191,488
20-Feb-2010
21:36
x64
Appcmd.xml
Not Applicable
3,654
03-Apr-2009
20:38
Not Applicable
Applicationhost.config
Not Applicable
7,990
03-Apr-2009
20:38
Not Applicable
Appobj.dll
7.0.6002.22343
379,392
20-Feb-2010
23:08
x64
Aspnetca.exe
7.0.6002.22343
218,624
20-Feb-2010
21:36
x64
Aspnet_schema.xml
Not Applicable
38,809
09-Feb-2010
09:17
Not Applicable
Fx_schema.xml
Not Applicable
27,105
09-Feb-2010
09:17
Not Applicable
Iismig.dll
7.0.6002.22343
242,688
20-Feb-2010
23:12
x64
Iisreg.dll
7.0.6002.22343
111,616
20-Feb-2010
23:10
x64
Iisres.dll
7.0.6002.22343
193,024
20-Feb-2010
21:36
x64
Iisreset.exe
7.0.6002.22343
16,896
20-Feb-2010
21:35
x64
Iisrstap.dll
7.0.6002.22343
11,264
20-Feb-2010
23:10
x64
Iisrstas.exe
7.0.6002.22343
34,816
20-Feb-2010
21:35
x64
Iisrtl.dll
7.0.6002.22343
192,512
20-Feb-2010
23:10
x64
Iissetup.exe
7.0.6002.22343
280,064
20-Feb-2010
21:36
x64
Iissyspr.dll
7.0.6002.22343
66,560
20-Feb-2010
23:10
x64
Iisutil.dll
7.0.6002.22343
276,992
20-Feb-2010
23:10
x64
Iis_schema.xml
Not Applicable
79,610
20-Feb-2010
18:11
Not Applicable
Nativerd.dll
7.0.6002.22343
417,280
20-Feb-2010
23:11
x64
Redirection.config
Not Applicable
490
03-Apr-2009
20:39
Not Applicable
Rsca.dll
7.0.6002.22343
31,232
20-Feb-2010
23:12
x64
Rscaext.dll
6.0.6002.22343
44,032
20-Feb-2010
23:12
x64
Rscaext.xml
Not Applicable
8,363
03-Apr-2009
20:39
Not Applicable
W3ctrlps.dll
7.0.6002.22343
13,824
20-Feb-2010
23:13
x64
Wamregps.dll
7.0.6002.22343
15,872
20-Feb-2010
23:13
x64
Nshhttp.dll
6.0.6000.17022
32,768
21-Feb-2010
00:05
x64
Nshhttp.dll
6.0.6000.21227
32,768
21-Feb-2010
05:49
x64
Nshhttp.dll
6.0.6001.18428
32,768
20-Feb-2010
23:44
x64
Nshhttp.dll
6.0.6001.22638
32,768
21-Feb-2010
00:07
x64
Nshhttp.dll
6.0.6002.18210
32,768
20-Feb-2010
23:15
x64
Nshhttp.dll
6.0.6002.22343
32,768
20-Feb-2010
23:12
x64
Iisw3adm.dll
7.0.6000.17022
368,640
21-Feb-2010
00:02
x64
W3tp.dll
7.0.6000.17022
17,920
21-Feb-2010
00:06
x64
W3wphost.dll
7.0.6000.17022
43,520
21-Feb-2010
00:06
x64
Wbhstipm.dll
7.0.6000.17022
29,696
21-Feb-2010
00:07
x64
Wbhst_pm.dll
7.0.6000.17022
24,064
21-Feb-2010
00:07
x64
Iisw3adm.dll
7.0.6000.21227
368,640
21-Feb-2010
05:45
x64
W3tp.dll
7.0.6000.21227
17,920
21-Feb-2010
05:50
x64
W3wphost.dll
7.0.6000.21227
43,520
21-Feb-2010
05:50
x64
Wbhstipm.dll
7.0.6000.21227
29,696
21-Feb-2010
05:50
x64
Wbhst_pm.dll
7.0.6000.21227
24,064
21-Feb-2010
05:50
x64
Iisw3adm.dll
7.0.6001.18428
424,960
20-Feb-2010
23:42
x64
W3tp.dll
7.0.6001.18359
18,432
09-Nov-2009
13:48
x64
W3wphost.dll
7.0.6001.18359
50,176
09-Nov-2009
13:48
x64
Wbhstipm.dll
7.0.6001.18359
28,672
09-Nov-2009
13:48
x64
Wbhst_pm.dll
7.0.6001.18359
24,064
09-Nov-2009
13:48
x64
Iisw3adm.dll
7.0.6001.22638
424,960
21-Feb-2010
00:05
x64
W3tp.dll
7.0.6001.22638
18,432
21-Feb-2010
00:08
x64
W3wphost.dll
7.0.6001.22638
50,688
21-Feb-2010
00:08
x64
Wbhstipm.dll
7.0.6001.22638
28,672
21-Feb-2010
00:08
x64
Wbhst_pm.dll
7.0.6001.22638
24,064
21-Feb-2010
00:08
x64
Iisw3adm.dll
7.0.6002.18210
427,008
20-Feb-2010
23:14
x64
W3tp.dll
7.0.6002.18139
18,432
09-Nov-2009
13:03
x64
W3wphost.dll
7.0.6002.18139
51,712
09-Nov-2009
13:03
x64
Wbhstipm.dll
7.0.6002.18139
28,672
09-Nov-2009
13:03
x64
Wbhst_pm.dll
7.0.6002.18139
24,064
09-Nov-2009
13:03
x64
Iisw3adm.dll
7.0.6002.22343
427,520
20-Feb-2010
23:10
x64
W3tp.dll
7.0.6002.22343
18,432
20-Feb-2010
23:13
x64
W3wphost.dll
7.0.6002.22343
51,712
20-Feb-2010
23:13
x64
Wbhstipm.dll
7.0.6002.22343
28,672
20-Feb-2010
23:13
x64
Wbhst_pm.dll
7.0.6002.22343
24,064
20-Feb-2010
23:13
x64
Authsspi.dll
7.0.6000.17022
36,352
20-Feb-2010
23:50
x86
Authsspi.dll
7.0.6000.21227
36,352
20-Feb-2010
23:30
x86
Authsspi.dll
7.0.6001.18428
43,520
20-Feb-2010
23:35
x86
Authsspi.dll
7.0.6001.22638
43,520
20-Feb-2010
23:27
x86
Authsspi.dll
7.0.6002.18210
43,520
20-Feb-2010
23:04
x86
Authsspi.dll
7.0.6002.22343
43,520
20-Feb-2010
23:07
x86
Hwebcore.dll
7.0.6000.17022
12,288
20-Feb-2010
23:51
x86
Iiscore.dll
7.0.6000.17022
164,864
20-Feb-2010
23:52
x86
W3dt.dll
7.0.6000.17022
23,552
20-Feb-2010
23:55
x86
Hwebcore.dll
7.0.6000.21227
12,288
20-Feb-2010
23:31
x86
Iiscore.dll
7.0.6000.21227
164,864
20-Feb-2010
23:31
x86
W3dt.dll
7.0.6000.21227
23,552
20-Feb-2010
23:36
x86
Hwebcore.dll
7.0.6001.18359
12,800
09-Nov-2009
13:20
x86
Iiscore.dll
7.0.6001.18428
189,952
20-Feb-2010
23:37
x86
W3dt.dll
7.0.6001.18428
23,552
20-Feb-2010
23:40
x86
Hwebcore.dll
7.0.6001.22638
12,800
20-Feb-2010
23:29
x86
Iiscore.dll
7.0.6001.22638
190,976
20-Feb-2010
23:29
x86
W3dt.dll
7.0.6001.22638
23,552
20-Feb-2010
23:31
x86
Hwebcore.dll
7.0.6002.18139
12,800
09-Nov-2009
12:30
x86
Iiscore.dll
7.0.6002.18210
190,976
20-Feb-2010
23:05
x86
W3dt.dll
7.0.6002.18210
23,552
20-Feb-2010
23:07
x86
Hwebcore.dll
7.0.6002.22343
12,800
20-Feb-2010
23:08
x86
Iiscore.dll
7.0.6002.22343
190,976
20-Feb-2010
23:08
x86
W3dt.dll
7.0.6002.22343
23,552
20-Feb-2010
23:12
x86
Isapi.dll
7.0.6000.17022
107,008
20-Feb-2010
23:52
x86
Isapi.dll
7.0.6000.21227
107,008
20-Feb-2010
23:32
x86
Isapi.dll
7.0.6001.18428
107,008
20-Feb-2010
23:37
x86
Isapi.dll
7.0.6001.22638
107,008
20-Feb-2010
23:29
x86
Isapi.dll
7.0.6002.18210
107,008
20-Feb-2010
23:05
x86
Isapi.dll
7.0.6002.22343
107,008
20-Feb-2010
23:08
x86
Admwprox.dll
7.0.6000.21227
51,200
20-Feb-2010
23:30
x86
Appcmd.exe
7.0.6000.21227
150,528
20-Feb-2010
21:31
x86
Appcmd.xml
Not Applicable
3,654
01-Apr-2009
15:58
Not Applicable
Appobj.dll
7.0.6000.21227
297,472
20-Feb-2010
23:30
x86
Aspnetca.exe
7.0.6000.21227
178,176
20-Feb-2010
21:31
x86
Iismig.dll
7.0.6000.21227
128,512
20-Feb-2010
23:35
x86
Iisreg.dll
7.0.6000.21227
89,088
20-Feb-2010
23:31
x86
Iisres.dll
7.0.6000.21227
183,808
20-Feb-2010
20:21
x86
Iisreset.exe
7.0.6000.21227
14,848
20-Feb-2010
21:31
x86
Iisrstap.dll
7.0.6000.21227
8,192
20-Feb-2010
23:31
x86
Iisrtl.dll
7.0.6000.21227
148,480
20-Feb-2010
23:31
x86
Iissetup.exe
7.0.6000.21227
195,072
20-Feb-2010
21:31
x86
Iissyspr.dll
7.0.6000.21227
31,232
20-Feb-2010
23:31
x86
Iisutil.dll
7.0.6000.21227
189,952
20-Feb-2010
23:31
x86
Nativerd.dll
7.0.6000.21227
236,032
20-Feb-2010
23:34
x86
Rsca.dll
7.0.6000.21227
26,624
20-Feb-2010
23:35
x86
W3ctrlps.dll
7.0.6000.21227
9,216
20-Feb-2010
23:35
x86
Wamregps.dll
7.0.6000.21227
10,752
20-Feb-2010
23:36
x86
Admwprox.dll
7.0.6001.18428
51,712
20-Feb-2010
23:35
x86
Ahadmin.dll
7.0.6001.18428
27,136
20-Feb-2010
23:35
x86
Appcmd.exe
7.0.6001.18428
154,112
20-Feb-2010
21:33
x86
Appcmd.xml
Not Applicable
3,654
27-Mar-2009
08:24
Not Applicable
Appobj.dll
7.0.6001.18428
311,296
20-Feb-2010
23:35
x86
Aspnetca.exe
7.0.6001.18428
182,784
20-Feb-2010
21:34
x86
Iismig.dll
7.0.6001.18428
209,408
20-Feb-2010
23:40
x86
Iisreg.dll
7.0.6001.18428
89,088
20-Feb-2010
23:37
x86
Iisres.dll
7.0.6001.18428
193,024
20-Feb-2010
21:33
x86
Iisreset.exe
7.0.6001.18428
14,848
20-Feb-2010
21:33
x86
Iisrstap.dll
7.0.6001.18428
8,192
20-Feb-2010
23:37
x86
Iisrtl.dll
7.0.6001.18428
153,600
20-Feb-2010
23:37
x86
Iissetup.exe
7.0.6001.18428
228,864
20-Feb-2010
21:34
x86
Iissyspr.dll
7.0.6001.18428
59,392
20-Feb-2010
23:37
x86
Iisutil.dll
7.0.6001.18428
202,752
20-Feb-2010
23:37
x86
Nativerd.dll
7.0.6001.18428
326,656
20-Feb-2010
23:39
x86
Rsca.dll
7.0.6001.18428
26,624
20-Feb-2010
23:40
x86
Rscaext.dll
6.0.6001.18428
38,912
20-Feb-2010
23:40
x86
W3ctrlps.dll
7.0.6001.18428
9,216
20-Feb-2010
23:40
x86
Wamregps.dll
7.0.6001.18428
10,752
20-Feb-2010
23:40
x86
Admwprox.dll
7.0.6001.22638
51,712
20-Feb-2010
23:26
x86
Ahadmin.dll
7.0.6001.22638
27,136
20-Feb-2010
23:26
x86
Appcmd.exe
7.0.6001.22638
154,112
20-Feb-2010
21:35
x86
Appcmd.xml
Not Applicable
3,654
01-Apr-2009
18:54
Not Applicable
Appobj.dll
7.0.6001.22638
311,808
20-Feb-2010
23:26
x86
Aspnetca.exe
7.0.6001.22638
182,784
20-Feb-2010
21:35
x86
Iismig.dll
7.0.6001.22638
209,408
20-Feb-2010
23:31
x86
Iisreg.dll
7.0.6001.22638
89,088
20-Feb-2010
23:29
x86
Iisres.dll
7.0.6001.22638
193,024
20-Feb-2010
21:35
x86
Iisreset.exe
7.0.6001.22638
14,848
20-Feb-2010
21:35
x86
Iisrstap.dll
7.0.6001.22638
8,192
20-Feb-2010
23:29
x86
Iisrtl.dll
7.0.6001.22638
153,600
20-Feb-2010
23:29
x86
Iissetup.exe
7.0.6001.22638
228,864
20-Feb-2010
21:35
x86
Iissyspr.dll
7.0.6001.22638
59,392
20-Feb-2010
23:29
x86
Iisutil.dll
7.0.6001.22638
202,752
20-Feb-2010
23:29
x86
Nativerd.dll
7.0.6001.22638
331,776
20-Feb-2010
23:30
x86
Rsca.dll
7.0.6001.22638
26,624
20-Feb-2010
23:31
x86
Rscaext.dll
6.0.6001.22638
38,912
20-Feb-2010
23:31
x86
W3ctrlps.dll
7.0.6001.22638
9,216
20-Feb-2010
23:31
x86
Wamregps.dll
7.0.6001.22638
10,752
20-Feb-2010
23:31
x86
Admwprox.dll
7.0.6002.18210
51,712
20-Feb-2010
23:03
x86
Ahadmin.dll
7.0.6002.18210
27,136
20-Feb-2010
23:03
x86
Appcmd.exe
7.0.6002.18210
154,112
20-Feb-2010
21:05
x86
Appcmd.xml
Not Applicable
3,654
03-Apr-2009
20:37
Not Applicable
Appobj.dll
7.0.6002.18210
311,808
20-Feb-2010
23:03
x86
Aspnetca.exe
7.0.6002.18210
182,784
20-Feb-2010
21:05
x86
Iismig.dll
7.0.6002.18210
209,408
20-Feb-2010
23:07
x86
Iisreg.dll
7.0.6002.18210
89,088
20-Feb-2010
23:05
x86
Iisres.dll
7.0.6002.18210
193,024
20-Feb-2010
21:05
x86
Iisreset.exe
7.0.6002.18210
14,848
20-Feb-2010
21:05
x86
Iisrstap.dll
7.0.6002.18210
8,192
20-Feb-2010
23:05
x86
Iisrtl.dll
7.0.6002.18210
153,600
20-Feb-2010
23:05
x86
Iissetup.exe
7.0.6002.18210
228,864
20-Feb-2010
21:05
x86
Iissyspr.dll
7.0.6002.18210
59,392
20-Feb-2010
23:05
x86
Iisutil.dll
7.0.6002.18210
202,752
20-Feb-2010
23:05
x86
Nativerd.dll
7.0.6002.18210
331,264
20-Feb-2010
23:06
x86
Rsca.dll
7.0.6002.18210
26,624
20-Feb-2010
23:07
x86
Rscaext.dll
6.0.6002.18210
38,912
20-Feb-2010
23:07
x86
W3ctrlps.dll
7.0.6002.18210
9,216
20-Feb-2010
23:07
x86
Wamregps.dll
7.0.6002.18210
10,752
20-Feb-2010
23:07
x86
Admwprox.dll
7.0.6002.22343
51,712
20-Feb-2010
23:06
x86
Ahadmin.dll
7.0.6002.22343
27,136
20-Feb-2010
23:07
x86
Appcmd.exe
7.0.6002.22343
154,112
20-Feb-2010
21:22
x86
Appcmd.xml
Not Applicable
3,654
03-Apr-2009
20:43
Not Applicable
Appobj.dll
7.0.6002.22343
311,808
20-Feb-2010
23:07
x86
Aspnetca.exe
7.0.6002.22343
182,784
20-Feb-2010
21:22
x86
Iismig.dll
7.0.6002.22343
209,408
20-Feb-2010
23:11
x86
Iisreg.dll
7.0.6002.22343
89,088
20-Feb-2010
23:08
x86
Iisres.dll
7.0.6002.22343
193,024
20-Feb-2010
21:22
x86
Iisreset.exe
7.0.6002.22343
14,848
20-Feb-2010
21:21
x86
Iisrstap.dll
7.0.6002.22343
8,192
20-Feb-2010
23:08
x86
Iisrtl.dll
7.0.6002.22343
153,600
20-Feb-2010
23:08
x86
Iissetup.exe
7.0.6002.22343
228,864
20-Feb-2010
21:22
x86
Iissyspr.dll
7.0.6002.22343
59,392
20-Feb-2010
23:08
x86
Iisutil.dll
7.0.6002.22343
202,752
20-Feb-2010
23:08
x86
Nativerd.dll
7.0.6002.22343
333,312
20-Feb-2010
23:10
x86
Rsca.dll
7.0.6002.22343
26,624
20-Feb-2010
23:11
x86
Rscaext.dll
6.0.6002.22343
38,912
20-Feb-2010
23:11
x86
W3ctrlps.dll
7.0.6002.22343
9,216
20-Feb-2010
23:12
x86
Wamregps.dll
7.0.6002.22343
10,752
20-Feb-2010
23:12
x86
Iisw3adm.dll
7.0.6000.17022
322,560
20-Feb-2010
23:52
x86
W3tp.dll
7.0.6000.17022
15,360
20-Feb-2010
23:55
x86
W3wphost.dll
7.0.6000.17022
39,424
20-Feb-2010
23:55
x86
Wbhstipm.dll
7.0.6000.17022
25,088
20-Feb-2010
23:55
x86
Wbhst_pm.dll
7.0.6000.17022
22,016
20-Feb-2010
23:55
x86
Iisw3adm.dll
7.0.6000.21227
322,560
20-Feb-2010
23:31
x86
W3tp.dll
7.0.6000.21227
15,360
20-Feb-2010
23:36
x86
W3wphost.dll
7.0.6000.21227
39,424
20-Feb-2010
23:36
x86
Wbhstipm.dll
7.0.6000.21227
25,088
20-Feb-2010
23:36
x86
Wbhst_pm.dll
7.0.6000.21227
22,016
20-Feb-2010
23:36
x86
Iisw3adm.dll
7.0.6001.18428
371,712
20-Feb-2010
23:37
x86
W3tp.dll
7.0.6001.18359
15,872
09-Nov-2009
13:23
x86
W3wphost.dll
7.0.6001.18359
46,592
09-Nov-2009
13:23
x86
Wbhstipm.dll
7.0.6001.18359
24,064
09-Nov-2009
13:23
x86
Wbhst_pm.dll
7.0.6001.18359
22,528
09-Nov-2009
13:23
x86
Iisw3adm.dll
7.0.6001.22638
371,712
20-Feb-2010
23:29
x86
W3tp.dll
7.0.6001.22638
15,872
20-Feb-2010
23:31
x86
W3wphost.dll
7.0.6001.22638
46,592
20-Feb-2010
23:31
x86
Wbhstipm.dll
7.0.6001.22638
24,064
20-Feb-2010
23:31
x86
Wbhst_pm.dll
7.0.6001.22638
22,528
20-Feb-2010
23:31
x86
Iisw3adm.dll
7.0.6002.18210
373,760
20-Feb-2010
23:05
x86
W3tp.dll
7.0.6002.18139
15,872
09-Nov-2009
12:32
x86
W3wphost.dll
7.0.6002.18139
47,616
09-Nov-2009
12:32
x86
Wbhstipm.dll
7.0.6002.18139
24,064
09-Nov-2009
12:32
x86
Wbhst_pm.dll
7.0.6002.18139
22,528
09-Nov-2009
12:32
x86
Iisw3adm.dll
7.0.6002.22343
374,272
20-Feb-2010
23:08
x86
W3tp.dll
7.0.6002.22343
15,872
20-Feb-2010
23:12
x86
W3wphost.dll
7.0.6002.22343
48,128
20-Feb-2010
23:12
x86
Wbhstipm.dll
7.0.6002.22343
24,064
20-Feb-2010
23:12
x86
Wbhst_pm.dll
7.0.6002.22343
22,528
20-Feb-2010
23:12
x86
Httpapi.dll
6.0.6000.17022
31,232
20-Feb-2010
23:51
x86
Httpapi.dll
6.0.6000.21227
31,232
20-Feb-2010
23:31
x86
Httpapi.dll
6.0.6001.18428
31,232
20-Feb-2010
23:37
x86
Httpapi.dll
6.0.6001.22638
31,232
20-Feb-2010
23:29
x86
Httpapi.dll
6.0.6002.18210
30,720
20-Feb-2010
23:05
x86
Httpapi.dll
6.0.6002.22343
30,720
20-Feb-2010
23:08
x86
Nshhttp.dll
6.0.6000.17022
24,064
20-Feb-2010
23:54
x86
Nshhttp.dll
6.0.6000.21227
24,064
20-Feb-2010
23:35
x86
Nshhttp.dll
6.0.6001.18428
24,064
20-Feb-2010
23:39
x86
Nshhttp.dll
6.0.6001.22638
24,064
20-Feb-2010
23:31
x86
Nshhttp.dll
6.0.6002.18210
24,064
20-Feb-2010
23:06
x86
Nshhttp.dll
6.0.6002.22343
24,064
20-Feb-2010
23:10
x86
For all supported IA-64-based versions of Windows Server 2008
Collapse this tableExpand this table
File name
File version
File size
Date
Time
Platform
Httpapi.dll
6.0.6001.18428
70,656
20-Feb-2010
23:41
IA-64
Httpapi.dll
6.0.6001.22638
70,656
20-Feb-2010
23:28
IA-64
Httpapi.dll
6.0.6002.18210
70,656
20-Feb-2010
22:56
IA-64
Httpapi.dll
6.0.6002.22343
70,656
20-Feb-2010
22:56
IA-64
Http.sys
6.0.6001.18428
1,176,576
20-Feb-2010
21:42
IA-64
Http.sys
6.0.6001.22638
1,176,576
20-Feb-2010
21:33
IA-64
Http.sys
6.0.6002.18210
1,176,576
20-Feb-2010
21:17
IA-64
Http.sys
6.0.6002.22343
1,176,576
20-Feb-2010
21:16
IA-64
Authsspi.dll
7.0.6001.18428
112,640
20-Feb-2010
23:39
IA-64
Authsspi.dll
7.0.6001.22638
112,640
20-Feb-2010
23:25
IA-64
Authsspi.dll
7.0.6002.18210
112,640
20-Feb-2010
22:54
IA-64
Authsspi.dll
7.0.6002.22343
112,640
20-Feb-2010
22:55
IA-64
Hwebcore.dll
7.0.6001.18359
37,376
09-Nov-2009
13:25
IA-64
Iiscore.dll
7.0.6001.18428
543,744
20-Feb-2010
23:41
IA-64
Iisstart.htm
Not Applicable
689
27-Mar-2009
08:27
Not Applicable
W3dt.dll
7.0.6001.18428
52,224
20-Feb-2010
23:46
IA-64
Welcome.png
Not Applicable
184,946
27-Mar-2009
08:27
Not Applicable
Hwebcore.dll
7.0.6001.22638
37,376
20-Feb-2010
23:28
IA-64
Iiscore.dll
7.0.6001.22638
545,792
20-Feb-2010
23:28
IA-64
Iisstart.htm
Not Applicable
689
01-Apr-2009
16:00
Not Applicable
W3dt.dll
7.0.6001.22638
52,736
20-Feb-2010
23:32
IA-64
Welcome.png
Not Applicable
184,946
01-Apr-2009
16:00
Not Applicable
Hwebcore.dll
7.0.6002.18139
37,376
09-Nov-2009
12:35
IA-64
Iiscore.dll
7.0.6002.18210
545,792
20-Feb-2010
22:56
IA-64
Iisstart.htm
Not Applicable
689
03-Apr-2009
20:47
Not Applicable
W3dt.dll
7.0.6002.18210
52,224
20-Feb-2010
22:59
IA-64
Welcome.png
Not Applicable
184,946
03-Apr-2009
20:47
Not Applicable
Hwebcore.dll
7.0.6002.22343
37,376
20-Feb-2010
22:56
IA-64
Iiscore.dll
7.0.6002.22343
545,792
20-Feb-2010
22:56
IA-64
Iisstart.htm
Not Applicable
689
03-Apr-2009
20:42
Not Applicable
W3dt.dll
7.0.6002.22343
52,736
20-Feb-2010
23:01
IA-64
Welcome.png
Not Applicable
184,946
03-Apr-2009
20:42
Not Applicable
Isapi.dll
7.0.6001.18428
241,152
20-Feb-2010
23:42
IA-64
Isapi.dll
7.0.6001.22638
241,152
20-Feb-2010
23:28
IA-64
Isapi.dll
7.0.6002.18210
241,152
20-Feb-2010
22:56
IA-64
Isapi.dll
7.0.6002.22343
241,152
20-Feb-2010
22:57
IA-64
Admwprox.dll
7.0.6001.18359
119,808
09-Nov-2009
13:23
IA-64
Ahadmin.dll
7.0.6001.18359
82,432
09-Nov-2009
13:23
IA-64
Appcmd.exe
7.0.6001.18359
404,480
09-Nov-2009
11:43
IA-64
Appcmd.xml
Not Applicable
3,654
27-Mar-2009
08:23
Not Applicable
Applicationhost.config
Not Applicable
7,989
27-Mar-2009
08:23
Not Applicable
Appobj.dll
7.0.6001.18359
726,016
09-Nov-2009
13:23
IA-64
Aspnetca.exe
7.0.6001.18359
432,128
09-Nov-2009
11:44
IA-64
Aspnet_schema.xml
Not Applicable
38,786
27-Mar-2009
08:24
Not Applicable
Fx_schema.xml
Not Applicable
26,971
27-Mar-2009
08:24
Not Applicable
Iismig.dll
7.0.6001.18359
452,096
09-Nov-2009
13:28
IA-64
Iisreg.dll
7.0.6001.18359
143,872
09-Nov-2009
13:25
IA-64
Iisres.dll
7.0.6001.18359
193,024
09-Nov-2009
11:43
IA-64
Iisreset.exe
7.0.6001.18359
34,816
09-Nov-2009
11:43
IA-64
Iisrstap.dll
7.0.6001.18359
18,944
09-Nov-2009
13:25
IA-64
Iisrstas.exe
7.0.6001.18359
78,336
09-Nov-2009
11:43
IA-64
Iisrtl.dll
7.0.6001.18359
393,216
09-Nov-2009
13:25
IA-64
Iissetup.exe
7.0.6001.18359
543,232
09-Nov-2009
11:44
IA-64
Iissyspr.dll
7.0.6001.18359
134,656
09-Nov-2009
13:25
IA-64
Iisutil.dll
7.0.6001.18359
513,024
09-Nov-2009
13:25
IA-64
Iis_schema.xml
Not Applicable
76,318
11-Jul-2009
14:24
Not Applicable
Nativerd.dll
7.0.6001.18359
887,808
09-Nov-2009
13:27
IA-64
Redirection.config
Not Applicable
490
27-Mar-2009
08:24
Not Applicable
Rsca.dll
7.0.6001.18359
74,240
09-Nov-2009
13:28
IA-64
Rscaext.dll
6.0.6001.18359
111,616
09-Nov-2009
13:28
IA-64
Rscaext.xml
Not Applicable
8,363
27-Mar-2009
08:24
Not Applicable
W3ctrlps.dll
7.0.6001.18359
22,528
09-Nov-2009
13:29
IA-64
Wamregps.dll
7.0.6001.18359
28,160
09-Nov-2009
13:29
IA-64
Admwprox.dll
7.0.6001.22638
119,808
20-Feb-2010
23:25
IA-64
Ahadmin.dll
7.0.6001.22638
82,432
20-Feb-2010
23:25
IA-64
Appcmd.exe
7.0.6001.22638
404,992
20-Feb-2010
21:48
IA-64
Appcmd.xml
Not Applicable
3,654
01-Apr-2009
15:56
Not Applicable
Applicationhost.config
Not Applicable
7,989
01-Apr-2009
15:56
Not Applicable
Appobj.dll
7.0.6001.22638
727,552
20-Feb-2010
23:25
IA-64
Aspnetca.exe
7.0.6001.22638
432,128
20-Feb-2010
21:48
IA-64
Aspnet_schema.xml
Not Applicable
38,786
01-Apr-2009
15:57
Not Applicable
Fx_schema.xml
Not Applicable
26,943
08-May-2009
09:25
Not Applicable
Iismig.dll
7.0.6001.22638
452,096
20-Feb-2010
23:31
IA-64
Iisreg.dll
7.0.6001.22638
143,872
20-Feb-2010
23:28
IA-64
Iisres.dll
7.0.6001.22638
193,024
20-Feb-2010
21:48
IA-64
Iisreset.exe
7.0.6001.22638
34,816
20-Feb-2010
21:47
IA-64
Iisrstap.dll
7.0.6001.22638
18,944
20-Feb-2010
23:28
IA-64
Iisrstas.exe
7.0.6001.22638
78,336
20-Feb-2010
21:47
IA-64
Iisrtl.dll
7.0.6001.22638
393,216
20-Feb-2010
23:28
IA-64
Iissetup.exe
7.0.6001.22638
543,232
20-Feb-2010
21:48
IA-64
Iissyspr.dll
7.0.6001.22638
134,656
20-Feb-2010
23:28
IA-64
Iisutil.dll
7.0.6001.22638
513,024
20-Feb-2010
23:28
IA-64
Iis_schema.xml
Not Applicable
79,213
20-Feb-2010
18:09
Not Applicable
Nativerd.dll
7.0.6001.22638
902,656
20-Feb-2010
23:30
IA-64
Redirection.config
Not Applicable
490
01-Apr-2009
15:57
Not Applicable
Rsca.dll
7.0.6001.22638
74,240
20-Feb-2010
23:31
IA-64
Rscaext.dll
6.0.6001.22638
111,616
20-Feb-2010
23:31
IA-64
Rscaext.xml
Not Applicable
8,363
01-Apr-2009
15:57
Not Applicable
W3ctrlps.dll
7.0.6001.22638
22,528
20-Feb-2010
23:32
IA-64
Wamregps.dll
7.0.6001.22638
28,160
20-Feb-2010
23:32
IA-64
Admwprox.dll
7.0.6002.18139
119,808
09-Nov-2009
12:33
IA-64
Ahadmin.dll
7.0.6002.18139
82,432
09-Nov-2009
12:34
IA-64
Appcmd.exe
7.0.6002.18139
404,992
09-Nov-2009
11:15
IA-64
Appcmd.xml
Not Applicable
3,654
03-Apr-2009
20:40
Not Applicable
Applicationhost.config
Not Applicable
7,990
03-Apr-2009
20:40
Not Applicable
Appobj.dll
7.0.6002.18139
727,552
09-Nov-2009
12:34
IA-64
Aspnetca.exe
7.0.6002.18139
432,128
09-Nov-2009
11:15
IA-64
Aspnet_schema.xml
Not Applicable
38,786
03-Apr-2009
20:42
Not Applicable
Fx_schema.xml
Not Applicable
27,145
03-Apr-2009
20:42
Not Applicable
Iismig.dll
7.0.6002.18139
452,096
09-Nov-2009
12:38
IA-64
Iisreg.dll
7.0.6002.18139
143,872
09-Nov-2009
12:36
IA-64
Iisres.dll
7.0.6002.18139
193,024
09-Nov-2009
11:15
IA-64
Iisreset.exe
7.0.6002.18139
34,816
09-Nov-2009
11:14
IA-64
Iisrstap.dll
7.0.6002.18139
18,944
09-Nov-2009
12:36
IA-64
Iisrstas.exe
7.0.6002.18139
78,336
09-Nov-2009
11:14
IA-64
Iisrtl.dll
7.0.6002.18139
393,216
09-Nov-2009
12:36
IA-64
Iissetup.exe
7.0.6002.18139
543,232
09-Nov-2009
11:15
IA-64
Iissyspr.dll
7.0.6002.18139
134,656
09-Nov-2009
12:36
IA-64
Iisutil.dll
7.0.6002.18139
513,024
09-Nov-2009
12:36
IA-64
Iis_schema.xml
Not Applicable
79,078
10-Jul-2009
07:02
Not Applicable
Nativerd.dll
7.0.6002.18139
900,096
09-Nov-2009
12:37
IA-64
Redirection.config
Not Applicable
490
03-Apr-2009
20:42
Not Applicable
Rsca.dll
7.0.6002.18139
74,240
09-Nov-2009
12:38
IA-64
Rscaext.dll
6.0.6002.18139
111,616
09-Nov-2009
12:38
IA-64
Rscaext.xml
Not Applicable
8,363
03-Apr-2009
20:42
Not Applicable
W3ctrlps.dll
7.0.6002.18139
22,528
09-Nov-2009
12:39
IA-64
Wamregps.dll
7.0.6002.18139
28,160
09-Nov-2009
12:39
IA-64
Admwprox.dll
7.0.6002.22343
119,808
20-Feb-2010
22:54
IA-64
Ahadmin.dll
7.0.6002.22343
82,432
20-Feb-2010
22:55
IA-64
Appcmd.exe
7.0.6002.22343
404,992
20-Feb-2010
21:29
IA-64
Appcmd.xml
Not Applicable
3,654
03-Apr-2009
20:40
Not Applicable
Applicationhost.config
Not Applicable
7,990
03-Apr-2009
20:40
Not Applicable
Appobj.dll
7.0.6002.22343
727,552
20-Feb-2010
22:55
IA-64
Aspnetca.exe
7.0.6002.22343
432,128
20-Feb-2010
21:30
IA-64
Aspnet_schema.xml
Not Applicable
38,809
09-Feb-2010
09:17
Not Applicable
Fx_schema.xml
Not Applicable
27,105
09-Feb-2010
09:17
Not Applicable
Iismig.dll
7.0.6002.22343
452,096
20-Feb-2010
23:00
IA-64
Iisreg.dll
7.0.6002.22343
143,872
20-Feb-2010
22:56
IA-64
Iisres.dll
7.0.6002.22343
193,024
20-Feb-2010
21:29
IA-64
Iisreset.exe
7.0.6002.22343
34,816
20-Feb-2010
21:29
IA-64
Iisrstap.dll
7.0.6002.22343
18,944
20-Feb-2010
22:56
IA-64
Iisrstas.exe
7.0.6002.22343
78,336
20-Feb-2010
21:29
IA-64
Iisrtl.dll
7.0.6002.22343
393,216
20-Feb-2010
22:56
IA-64
Iissetup.exe
7.0.6002.22343
543,232
20-Feb-2010
21:30
IA-64
Iissyspr.dll
7.0.6002.22343
134,656
20-Feb-2010
22:56
IA-64
Iisutil.dll
7.0.6002.22343
513,024
20-Feb-2010
22:56
IA-64
Iis_schema.xml
Not Applicable
79,610
20-Feb-2010
18:11
Not Applicable
Nativerd.dll
7.0.6002.22343
910,336
20-Feb-2010
22:58
IA-64
Redirection.config
Not Applicable
490
03-Apr-2009
20:40
Not Applicable
Rsca.dll
7.0.6002.22343
74,240
20-Feb-2010
23:00
IA-64
Rscaext.dll
6.0.6002.22343
111,616
20-Feb-2010
23:00
IA-64
Rscaext.xml
Not Applicable
8,363
03-Apr-2009
20:40
Not Applicable
W3ctrlps.dll
7.0.6002.22343
22,528
20-Feb-2010
23:01
IA-64
Wamregps.dll
7.0.6002.22343
28,160
20-Feb-2010
23:01
IA-64
Nshhttp.dll
6.0.6001.18428
60,928
20-Feb-2010
23:44
IA-64
Nshhttp.dll
6.0.6001.22638
60,928
20-Feb-2010
23:30
IA-64
Nshhttp.dll
6.0.6002.18210
60,928
20-Feb-2010
22:58
IA-64
Nshhttp.dll
6.0.6002.22343
60,928
20-Feb-2010
22:59
IA-64
Iisw3adm.dll
7.0.6001.18428
891,904
20-Feb-2010
23:41
IA-64
W3tp.dll
7.0.6001.18359
37,376
09-Nov-2009
13:29
IA-64
W3wphost.dll
7.0.6001.18359
117,760
09-Nov-2009
13:29
IA-64
Wbhstipm.dll
7.0.6001.18359
62,464
09-Nov-2009
13:29
IA-64
Wbhst_pm.dll
7.0.6001.18359
59,392
09-Nov-2009
13:29
IA-64
Iisw3adm.dll
7.0.6001.22638
892,928
20-Feb-2010
23:28
IA-64
W3tp.dll
7.0.6001.22638
37,376
20-Feb-2010
23:32
IA-64
W3wphost.dll
7.0.6001.22638
118,784
20-Feb-2010
23:32
IA-64
Wbhstipm.dll
7.0.6001.22638
62,464
20-Feb-2010
23:32
IA-64
Wbhst_pm.dll
7.0.6001.22638
59,392
20-Feb-2010
23:32
IA-64
Iisw3adm.dll
7.0.6002.18210
898,560
20-Feb-2010
22:56
IA-64
W3tp.dll
7.0.6002.18139
37,376
09-Nov-2009
12:39
IA-64
W3wphost.dll
7.0.6002.18139
120,832
09-Nov-2009
12:39
IA-64
Wbhstipm.dll
7.0.6002.18139
62,464
09-Nov-2009
12:39
IA-64
Wbhst_pm.dll
7.0.6002.18139
59,392
09-Nov-2009
12:39
IA-64
Iisw3adm.dll
7.0.6002.22343
898,560
20-Feb-2010
22:56
IA-64
W3tp.dll
7.0.6002.22343
37,376
20-Feb-2010
23:01
IA-64
W3wphost.dll
7.0.6002.22343
120,832
20-Feb-2010
23:01
IA-64
Wbhstipm.dll
7.0.6002.22343
62,464
20-Feb-2010
23:01
IA-64
Wbhst_pm.dll
7.0.6002.22343
59,392
20-Feb-2010
23:01
IA-64
Authsspi.dll
7.0.6001.18428
43,520
20-Feb-2010
23:35
x86
Authsspi.dll
7.0.6001.22638
43,520
20-Feb-2010
23:27
x86
Authsspi.dll
7.0.6002.18210
43,520
20-Feb-2010
23:04
x86
Authsspi.dll
7.0.6002.22343
43,520
20-Feb-2010
23:07
x86
Hwebcore.dll
7.0.6001.18359
12,800
09-Nov-2009
13:20
x86
Iiscore.dll
7.0.6001.18428
189,952
20-Feb-2010
23:37
x86
W3dt.dll
7.0.6001.18428
23,552
20-Feb-2010
23:40
x86
Hwebcore.dll
7.0.6001.22638
12,800
20-Feb-2010
23:29
x86
Iiscore.dll
7.0.6001.22638
190,976
20-Feb-2010
23:29
x86
W3dt.dll
7.0.6001.22638
23,552
20-Feb-2010
23:31
x86
Hwebcore.dll
7.0.6002.18139
12,800
09-Nov-2009
12:30
x86
Iiscore.dll
7.0.6002.18210
190,976
20-Feb-2010
23:05
x86
W3dt.dll
7.0.6002.18210
23,552
20-Feb-2010
23:07
x86
Hwebcore.dll
7.0.6002.22343
12,800
20-Feb-2010
23:08
x86
Iiscore.dll
7.0.6002.22343
190,976
20-Feb-2010
23:08
x86
W3dt.dll
7.0.6002.22343
23,552
20-Feb-2010
23:12
x86
Isapi.dll
7.0.6001.18428
107,008
20-Feb-2010
23:37
x86
Isapi.dll
7.0.6001.22638
107,008
20-Feb-2010
23:29
x86
Isapi.dll
7.0.6002.18210
107,008
20-Feb-2010
23:05
x86
Isapi.dll
7.0.6002.22343
107,008
20-Feb-2010
23:08
x86
Admwprox.dll
7.0.6001.18428
51,712
20-Feb-2010
23:35
x86
Ahadmin.dll
7.0.6001.18428
27,136
20-Feb-2010
23:35
x86
Appcmd.exe
7.0.6001.18428
154,112
20-Feb-2010
21:33
x86
Appcmd.xml
Not Applicable
3,654
27-Mar-2009
08:24
Not Applicable
Appobj.dll
7.0.6001.18428
311,296
20-Feb-2010
23:35
x86
Aspnetca.exe
7.0.6001.18428
182,784
20-Feb-2010
21:34
x86
Iismig.dll
7.0.6001.18428
209,408
20-Feb-2010
23:40
x86
Iisreg.dll
7.0.6001.18428
89,088
20-Feb-2010
23:37
x86
Iisres.dll
7.0.6001.18428
193,024
20-Feb-2010
21:33
x86
Iisreset.exe
7.0.6001.18428
14,848
20-Feb-2010
21:33
x86
Iisrstap.dll
7.0.6001.18428
8,192
20-Feb-2010
23:37
x86
Iisrtl.dll
7.0.6001.18428
153,600
20-Feb-2010
23:37
x86
Iissetup.exe
7.0.6001.18428
228,864
20-Feb-2010
21:34
x86
Iissyspr.dll
7.0.6001.18428
59,392
20-Feb-2010
23:37
x86
Iisutil.dll
7.0.6001.18428
202,752
20-Feb-2010
23:37
x86
Nativerd.dll
7.0.6001.18428
326,656
20-Feb-2010
23:39
x86
Rsca.dll
7.0.6001.18428
26,624
20-Feb-2010
23:40
x86
Rscaext.dll
6.0.6001.18428
38,912
20-Feb-2010
23:40
x86
W3ctrlps.dll
7.0.6001.18428
9,216
20-Feb-2010
23:40
x86
Wamregps.dll
7.0.6001.18428
10,752
20-Feb-2010
23:40
x86
Admwprox.dll
7.0.6001.22638
51,712
20-Feb-2010
23:26
x86
Ahadmin.dll
7.0.6001.22638
27,136
20-Feb-2010
23:26
x86
Appcmd.exe
7.0.6001.22638
154,112
20-Feb-2010
21:35
x86
Appcmd.xml
Not Applicable
3,654
01-Apr-2009
18:54
Not Applicable
Appobj.dll
7.0.6001.22638
311,808
20-Feb-2010
23:26
x86
Aspnetca.exe
7.0.6001.22638
182,784
20-Feb-2010
21:35
x86
Iismig.dll
7.0.6001.22638
209,408
20-Feb-2010
23:31
x86
Iisreg.dll
7.0.6001.22638
89,088
20-Feb-2010
23:29
x86
Iisres.dll
7.0.6001.22638
193,024
20-Feb-2010
21:35
x86
Iisreset.exe
7.0.6001.22638
14,848
20-Feb-2010
21:35
x86
Iisrstap.dll
7.0.6001.22638
8,192
20-Feb-2010
23:29
x86
Iisrtl.dll
7.0.6001.22638
153,600
20-Feb-2010
23:29
x86
Iissetup.exe
7.0.6001.22638
228,864
20-Feb-2010
21:35
x86
Iissyspr.dll
7.0.6001.22638
59,392
20-Feb-2010
23:29
x86
Iisutil.dll
7.0.6001.22638
202,752
20-Feb-2010
23:29
x86
Nativerd.dll
7.0.6001.22638
331,776
20-Feb-2010
23:30
x86
Rsca.dll
7.0.6001.22638
26,624
20-Feb-2010
23:31
x86
Rscaext.dll
6.0.6001.22638
38,912
20-Feb-2010
23:31
x86
W3ctrlps.dll
7.0.6001.22638
9,216
20-Feb-2010
23:31
x86
Wamregps.dll
7.0.6001.22638
10,752
20-Feb-2010
23:31
x86
Admwprox.dll
7.0.6002.18210
51,712
20-Feb-2010
23:03
x86
Ahadmin.dll
7.0.6002.18210
27,136
20-Feb-2010
23:03
x86
Appcmd.exe
7.0.6002.18210
154,112
20-Feb-2010
21:05
x86
Appcmd.xml
Not Applicable
3,654
03-Apr-2009
20:37
Not Applicable
Appobj.dll
7.0.6002.18210
311,808
20-Feb-2010
23:03
x86
Aspnetca.exe
7.0.6002.18210
182,784
20-Feb-2010
21:05
x86
Iismig.dll
7.0.6002.18210
209,408
20-Feb-2010
23:07
x86
Iisreg.dll
7.0.6002.18210
89,088
20-Feb-2010
23:05
x86
Iisres.dll
7.0.6002.18210
193,024
20-Feb-2010
21:05
x86
Iisreset.exe
7.0.6002.18210
14,848
20-Feb-2010
21:05
x86
Iisrstap.dll
7.0.6002.18210
8,192
20-Feb-2010
23:05
x86
Iisrtl.dll
7.0.6002.18210
153,600
20-Feb-2010
23:05
x86
Iissetup.exe
7.0.6002.18210
228,864
20-Feb-2010
21:05
x86
Iissyspr.dll
7.0.6002.18210
59,392
20-Feb-2010
23:05
x86
Iisutil.dll
7.0.6002.18210
202,752
20-Feb-2010
23:05
x86
Nativerd.dll
7.0.6002.18210
331,264
20-Feb-2010
23:06
x86
Rsca.dll
7.0.6002.18210
26,624
20-Feb-2010
23:07
x86
Rscaext.dll
6.0.6002.18210
38,912
20-Feb-2010
23:07
x86
W3ctrlps.dll
7.0.6002.18210
9,216
20-Feb-2010
23:07
x86
Wamregps.dll
7.0.6002.18210
10,752
20-Feb-2010
23:07
x86
Admwprox.dll
7.0.6002.22343
51,712
20-Feb-2010
23:06
x86
Ahadmin.dll
7.0.6002.22343
27,136
20-Feb-2010
23:07
x86
Appcmd.exe
7.0.6002.22343
154,112
20-Feb-2010
21:22
x86
Appcmd.xml
Not Applicable
3,654
03-Apr-2009
20:43
Not Applicable
Appobj.dll
7.0.6002.22343
311,808
20-Feb-2010
23:07
x86
Aspnetca.exe
7.0.6002.22343
182,784
20-Feb-2010
21:22
x86
Iismig.dll
7.0.6002.22343
209,408
20-Feb-2010
23:11
x86
Iisreg.dll
7.0.6002.22343
89,088
20-Feb-2010
23:08
x86
Iisres.dll
7.0.6002.22343
193,024
20-Feb-2010
21:22
x86
Iisreset.exe
7.0.6002.22343
14,848
20-Feb-2010
21:21
x86
Iisrstap.dll
7.0.6002.22343
8,192
20-Feb-2010
23:08
x86
Iisrtl.dll
7.0.6002.22343
153,600
20-Feb-2010
23:08
x86
Iissetup.exe
7.0.6002.22343
228,864
20-Feb-2010
21:22
x86
Iissyspr.dll
7.0.6002.22343
59,392
20-Feb-2010
23:08
x86
Iisutil.dll
7.0.6002.22343
202,752
20-Feb-2010
23:08
x86
Nativerd.dll
7.0.6002.22343
333,312
20-Feb-2010
23:10
x86
Rsca.dll
7.0.6002.22343
26,624
20-Feb-2010
23:11
x86
Rscaext.dll
6.0.6002.22343
38,912
20-Feb-2010
23:11
x86
W3ctrlps.dll
7.0.6002.22343
9,216
20-Feb-2010
23:12
x86
Wamregps.dll
7.0.6002.22343
10,752
20-Feb-2010
23:12
x86
Iisw3adm.dll
7.0.6001.18428
371,712
20-Feb-2010
23:37
x86
W3tp.dll
7.0.6001.18359
15,872
09-Nov-2009
13:23
x86
W3wphost.dll
7.0.6001.18359
46,592
09-Nov-2009
13:23
x86
Wbhstipm.dll
7.0.6001.18359
24,064
09-Nov-2009
13:23
x86
Wbhst_pm.dll
7.0.6001.18359
22,528
09-Nov-2009
13:23
x86
Iisw3adm.dll
7.0.6001.22638
371,712
20-Feb-2010
23:29
x86
W3tp.dll
7.0.6001.22638
15,872
20-Feb-2010
23:31
x86
W3wphost.dll
7.0.6001.22638
46,592
20-Feb-2010
23:31
x86
Wbhstipm.dll
7.0.6001.22638
24,064
20-Feb-2010
23:31
x86
Wbhst_pm.dll
7.0.6001.22638
22,528
20-Feb-2010
23:31
x86
Iisw3adm.dll
7.0.6002.18210
373,760
20-Feb-2010
23:05
x86
W3tp.dll
7.0.6002.18139
15,872
09-Nov-2009
12:32
x86
W3wphost.dll
7.0.6002.18139
47,616
09-Nov-2009
12:32
x86
Wbhstipm.dll
7.0.6002.18139
24,064
09-Nov-2009
12:32
x86
Wbhst_pm.dll
7.0.6002.18139
22,528
09-Nov-2009
12:32
x86
Iisw3adm.dll
7.0.6002.22343
374,272
20-Feb-2010
23:08
x86
W3tp.dll
7.0.6002.22343
15,872
20-Feb-2010
23:12
x86
W3wphost.dll
7.0.6002.22343
48,128
20-Feb-2010
23:12
x86
Wbhstipm.dll
7.0.6002.22343
24,064
20-Feb-2010
23:12
x86
Wbhst_pm.dll
7.0.6002.22343
22,528
20-Feb-2010
23:12
x86
Httpapi.dll
6.0.6001.18428
31,232
20-Feb-2010
23:37
x86
Httpapi.dll
6.0.6001.22638
31,232
20-Feb-2010
23:29
x86
Httpapi.dll
6.0.6002.18210
30,720
20-Feb-2010
23:05
x86
Httpapi.dll
6.0.6002.22343
30,720
20-Feb-2010
23:08
x86
Nshhttp.dll
6.0.6001.18428
24,064
20-Feb-2010
23:39
x86
Nshhttp.dll
6.0.6001.22638
24,064
20-Feb-2010
23:31
x86
Nshhttp.dll
6.0.6002.18210
24,064
20-Feb-2010
23:06
x86
Nshhttp.dll
6.0.6002.22343
24,064
20-Feb-2010
23:10
x86
Additional file information for Windows Vista and Windows Server 2008
Additional files for all supported x86-based versions of Windows Vista and Windows Server 2008
Note This is a "FAST PUBLISH" article created directly from within the Microsoft support organization. The information contained herein is provided as-is in response to emerging issues. As a result of the speed in making it available, the materials may include typographical errors and may be revised at any time without notice. See Terms of Use