Select the product you need help with
A new CWDIllegalInDllSearch registry entry is available to control the DLL search path algorithmArticle ID: 2264107 - View products that this article applies to. 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
(http://windows.microsoft.com/en-us/windows/help/end-support-windows-xp-sp2-windows-vista-without-service-packs)
.On This PageSUMMARYThis update introduces a new registry entry CWDIllegalInDllSearch that allows users to control the DLL search path algorithm. The DLL search path algorithm is used by the LoadLibrary API and the LoadLibraryEx API when DLLs are loaded without specifying a fully qualified path.
The update allows the administrator to define the following on a system-wide or a per-application basis:
MORE INFORMATIONImportant
This section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the following article number to view the article in the Microsoft Knowledge Base:
322756
(http://support.microsoft.com/kb/322756/
)
How to back up and restore the registry in Windows How the CWDIllegalInDllSearch registry entry worksWhen an application dynamically loads a DLL without specifying a fully qualified path, Windows tries to locate this DLL by searching through a well-defined set of directories. These sets of directories are known as DLL search path. As soon as Windows locates the DLL in a directory, Windows loads that DLL. If Windows does not find the DLL in any of the directories in the DLL search order, Windows will return a failure to the DLL load operation.The LoadLibrary function and the LoadLibraryEx function are used to dynamically load DLLs. The following is the DLL search order for these two functions:
The CWDIllegalInDllSearch registry entry can be added in the following path:
|
| CWDIllegalInDllSearch Value | Behavior of the DLL search path in LoadLibrary and in LoadLibraryEx |
|---|---|
| 0xFFFFFFFF | Removes the current working directory from the default DLL search order |
| 0 | Uses the default DLL search path that was mentioned earlier |
| 1 | Blocks a DLL Load from the current working directory if the current working directory is set to a WebDAV folder |
| 2 | Blocks a DLL Load from the current working directory if the current working directory is set to a remote folder (such as a WebDAV or UNC location) |
| No key or other values | Uses the default DLL search path that was mentioned earlier |
Scenario 2: The application is started from a remote folder, such as \\remote\shareremote\share)
Collapse this table
| CWDIllegalInDllSearch Value | Behavior of the DLL search path in LoadLibrary and in LoadLibraryEx |
|---|---|
| 0xFFFFFFFF | Removes the current working directory from the default DLL search order |
| 0 | Uses the default DLL search path that was mentioned earlier |
| 1 | Blocks a DLL Load from the current working directory if the current working directory is set to a WebDAV folder |
| 2 | Allows DLL Load from the current working directory if the current working directory is set to a remote folder (such as a WebDAV or UNC location). |
| No key or other values | Uses the default DLL search path that was mentioned earlier |
Scenario 3: The application is started from a WebDav folder, such as http://remote/share)
Collapse this table
| CWDIllegalInDllSearch Value | Behavior of the DLL search path in LoadLibrary and in LoadLibraryEx |
|---|---|
| 0xFFFFFFFF | Removes the current working directory from the default DLL search order |
| No key or other values | Uses the default DLL search path that was mentioned earlier |
Examples
Example 1: How to disable loading DLLs from a WebDAV share for all applications that are installed on your local computer
- Log on to your computer as an administrator.
- Open Registry Editor.
- Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
- Right-click Session Manager, point to New, and then click Dword Value.
- Type CWDIllegalInDllSearch, and then click Modify.
- In the Value data box, type 1, and then click OK.
Example 2: How to disable loading DLLs from a WebDAV share for only a specific application that is installed on the local computer
- Log on to your computer as an administrator.
- Open Registry Editor.
- Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\<application binary name>
- If a key with the application binary name does not exist, then you will have to create one.
- Right-click <application binary name>, point to New, and then click Dword Value.
- Type CWDIllegalInDllSearch,and then click Modify.
- In the Value data box, type 1, and then click OK.
Example 3: How to disable loading DLLs from a remote (SMB) share for only a specific application installed on the local computer
- Log on to your computer as an administrator.
- Open Registry Editor.
- Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\<application binary name>
- If a key with the application binary name does not exist, then you will have to create one.
- Right-click <application binary name>, point to New, and then click Dword Value.
- Type CWDIllegalInDllSearch,and then click Modify.
- In the Value data box, type 2, and then click OK.
Fix it for me
The fix it solution described in this section is not intended to be a replacement for any security update. We recommend that you always install the latest security updates. However, we offer this fix it solution as a workaround option for customers to protect their systems while a security update is not available or cannot be installed.
This fix it solution will only deploy the registry entry that is needed to block nonsecure DLL loads from WebDAV and SMB locations.
Note Before you run the fix it solution, you must first download and then install update 2264107, which is described later in this article. By default, protection is disabled when you install update 2264107. Then, the protection can be configured manually as described in this article, or you can run the fix it. When you run the fix it, protection is enabled to protect against remote, nonsecure DLL loads.
To manually undo the setting changed by the fix it solution, you can reset the value of the following CWDIllegalInDLLSearch registry entry to 0 (zero):
To automatically enable or disable this fixit solution, click the Fix it button or link under the Enable this fix it heading or under the Disable this fix it heading. Click Run in the File Downloaddialog box, and then follow the steps in the Fix it wizard.
Notes
This fix it solution will only deploy the registry entry that is needed to block nonsecure DLL loads from WebDAV and SMB locations.
Note Before you run the fix it solution, you must first download and then install update 2264107, which is described later in this article. By default, protection is disabled when you install update 2264107. Then, the protection can be configured manually as described in this article, or you can run the fix it. When you run the fix it, protection is enabled to protect against remote, nonsecure DLL loads.
To manually undo the setting changed by the fix it solution, you can reset the value of the following CWDIllegalInDLLSearch registry entry to 0 (zero):
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\CWDIllegalInDLLSearch
A setting of 0 will undo the changes that are made by the fix it solution.
To automatically enable or disable this fixit solution, click the Fix it button or link under the Enable this fix it heading or under the Disable this fix it heading. Click Run in the File Downloaddialog box, and then follow the steps in the Fix it wizard.
Collapse this table
| Enable this fix it | Disable this fix it |
|---|---|
- This wizard may be in English only. However, the automatic fix also works for other language versions of Windows.
- If you are not on the computer that has the problem, save the fix it solution to a flash drive or a CD and then run it on the computer that has the problem.
Update Information
The following files are available for download from the Microsoft Download Center:
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Download the package now.
Release Date: August 23, 2010
For more information about how to download Microsoft support files, click the following article number to view the article in the Microsoft Knowledge Base:
Update for Windows XP
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=e8941631-fe92-47c3-8872-2814e05e1ecc)
Update for Windows XP x64 Edition
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=96f74b8f-fe85-4532-a38f-fc3b20317699)
Update for Windows Server 2003
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=7adba01e-46fc-44e5-b36c-9bfdad5a1d00)
Update for Windows Server 2003 x64 Edition
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=741cc9ef-a0b6-4561-b81c-5e5e036600b7)
Update for Windows Server 2003 for Itanium-based Systems
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=89ad97ab-2ee3-48ec-8fbf-4c38d542404f)
Update for Windows Vista
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=86631d97-ebed-4346-be66-d6ba0f500cea)
Update for Windows Vista for x64-based Systems
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=1476975d-6675-41e2-b52d-3d8cb55a3a43)
Update for Windows Server 2008
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=083cd670-093c-46ef-91af-4f544f1258e8)
Update for Windows Server 2008 x64 Edition
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=913fe4b5-1ab2-4c15-a586-60ef2ccf0f99)
Update for Windows Server 2008 for Itanium-based Systems
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=d0f7dbde-0d97-4177-84bc-99517ecf85b7)
Update for Windows 7
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=cc86a592-609e-4808-958f-7afba40073d3)
Update for Windows 7 for x64-based Systems
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=a57b7cc2-cb05-4cf3-83c5-e0181d6ec184)
Update for Windows Server 2008 R2 for Itanium-based Systems
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=73d73ea8-ef50-4ad0-9b0c-df340ae4409a)
Update for Windows Server 2008 R2 x64 Edition
Collapse this image

(http://www.microsoft.com/downloads/details.aspx?FamilyId=36f0e79d-fe0a-4605-a932-a129a93c4290)
Release Date: August 23, 2010
For more information about how to download Microsoft support files, click the following article number to view the article in the Microsoft Knowledge Base:
119591
Microsoft scanned this file for viruses. Microsoft used the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help prevent any unauthorized changes to the file.
(http://support.microsoft.com/kb/119591/
)
How to obtain Microsoft support files from online servicesFILE INFORMATION
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 x86-based versions of Windows XP
Collapse this table
| File name | File version | File size | Date | Time | Platform | SP requirement | Service branch |
|---|---|---|---|---|---|---|---|
| Mrxdav.sys | 5.1.2600.6007 | 179,712 | 30-Jun-2010 | 13:16 | x86 | SP3 | SP3GDR |
| Ntdll.dll | 5.1.2600.6007 | 715,776 | 30-Jun-2010 | 14:56 | x86 | SP3 | SP3GDR |
| Mrxdav.sys | 5.1.2600.6007 | 180,096 | 30-Jun-2010 | 13:34 | x86 | SP3 | SP3QFE |
| Ntdll.dll | 5.1.2600.6007 | 715,776 | 30-Jun-2010 | 14:54 | x86 | SP3 | SP3QFE |
For all supported x64-based versions of Windows Server 2003 and of Windows XP Professional x64 edition
Collapse this table
| File name | File version | File size | Date | Time | Platform | SP requirement | Service branch |
|---|---|---|---|---|---|---|---|
| Mrxdav.sys | 5.2.3790.4737 | 273,408 | 03-Jul-2010 | 08:24 | x64 | SP2 | SP2GDR |
| Ntdll.dll | 5.2.3790.4737 | 1,261,568 | 03-Jul-2010 | 08:24 | x64 | SP2 | SP2GDR |
| Wntdll.dll | 5.2.3790.4737 | 775,680 | 03-Jul-2010 | 08:24 | x86 | SP2 | SP2GDR\WOW |
| Mrxdav.sys | 5.2.3790.4737 | 273,408 | 03-Jul-2010 | 08:21 | x64 | SP2 | SP2QFE |
| Ntdll.dll | 5.2.3790.4737 | 1,262,080 | 03-Jul-2010 | 08:21 | x64 | SP2 | SP2QFE |
| Wntdll.dll | 5.2.3790.4737 | 775,680 | 03-Jul-2010 | 08:21 | x86 | SP2 | SP2QFE\WOW |
For all supported x86-based versions of Windows Server 2003
Collapse this table
| File name | File version | File size | Date | Time | Platform | SP requirement | Service branch |
|---|---|---|---|---|---|---|---|
| Mrxdav.sys | 5.2.3790.4737 | 188,928 | 30-Jun-2010 | 13:28 | x86 | SP2 | SP2GDR |
| Ntdll.dll | 5.2.3790.4737 | 774,656 | 30-Jun-2010 | 16:17 | x86 | SP2 | SP2GDR |
| Mrxdav.sys | 5.2.3790.4737 | 188,928 | 30-Jun-2010 | 13:34 | x86 | SP2 | SP2QFE |
| Ntdll.dll | 5.2.3790.4737 | 774,656 | 30-Jun-2010 | 16:35 | x86 | SP2 | SP2QFE |
For all supported IA-64-based versions of Windows Server 2003
Collapse this table
| File name | File version | File size | Date | Time | Platform | SP requirement | Service branch |
|---|---|---|---|---|---|---|---|
| Mrxdav.sys | 5.2.3790.4737 | 552,448 | 05-Jul-2010 | 17:05 | IA-64 | SP2 | SP2GDR |
| Ntdll.dll | 5.2.3790.4737 | 1,648,128 | 05-Jul-2010 | 17:05 | IA-64 | SP2 | SP2GDR |
| Wntdll.dll | 5.2.3790.4737 | 775,680 | 05-Jul-2010 | 17:05 | x86 | SP2 | SP2GDR\WOW |
| Mrxdav.sys | 5.2.3790.4737 | 553,472 | 05-Jul-2010 | 17:02 | IA-64 | SP2 | SP2QFE |
| Ntdll.dll | 5.2.3790.4737 | 1,648,640 | 05-Jul-2010 | 17:02 | IA-64 | SP2 | SP2QFE |
| Ntkrnlmp.exe | 5.2.3790.4666 | 6,582,272 | 05-Jul-2010 | 17:02 | IA-64 | SP2 | SP2QFE |
| Wntdll.dll | 5.2.3790.4737 | 775,680 | 05-Jul-2010 | 17:02 | 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 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 table
| File name | File version | File size | Date | Time | Platform |
|---|---|---|---|---|---|
| Ntdll.dll | 6.0.6001.18499 | 1,203,032 | 30-Jun-2010 | 22:28 | x86 |
| Ntdll.dll | 6.0.6001.22721 | 1,203,032 | 30-Jun-2010 | 22:28 | x86 |
| Ntdll.dll | 6.0.6002.18279 | 1,203,032 | 30-Jun-2010 | 22:28 | x86 |
| Ntdll.dll | 6.0.6002.22435 | 1,203,544 | 30-Jun-2010 | 22:28 | x86 |
For all supported x64-based versions of Windows Vista and Windows Server 2008
Collapse this table
| File name | File version | File size | Date | Time | Platform |
|---|---|---|---|---|---|
| Ntdll.dll | 6.0.6001.18499 | 1,557,888 | 30-Jun-2010 | 22:24 | x64 |
| Ntdll.dll | 6.0.6001.22721 | 1,558,912 | 30-Jun-2010 | 22:24 | x64 |
| Ntdll.dll | 6.0.6002.18279 | 1,582,096 | 30-Jun-2010 | 22:24 | x64 |
| Ntdll.dll | 6.0.6002.22435 | 1,583,120 | 30-Jun-2010 | 22:24 | x64 |
| Ntdll.dll | 6.0.6001.18499 | 1,164,904 | 30-Jun-2010 | 22:24 | x86 |
| Ntdll.dll | 6.0.6001.22721 | 1,165,416 | 30-Jun-2010 | 22:24 | x86 |
| Ntdll.dll | 6.0.6002.18279 | 1,165,416 | 30-Jun-2010 | 22:24 | x86 |
| Ntdll.dll | 6.0.6002.22435 | 1,166,464 | 30-Jun-2010 | 22:24 | x86 |
For all supported IA-64-based versions of Windows Server 2008
Collapse this table
| File name | File version | File size | Date | Time | Platform |
|---|---|---|---|---|---|
| Ntdll.dll | 6.0.6001.18499 | 2,564,504 | 30-Jun-2010 | 22:19 | IA-64 |
| Ntdll.dll | 6.0.6001.22721 | 2,563,992 | 30-Jun-2010 | 22:19 | IA-64 |
| Ntdll.dll | 6.0.6002.18279 | 2,563,992 | 30-Jun-2010 | 22:19 | IA-64 |
| Ntdll.dll | 6.0.6002.22435 | 2,565,528 | 30-Jun-2010 | 22:19 | IA-64 |
| Ntdll.dll | 6.0.6001.18499 | 1,164,904 | 30-Jun-2010 | 22:19 | x86 |
| Ntdll.dll | 6.0.6001.22721 | 1,165,416 | 30-Jun-2010 | 22:19 | x86 |
| Ntdll.dll | 6.0.6002.18279 | 1,165,416 | 30-Jun-2010 | 22:19 | x86 |
| Ntdll.dll | 6.0.6002.22435 | 1,166,464 | 30-Jun-2010 | 22:19 | 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
Collapse this table
| File name | Package_1_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,736 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_1_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,436 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,899 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,603 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_3_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,741 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_3_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,441 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_4_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,741 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_4_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,443 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_5_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,375 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_5_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 3,093 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_6_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,218 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_6_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,931 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_7_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,218 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_7_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,931 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client_1_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,354 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client_1~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,373 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client_2_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,673 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client_2~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,700 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,690 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,721 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_0_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,408 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_0~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,428 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_1_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,669 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_1~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,696 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,678 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,709 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_0_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,412 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_0~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,431 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_1_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,673 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_1~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,700 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,690 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,721 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv_0_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,409 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv_0~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,428 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv_bf~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,417 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv~31bf3856ad364e35~x86~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,436 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Update-bf.mum |
| File version | Not Applicable |
| File size | 3,494 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | X86_61bc60071b9b61aa76d40c4f113bd741_31bf3856ad364e35_6.0.6001.18499_none_05c2a7101317839c.manifest |
| File version | Not Applicable |
| File size | 693 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | X86_71510d48a9321ed421ef3af3bd651c3b_31bf3856ad364e35_6.0.6002.22435_none_2662730a644dd47b.manifest |
| File version | Not Applicable |
| File size | 693 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | X86_d3665c674acde7d63aa008ba77eff09c_31bf3856ad364e35_6.0.6002.18279_none_01374d7fc696329b.manifest |
| File version | Not Applicable |
| File size | 693 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | X86_e2046630a9c590b709642d53c914312a_31bf3856ad364e35_6.0.6001.22721_none_28fb1ffa8d76f99b.manifest |
| File version | Not Applicable |
| File size | 693 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | X86_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.18499_none_587e9927fc6e803a.manifest |
| File version | Not Applicable |
| File size | 5,257 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
| File name | X86_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.22721_none_594be6e3155a8c03.manifest |
| File version | Not Applicable |
| File size | 5,257 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
| File name | X86_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.18279_none_5a7aaccdf9849aa3.manifest |
| File version | Not Applicable |
| File size | 5,257 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
| File name | X86_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.22435_none_5b2b8a0712856274.manifest |
| File version | Not Applicable |
| File size | 5,257 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
Additional files for all supported x64-based versions of Windows Vista and Windows Server 2008
Collapse this table
| File name | Amd64_234fb62a80b953b5b5f7211350ee0db5_31bf3856ad364e35_6.0.6001.22721_none_cb62d321a994b6a9.manifest |
| File version | Not Applicable |
| File size | 697 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Amd64_4ad8c43c2333fa28d3a0baeb43117898_31bf3856ad364e35_6.0.6001.18499_none_b2e86a01282bcc24.manifest |
| File version | Not Applicable |
| File size | 1,036 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Amd64_730c524d4462e4279b8a7ab928e9ed6c_31bf3856ad364e35_6.0.6002.18279_none_48c2155287d44bbd.manifest |
| File version | Not Applicable |
| File size | 1,036 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Amd64_84e6d8041559b20f1f2a0f8c55712116_31bf3856ad364e35_6.0.6001.22721_none_fde71f6f4aa8e5f6.manifest |
| File version | Not Applicable |
| File size | 1,036 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Amd64_9af854c86e2ef45814cf8a51d65f80b2_31bf3856ad364e35_6.0.6002.22435_none_bb366403f3d0c6cc.manifest |
| File version | Not Applicable |
| File size | 1,036 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Amd64_fa2942bf653af7a7acc85572973d8fa2_31bf3856ad364e35_6.0.6001.18499_none_036ad2da2a591eeb.manifest |
| File version | Not Applicable |
| File size | 697 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Amd64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.18499_none_b49d34abb4cbf170.manifest |
| File version | Not Applicable |
| File size | 5,263 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
| File name | Amd64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.22721_none_b56a8266cdb7fd39.manifest |
| File version | Not Applicable |
| File size | 5,263 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
| File name | Amd64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.18279_none_b6994851b1e20bd9.manifest |
| File version | Not Applicable |
| File size | 5,263 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
| File name | Amd64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.22435_none_b74a258acae2d3aa.manifest |
| File version | Not Applicable |
| File size | 5,263 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
| File name | Package_1_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,746 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_1_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,450 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,118 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 3,045 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_3_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,958 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_3_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,881 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_4_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,958 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_4_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,883 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_5_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,600 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_5_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 3,541 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_6_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,441 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_6_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 3,377 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_7_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,441 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_7_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 3,377 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client_1_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,362 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client_1~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,381 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client_2_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,685 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client_2~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,712 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,700 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_client~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,731 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_0_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,416 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_0~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,436 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_1_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,681 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_1~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,708 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,688 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,719 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_0_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,420 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_0~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,439 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_1_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,685 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_1~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,712 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,700 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,731 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv_0_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,417 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv_0~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,436 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,425 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv~31bf3856ad364e35~amd64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,444 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Update-bf.mum |
| File version | Not Applicable |
| File size | 3,522 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.18499_none_bef1defde92cb36b.manifest |
| File version | Not Applicable |
| File size | 5,829 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.22721_none_bfbf2cb90218bf34.manifest |
| File version | Not Applicable |
| File size | 5,829 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.18279_none_c0edf2a3e642cdd4.manifest |
| File version | Not Applicable |
| File size | 5,829 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.22435_none_c19ecfdcff4395a5.manifest |
| File version | Not Applicable |
| File size | 5,829 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:43 |
| Platform | Not Applicable |
Additional files for all supported IA-64-based versions of Windows Server 2008
Collapse this table
| File name | Ia64_01ed13e0b81bda0e486983c95f335672_31bf3856ad364e35_6.0.6001.22721_none_a0b3362fd31f6289.manifest |
| File version | Not Applicable |
| File size | 695 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Ia64_0dd02d5231bf597cc6f42c0bb7ba9c4e_31bf3856ad364e35_6.0.6002.22435_none_f57937f3f2ce200b.manifest |
| File version | Not Applicable |
| File size | 1,034 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Ia64_81be58e5ac0f424b83c94f79168f86a1_31bf3856ad364e35_6.0.6001.18499_none_b5decde4b0b49d6c.manifest |
| File version | Not Applicable |
| File size | 1,034 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Ia64_c4f5ad45e16ffbace434662e779fbed3_31bf3856ad364e35_6.0.6001.18499_none_7aabb0954c38bfb9.manifest |
| File version | Not Applicable |
| File size | 695 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Ia64_f13865be1a2675f95f6e38e0931edd30_31bf3856ad364e35_6.0.6002.18279_none_ac5cd62625149dba.manifest |
| File version | Not Applicable |
| File size | 1,034 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Ia64_f908b94687b66697c94b746000e7c21f_31bf3856ad364e35_6.0.6001.22721_none_e6776d2f5f6e3452.manifest |
| File version | Not Applicable |
| File size | 1,034 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Ia64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.18499_none_58803d1dfc6c8936.manifest |
| File version | Not Applicable |
| File size | 5,260 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:42 |
| Platform | Not Applicable |
| File name | Ia64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.22721_none_594d8ad9155894ff.manifest |
| File version | Not Applicable |
| File size | 5,260 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:42 |
| Platform | Not Applicable |
| File name | Ia64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.18279_none_5a7c50c3f982a39f.manifest |
| File version | Not Applicable |
| File size | 5,260 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:42 |
| Platform | Not Applicable |
| File name | Ia64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.22435_none_5b2d2dfd12836b70.manifest |
| File version | Not Applicable |
| File size | 5,260 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:42 |
| Platform | Not Applicable |
| File name | Package_1_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,741 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_1_for_kb2264107~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,443 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,953 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,874 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_3_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,953 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_3_for_kb2264107~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,874 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_4_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,270 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_4_for_kb2264107~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 3,201 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_5_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 2,270 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_5_for_kb2264107~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 3,201 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_0_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,412 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_0~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,431 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_1_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,513 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_1~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,536 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,683 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_sc~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,714 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_0_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,416 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_0~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,435 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_1_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,516 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_1~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,540 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,695 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_server~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,726 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv_0_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,413 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv_0~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,432 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,421 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_winpesrv~31bf3856ad364e35~ia64~~6.0.1.2.mum |
| File version | Not Applicable |
| File size | 1,440 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Update-bf.mum |
| File version | Not Applicable |
| File size | 2,699 |
| Date (UTC) | 05-Jul-2010 |
| Time (UTC) | 06:28 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.18499_none_bef1defde92cb36b.manifest |
| File version | Not Applicable |
| File size | 5,829 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:42 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.22721_none_bfbf2cb90218bf34.manifest |
| File version | Not Applicable |
| File size | 5,829 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:42 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.18279_none_c0edf2a3e642cdd4.manifest |
| File version | Not Applicable |
| File size | 5,829 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:42 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.22435_none_c19ecfdcff4395a5.manifest |
| File version | Not Applicable |
| File size | 5,829 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 22:42 |
| Platform | Not Applicable |
Windows 7 and Windows Server 2008 R2 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 table
Version Product Milestone Service branch 6.1.7600. 16xxx Windows 7 and Windows Server 2008 R2 RTM GDR 6.1.7600. 20xxx Windows 7 and Windows Server 2008 R2 RTM LDR - 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 in the "Additional file information for Windows 7 and Windows Server 2008 R2" section. 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, for which the attributes are not listed, are signed with a Microsoft digital signature.
For all supported x86-based versions of Windows 7
Collapse this table
| File name | File version | File size | Date | Time | Platform |
|---|---|---|---|---|---|
| Ntdll.dll | 6.1.7600.16625 | 1,286,960 | 30-Jun-2010 | 06:27 | x86 |
| Ntdll.dll | 6.1.7600.20745 | 1,286,952 | 30-Jun-2010 | 06:20 | x86 |
For all supported x64-based versions of Windows 7 and Windows Server 2008 R2
Collapse this table
| File name | File version | File size | Date | Time | Platform |
|---|---|---|---|---|---|
| Ntdll.dll | 6.1.7600.16625 | 1,736,600 | 30-Jun-2010 | 07:14 | x64 |
| Ntdll.dll | 6.1.7600.20745 | 1,737,624 | 30-Jun-2010 | 07:32 | x64 |
| Ntdll.dll | 6.1.7600.16625 | 1,290,056 | 30-Jun-2010 | 06:27 | x86 |
| Ntdll.dll | 6.1.7600.20745 | 1,291,072 | 30-Jun-2010 | 06:20 | x86 |
For all supported IA-64-based versions of Windows Server 2008 R2
Collapse this table
| File name | File version | File size | Date | Time | Platform |
|---|---|---|---|---|---|
| Ntdll.dll | 6.1.7600.16625 | 2,784,248 | 30-Jun-2010 | 05:47 | IA-64 |
| Ntdll.dll | 6.1.7600.20745 | 2,784,760 | 30-Jun-2010 | 05:41 | IA-64 |
| Ntdll.dll | 6.1.7600.16625 | 1,290,056 | 30-Jun-2010 | 06:27 | x86 |
| Ntdll.dll | 6.1.7600.20745 | 1,291,072 | 30-Jun-2010 | 06:20 | x86 |
Additional file information for Windows 7 and Windows Server 2008 R2
Additional files for all supported x86-based versions of Windows 7
Collapse this table
| File name | Package_1_for_kb2264107_bf~31bf3856ad364e35~x86~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 1,774 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_1_for_kb2264107~31bf3856ad364e35~x86~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 2,474 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107_bf~31bf3856ad364e35~x86~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 1,779 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107~31bf3856ad364e35~x86~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 2,479 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_3_for_kb2264107_bf~31bf3856ad364e35~x86~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 1,759 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_3_for_kb2264107~31bf3856ad364e35~x86~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 2,459 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_rtm_bf~31bf3856ad364e35~x86~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 2,380 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_rtm~31bf3856ad364e35~x86~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 2,431 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Update-bf.mum |
| File version | Not Applicable |
| File size | 1,850 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | X86_2045a589aaa17c99881b63c9bbc7512e_31bf3856ad364e35_6.1.7600.16625_none_48b95d16d73babe2.manifest |
| File version | Not Applicable |
| File size | 693 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | X86_7ff10b93251f422739846b250b29b7dc_31bf3856ad364e35_6.1.7600.20745_none_633ab693bb449a7c.manifest |
| File version | Not Applicable |
| File size | 693 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | X86_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.16625_none_58ee199f5d509156.manifest |
| File version | Not Applicable |
| File size | 3,802 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 06:54 |
| Platform | Not Applicable |
| File name | X86_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.20745_none_59621692767e6902.manifest |
| File version | Not Applicable |
| File size | 3,802 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 06:48 |
| Platform | Not Applicable |
Additional files for all supported x64-based versions of Windows 7 and Windows Server 2008 R2
Collapse this table
| File name | Amd64_3e508c9a14911d7cc089aaa8d5ab8a1a_31bf3856ad364e35_6.1.7600.16625_none_8966f7bc47286abb.manifest |
| File version | Not Applicable |
| File size | 697 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Amd64_60b46a4071ff17f63038e17efde27ab1_31bf3856ad364e35_6.1.7600.20745_none_b6ef796b96806e9a.manifest |
| File version | Not Applicable |
| File size | 697 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Amd64_6f17b0e56e01a63c92b34a6524458f99_31bf3856ad364e35_6.1.7600.16625_none_7ed7f804e56af77b.manifest |
| File version | Not Applicable |
| File size | 1,036 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Amd64_781dd2a8176197181e8874fed7e9e798_31bf3856ad364e35_6.1.7600.20745_none_79941a4eba3f8b6c.manifest |
| File version | Not Applicable |
| File size | 1,036 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Amd64_7c757053d7e8fc7552a56a286f1db3a6_31bf3856ad364e35_6.1.7600.16625_none_aa5e4e7046c9f576.manifest |
| File version | Not Applicable |
| File size | 697 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Amd64_dd09fe43aafcff5990f874aa5af056fe_31bf3856ad364e35_6.1.7600.20745_none_816e6b6501ce3b9f.manifest |
| File version | Not Applicable |
| File size | 697 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Amd64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.16625_none_b50cb52315ae028c.manifest |
| File version | Not Applicable |
| File size | 3,806 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 07:47 |
| Platform | Not Applicable |
| File name | Amd64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.20745_none_b580b2162edbda38.manifest |
| File version | Not Applicable |
| File size | 3,806 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 08:01 |
| Platform | Not Applicable |
| File name | Package_1_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 1,784 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_1_for_kb2264107~31bf3856ad364e35~amd64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 2,488 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 2,203 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107~31bf3856ad364e35~amd64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 4,068 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_3_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 2,007 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_3_for_kb2264107~31bf3856ad364e35~amd64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 3,868 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_4_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 1,976 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_4_for_kb2264107~31bf3856ad364e35~amd64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 2,900 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_rtm_bf~31bf3856ad364e35~amd64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 3,294 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_rtm~31bf3856ad364e35~amd64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 3,373 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Update-bf.mum |
| File version | Not Applicable |
| File size | 2,494 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.16625_none_bf615f754a0ec487.manifest |
| File version | Not Applicable |
| File size | 3,566 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 06:50 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.20745_none_bfd55c68633c9c33.manifest |
| File version | Not Applicable |
| File size | 3,566 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 06:44 |
| Platform | Not Applicable |
Additional files for all supported IA-64-based versions of Windows Server 2008 R2
Collapse this table
| File name | Ia64_284d06872f26ffc9dbd8f4b5ad4a40d5_31bf3856ad364e35_6.1.7600.20745_none_0bb3c667b68e275c.manifest |
| File version | Not Applicable |
| File size | 695 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Ia64_3e508c9a14911d7cc089aaa8d5ab8a1a_31bf3856ad364e35_6.1.7600.16625_none_2d4a002e8ec90281.manifest |
| File version | Not Applicable |
| File size | 696 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Ia64_60b46a4071ff17f63038e17efde27ab1_31bf3856ad364e35_6.1.7600.20745_none_5ad281ddde210660.manifest |
| File version | Not Applicable |
| File size | 696 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Ia64_e9ba15c32fb5a7d9f4d55380dbbe2a49_31bf3856ad364e35_6.1.7600.16625_none_033898e00a16976e.manifest |
| File version | Not Applicable |
| File size | 695 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Ia64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.16625_none_58efbd955d4e9a52.manifest |
| File version | Not Applicable |
| File size | 3,804 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 07:39 |
| Platform | Not Applicable |
| File name | Ia64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.20745_none_5963ba88767c71fe.manifest |
| File version | Not Applicable |
| File size | 3,804 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 07:36 |
| Platform | Not Applicable |
| File name | Package_1_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 1,785 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_1_for_kb2264107~31bf3856ad364e35~ia64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 3,639 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 2,001 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_2_for_kb2264107~31bf3856ad364e35~ia64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 3,858 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_rtm_bf~31bf3856ad364e35~ia64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 1,931 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Package_for_kb2264107_rtm~31bf3856ad364e35~ia64~~6.1.1.2.mum |
| File version | Not Applicable |
| File size | 1,966 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Update-bf.mum |
| File version | Not Applicable |
| File size | 1,664 |
| Date (UTC) | 02-Jul-2010 |
| Time (UTC) | 19:06 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.16625_none_bf615f754a0ec487.manifest |
| File version | Not Applicable |
| File size | 3,566 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 06:50 |
| Platform | Not Applicable |
| File name | Wow64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.20745_none_bfd55c68633c9c33.manifest |
| File version | Not Applicable |
| File size | 3,566 |
| Date (UTC) | 30-Jun-2010 |
| Time (UTC) | 06:44 |
| Platform | Not Applicable |
REFERENCES
For more information about the LoadLibrary function and the LoadLibraryEx function, visit the following Microsoft websites:
Introduction to the LoadLibrary function
Introduction to the LoadLibraryEx function
(http://msdn.microsoft.com/library/ms684175(VS.85).aspx)
Introduction to the LoadLibraryEx function
(http://msdn.microsoft.com/library/ms684179(v=VS.85).aspx)
Properties
Article ID: 2264107 - Last Review: June 10, 2011 - Revision: 5.1
APPLIES TO
- Windows 7 Enterprise
- Windows 7 Home Basic
- Windows 7 Home Premium
- Windows 7 Professional
- Windows 7 Ultimate
- Windows Server 2008 R2 Datacenter
- Windows Server 2008 R2 Enterprise
- Windows Server 2008 R2 Standard
- Windows Server 2008 Service Pack 2, when used with:
- Windows Server 2008 for Itanium-Based Systems
- Windows Server 2008 Datacenter
- Windows Server 2008 Enterprise
- Windows Server 2008 Standard
- Windows Web Server 2008
- Windows Server 2008 for Itanium-Based Systems
- Windows Server 2008 Datacenter
- Windows Server 2008 Enterprise
- Windows Server 2008 Standard
- Windows Web Server 2008
- Windows Vista Service Pack 2, when used with:
- Windows Vista Business
- Windows Vista Enterprise
- Windows Vista Home Basic
- Windows Vista Home Premium
- Windows Vista Starter
- Windows Vista Ultimate
- Windows Vista Business 64-bit Edition
- Windows Vista Enterprise 64-bit Edition
- Windows Vista Home Basic 64-bit Edition
- Windows Vista Home Premium 64-bit Edition
- Windows Vista Ultimate 64-bit Edition
- Windows Vista Service Pack 1, when used with:
- Windows Vista Business
- Windows Vista Enterprise
- Windows Vista Home Basic
- Windows Vista Home Premium
- Windows Vista Starter
- Windows Vista Ultimate
- Windows Vista Business 64-bit Edition
- Windows Vista Enterprise 64-bit Edition
- Windows Vista Home Basic 64-bit Edition
- Windows Vista Home Premium 64-bit Edition
- Windows Vista Ultimate 64-bit Edition
- Microsoft Windows Server 2003 Service Pack 2, when used with:
- Microsoft Windows Server 2003, Standard Edition (32-bit x86)
- Microsoft Windows Server 2003, Enterprise Edition (32-bit x86)
- Microsoft Windows Server 2003, Datacenter Edition (32-bit x86)
- Microsoft Windows Server 2003, Web Edition
- Microsoft Windows Server 2003, Standard x64 Edition
- Microsoft Windows Server 2003, Enterprise x64 Edition
- Microsoft Windows Server 2003, Datacenter x64 Edition
- Microsoft Windows Server 2003, Datacenter Edition for Itanium-Based Systems
- Microsoft Windows Server 2003, Enterprise Edition for Itanium-based Systems
- Microsoft Windows XP Professional x64 Edition
- Microsoft Windows XP Service Pack 3, when used with:
- Microsoft Windows XP Home Edition
- Microsoft Windows XP Professional
Keywords: | kbexpertiseinter kbfix kbsecurity kbsurveynew kbinfo kbregistry kbmsifixme kbfixme KB2264107 |
Article Translations
- (الشرق الاوسط (العربية
- Brasil (Português)
- Česká republika (Čeština)
- Danmark (Dansk)
- Deutschland (Deutsch)
- España, Latinoamérica (Español)
- France (Français)
- Italia (Italiano)
- Magyarország (Magyar)
- Nederland (Nederlands)
- Norge (Norsk Bokmål)
- Polska (Polski)
- Portugal (Português)
- Suomi (Suomi)
- Sverige (Svenska)
- Türkiye (Türkçe)
- Ελλάδα (Ελληνικά)
- Россия (Русский)
- भारत (हिंदी)
- ไทย (ไทย)
- 대한민국 (한국어)
- 中国 (简体中文)
- 台灣 (繁體中文)
- 日本 (日本語)


Back to the top








