文章編號: 2264107 - 上次校閱: 2011年5月15日 - 版次: 6.0 已有新的 CWDIllegalInDllSearch 登錄項目可以控制 DLL 搜尋路徑演算法
在此頁中結論此更新引入了一個新的登錄項目 CWDIllegalInDllSearch,可讓使用者控制 DLL 搜尋路徑演算法。若載入 DLL 時未指定完整的路徑,LoadLibrary API 和 LoadLibraryEx API 就會使用 DLL 搜尋路徑演算法。
此更新讓系統管理員能夠根據整個系統或個別應用程式來定義下列項目:
其他相關資訊重要此章節、方法或工作包含的步驟會告訴您要如何修改登錄。然而,如果登錄修改錯誤,可能會發生嚴重的問題。因此,請確定小心執行下列步驟。為加強保護,修改登錄之前,請務必將它備份起來。如果發生問題,您就可以還原登錄。如需有關如何備份和還原登錄的詳細資訊,請按一下下面的文件編號,檢視「Microsoft 知識庫」中的文件: 322756?
(http://support.microsoft.com/kb/322756/ZH-TW/
)
如何在 Windows 中備份及還原登錄 CWDIllegalInDllSearch 登錄項目的運作方式如果應用程式在未指定完整路徑的情況下動態地載入動態 DLL,Windows 就會嘗試在完整定義的目錄集中搜尋,以找出此 DLL。這些目錄集就是所謂的 DLL 搜尋路徑。當 Windows 在目錄中找到 DLL 時,即會開始載入該 DLL。若 Windows 依 DLL 搜尋順序在任何目錄中仍找不到該 DLL,則會傳回 DLL 載入作業失敗。使用 LoadLibrary 函數和 LoadLibraryEx 函數動態地載入 DLL。以下是這二個函數的 DLL 搜尋順序:
可以將 CWDIllegalInDllSearch 登錄項目新增至下列路徑:
|
| CWDIllegalInDllSearch 值 | DLL 搜尋路徑在 LoadLibrary 和 LoadLibraryEx 的執行方式 |
|---|---|
| 0xFFFFFFFF | 在預設的 DLL 搜尋順序中移除目前的工作目錄 |
| 0 | 使用前述的預設 DLL 搜尋路徑 |
| 1 | 若將目前的工作目錄設為 WebDAV 資料夾,會封鎖從目前的工作目錄載入 DLL |
| 2 | 若將目前的工作目錄設為遠端的資料夾 (例如 WebDAV 和 UNC 位置) 會封鎖從目前的工作目錄載入 DLL。 |
| 沒有機碼或其他值 | 使用前述的預設 DLL 搜尋路徑 |
案例 2:應用程式會由遠端資料夾開始,例如?\\remote\shareremote\share)
摺疊此表格
| CWDIllegalInDllSearch 值 | DLL 搜尋路徑在 LoadLibrary 和 LoadLibraryEx 的執行方式 |
|---|---|
| 0xFFFFFFFF | 在預設的 DLL 搜尋順序中移除目前的工作目錄 |
| 0 | 使用前述的預設 DLL 搜尋路徑 |
| 1 | 若將目前的工作目錄設為 WebDAV 資料夾,會封鎖從目前的工作目錄載入 DLL |
| 2 | 若將目前的工作目錄設為遠端的資料夾 (例如 WebDAV 和 UNC 位置) 可允許從目前的工作目錄載入 DLL。 |
| 沒有機碼或其他值 | 使用前述的預設 DLL 搜尋路徑 |
案例 3:應用程式會由 WebDav 資料夾開始,例如 http://remote/share)
摺疊此表格
| CWDIllegalInDllSearch 值 | DLL 搜尋路徑在 LoadLibrary 和 LoadLibraryEx 的執行方式 |
|---|---|
| 0xFFFFFFFF | 在預設的 DLL 搜尋順序中移除目前的工作目錄 |
| 沒有機碼或其他值 | 使用前述的預設 DLL 搜尋路徑 |
範例
範例 1:如何讓安裝在本機電腦上的所有應用程式停用從 WebDAV 共用載入 DLL
- 請以系統管理員的身分登入電腦。
- 開啟「登錄編輯程式」。
- 找出並按一下下列登錄子機碼:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session ManagerHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
- 用滑鼠右鍵按一下 [工作階段管理員],指向 [新增],然後按一下 [DWORD 值]。
- 輸入?CWDIllegalInDllSearch,然後按一下 [修改]。
- 在 [數值資料] 方塊中輸入?1,然後按一下 [確定]。
範例 2:如何只讓安裝在本機電腦上的特定應用程式停用從 WebDAV 共用載入 DLL
- 請以系統管理員的身分登入電腦。
- 開啟「登錄編輯程式」。
- 找出並按一下下列登錄子機碼:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\<application binary name>
- 如果沒有含應用程式二進位名稱的機碼,則您必須建立一個。
- 用滑鼠右鍵按一下?<[應用程式][二進位名稱]>,指向?[新增] ,然後按一下?[DWORD 值]。
- 輸入?CWDIllegalInDllSearch,然後按一下 [修改]。
- 在 [數值資料] 方塊中輸入?1,然後按一下 [確定]。
範例 3:如何只讓安裝在本機電腦上的特定應用程式停用從遠端 (SMB) 共用載入 DLL
- 請以系統管理員的身分登入電腦。
- 開啟「登錄編輯程式」。
- 找出並按一下下列登錄子機碼:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\<application binary name>
- 如果沒有含應用程式二進位名稱的機碼,則您必須建立一個。
- 用滑鼠右鍵按一下?<[應用程式][二進位名稱]>,指向?[新增] ,然後按一下?[DWORD 值]。
- 輸入?CWDIllegalInDllSearch,然後按一下 [修改]。
- 在 [數值資料] 方塊中輸入?2,然後按一下 [確定]。
為我修正此問題
本節所描述的 Fix it 解決方案的目的不在於取代任何安全性更新。我們建議您一律安裝最新的安全性更新。不過我們仍提供此 Fix it 解決方案給客戶,以作為無法使用或無法安裝安全性更新時保護系統的因應措施。
只有從 WebDAV 和 SMB 位置封鎖載入不安全的 DLL 時,才需要 Fix it 解決方案進行部署登錄項目。
注意在您執行 Fix it 解決方案之前,您必須先下載並安裝更新 2264107,本文稍後將會說明此更新。依據預設,當您安裝更新 2264107 時,保護會停用。然後,您就可以依照本文中的說明來手動設定保護,或者您也可以執行 Fix it,當執行 Fix it 時,保護會啟用以防止遠端、不安全的 DLL 載入。
若要手動復原由 Fix it 解決方案變更的設定,可以將下列 CWDIllegalInDllSearch 登錄項目的值重設為 0 (零):
如果要啟用或停用此 Fixit 解決方案,請按一下 [Fix it] 按鈕、[啟用此 Fix it] 標題下方的連結或 [停用此 Fix it] 下方的連結。按一下 [檔案下載] 對話方塊中的 [執行],並依照 Fix it 精靈中的步驟執行。
注意
只有從 WebDAV 和 SMB 位置封鎖載入不安全的 DLL 時,才需要 Fix it 解決方案進行部署登錄項目。
注意在您執行 Fix it 解決方案之前,您必須先下載並安裝更新 2264107,本文稍後將會說明此更新。依據預設,當您安裝更新 2264107 時,保護會停用。然後,您就可以依照本文中的說明來手動設定保護,或者您也可以執行 Fix it,當執行 Fix it 時,保護會啟用以防止遠端、不安全的 DLL 載入。
若要手動復原由 Fix it 解決方案變更的設定,可以將下列 CWDIllegalInDllSearch 登錄項目的值重設為 0 (零):
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\CWDIllegalInDLLSearch
將值設為 0 可復原由 Fix it 解決方案進行的變更。
如果要啟用或停用此 Fixit 解決方案,請按一下 [Fix it] 按鈕、[啟用此 Fix it] 標題下方的連結或 [停用此 Fix it] 下方的連結。按一下 [檔案下載] 對話方塊中的 [執行],並依照 Fix it 精靈中的步驟執行。
注意
- 此精靈可能只提供英文版本。不過,自動修正程式也適用於 Windows 的其他語言版本。
- 如果您不在發生問題的電腦上,則可將 Fix it 解決方案儲存至快閃磁碟機或 CD,然後在發生問題的電腦上執行。
更新資訊
您可以從「Microsoft 下載中心」下載下列檔案:
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=e8941631-fe92-47c3-8872-2814e05e1ecc)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?FamilyId=96f74b8f-fe85-4532-a38f-fc3b20317699)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=7adba01e-46fc-44e5-b36c-9bfdad5a1d00)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=741cc9ef-a0b6-4561-b81c-5e5e036600b7)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?FamilyId=89ad97ab-2ee3-48ec-8fbf-4c38d542404f)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=86631d97-ebed-4346-be66-d6ba0f500cea)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=1476975d-6675-41e2-b52d-3d8cb55a3a43)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=083cd670-093c-46ef-91af-4f544f1258e8)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=913fe4b5-1ab2-4c15-a586-60ef2ccf0f99)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?FamilyId=d0f7dbde-0d97-4177-84bc-99517ecf85b7)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=cc86a592-609e-4808-958f-7afba40073d3)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=a57b7cc2-cb05-4cf3-83c5-e0181d6ec184)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?FamilyId=73d73ea8-ef50-4ad0-9b0c-df340ae4409a)
立即下載此套件。
(http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=36f0e79d-fe0a-4605-a932-a129a93c4290)
發行日期:2010 年 8 月 23 日
如需有關如何下載 Microsoft 支援檔案的詳細資訊,請按一下下面的文件編號,檢視「Microsoft 知識庫」中的文件:
Windows XP 的更新
摺疊此圖像

Windows XP x64 Edition 的更新
摺疊此圖像

Windows Server 2003 更新
摺疊此圖像

Windows Server 2003 x64 Edition 的更新
摺疊此圖像

適用於 Itanium 型系統的 Windows Server 2003 的更新
摺疊此圖像

Windows Vista 的更新
摺疊此圖像

適用於 x64 型系統的 Windows Vista 的更新
摺疊此圖像

Windows Server 2008 更新
摺疊此圖像

Windows Server 2008 x64 Edition 的更新
摺疊此圖像

適用於 Itanium 型系統的 Windows Server 2008 的更新
摺疊此圖像

Windows 7 的更新
摺疊此圖像

適用於 x64 型系統的 Windows 7 的更新
摺疊此圖像

適用於 Itanium 型系統的 Windows Server 2008 R2 的更新
摺疊此圖像

Windows Server 2008 R2 x64 Edition 的更新
摺疊此圖像

發行日期:2010 年 8 月 23 日
如需有關如何下載 Microsoft 支援檔案的詳細資訊,請按一下下面的文件編號,檢視「Microsoft 知識庫」中的文件:
119591?
(http://support.microsoft.com/kb/119591/ZH-TW/
)
如何從線上服務取得 Microsoft 支援檔案
Microsoft 已對這個檔案做過病毒掃描。Microsoft 是利用發佈當日的最新病毒偵測軟體來掃描檔案,看看有沒有病毒感染。檔案會儲存在安全的伺服器上,以避免任何未經授權的更改。
檔案資訊
此軟體更新的英文 (美國) 版會安裝具有下表中所列屬性的檔案。這些檔案的日期和時間是以 Coordinated Universal Time (UTC) 表示。本機電腦上這些檔案的日期和時間,是以您當地的時間和目前的日光節約 (DST) 的時差來顯示。此外,當您對檔案執行特定作業時,其日期和時間可能會改變。
Windows XP 和 Windows Server 2003 檔案資訊
- 套用至特定里程碑 (RTM、SPn) 和服務分支 (QFE、GDR) 的檔案,會記錄在「SP 要求」和「服務分支」欄中。
- GDR 服務分支只包含針對普遍的嚴重問題所發行的通用修正程式。QFE 服務分支除了通用修正程式之外,還包含 Hotfix。
- 除了這些表格中所列的檔案外,此軟體更新也會安裝使用 Microsoft 數位簽章所簽署的相關安全性目錄檔案 (KBnumber.cat)。
關於所有支援的 Windows XP 之 x86 版本
摺疊此表格
| 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 |
關於所有支援的 Windows Server 2003 與 Windows XP Professional x64 Edition 之 x64 版本
摺疊此表格
| 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 |
關於所有支援的 Windows Server 2003 之 x86 版本
摺疊此表格
| 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 |
關於所有支援的 Windows Server 2003 之 IA-64 版本
摺疊此表格
| 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 及 Windows Server 2008 檔案資訊
- 套用至特定產品、里程碑 (RTM、SPn) 及服務分支 (LDR、GDR) 的檔案可透過檢視下列表格中所顯示的檔案版本號碼來確認:
摺疊此表格
版本 產品 里程碑 服務分支 6.0.6000.16xxx Windows Vista RTM GDR 6.0.6000.20xxx Windows Vista RTM LDR 6.0.6001.18xxx Windows Vista SP1 和 Windows Server 2008 SP1 SP1 GDR 6.0.6001.22xxx Windows Vista SP1 和 Windows Server 2008 SP1 SP1 LDR 6.0.6002.18xxx Windows Vista SP2 和 Windows Server 2008 SP2 SP2 GDR 6.0.6002.22xxx Windows Vista SP2 和 Windows Server 2008 SP2 SP2 LDR - Service Pack 1 已整合至發行版本的 Windows Server 2008。因此,RTM 里程碑檔案只適用於 Windows Vista。RTM 里程碑檔案的版本號碼是 6.0.0000.xxxxxx。
- GDR 服務分支只包含針對普遍的嚴重問題所發行的通用修正程式。LDR 服務分支除了通用修正程式之外,還包含 Hotfix。
- 每一個環境安裝的 MANIFEST 檔案 (.manifest) 及 MUM 檔案 (.mum) 皆會分別列出。對於維持已更新元件的狀態,MUM 及 MANIFEST 檔案及相關的安全性目錄 (.cat) 檔案皆很重要。這些安全性目錄檔案 (屬性並未列出) 是以 Microsoft 數位簽章簽署。
關於所有支援的 Windows Vista 及 Windows Server 2008 之 x86 版本
摺疊此表格
| 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 |
關於所有支援的 Windows Vista 及 Windows Server 2008 之 x64 版本
摺疊此表格
| 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 |
關於所有支援的 Windows Server 2008 之 IA-64 版本
摺疊此表格
| 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 |
Windows Vista 和 Windows Server 2008 的其他檔案資訊
關於所有支援的 Windows Vista 和 Windows Server 2008 之 x86 版本的其他檔案
摺疊此表格
| 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 |
所有支援的 Windows Vista 和 Windows Server 2008 之 x64 版本的其他檔案
摺疊此表格
| 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 |
所有支援的 Windows Server 2008 之 IA-64 版本的其他檔案
摺疊此表格
| 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 和 Windows Server 2008 R2 檔案資訊
- 套用至特定產品、里程碑 (RTM、SPn) 及服務分支 (LDR、GDR) 的檔案可透過檢視下列表格中所顯示的檔案版本號碼來確認: 摺疊此表格
版本 產品 里程碑 服務分支 6.1.7600.16xxx Windows 7 和 Windows Server 2008 R2 RTM GDR 6.1.7600.20xxx Windows 7 和 Windows Server 2008 R2 RTM LDR - GDR 服務分支只包含針對普遍的嚴重問題所發行的通用修正程式。LDR 服務分支除了通用修正程式之外,還包含 Hotfix。
- 每一個環境安裝的 MANIFEST 檔案 (.manifest) 及 MUM 檔案 (.mum) 皆會分別列在<Windows 7 和 Windows Server 2008 R2 的其他檔案資訊>一節中。對於維持已更新元件的狀態,MUM 及 MANIFEST 檔案及相關的安全性目錄 (.cat) 檔案皆很重要。屬性未列出的安全性目錄檔案是以 Microsoft 數位簽章簽署。
關於所有支援的 Windows 7 之 x86 版本
摺疊此表格
| 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 |
關於所有支援的 Windows 7 和 Windows Server 2008 R2 之 x64 版本
摺疊此表格
| 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 |
關於所有支援的 Windows Server 2008 R2 之 IA-64 版本
摺疊此表格
| 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 |
Windows 7 和 Windows Server 2008 R2 的其他檔案資訊
所有支援的 Windows 7 之 x86 版本的其他檔案
摺疊此表格
| 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 |
所有支援的 Windows 7 和 Windows Server 2008 R2 之 x64 版本的其他檔案
摺疊此表格
| 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 |
所有支援的 Windows Server 2008 R2 之 IA-64 版本的其他檔案
摺疊此表格
| 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 |
?考
如需有關 LoadLibrary 函數和 LoadLibraryEx 函數的詳細資訊,請造訪下列 Microsoft 網站:
LoadLibrary 函數簡介
(http://msdn.microsoft.com/zh-tw/library/ms684175(v=VS.85).aspx)
LoadLibraryEx 函數簡介 (http://msdn.microsoft.com/zh-tw/library/ms684179(v=VS.85).aspx)
LoadLibraryEx 函數簡介 (http://msdn.microsoft.com/zh-tw/library/ms684179(v=VS.85).aspx)
這篇文章中的資訊適用於:
- 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
- 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
- Windows Vista Service Pack 1
- Microsoft Windows Server 2003 Service Pack 2
- Microsoft Windows XP Service Pack 3
關鍵字:? | kbexpertiseinter kbfix kbsecurity kbsurveynew kbinfo kbregistry kbmsifixme kbfixme KB2264107 |
Microsoft及(或)其供應商不就任何在本伺服器上發表的文字資料及其相關圖表資訊的恰當性作任何承諾。所有文字資料及其相關圖表均以「現狀」供應,不負任何擔保責任。Microsoft及(或)其供應商謹此聲明,不負任何對與此資訊有關之擔保責任,包括關於適售性、適用於某一特定用途、權利或不侵權的明示或默示擔保責任。Microsoft及(或)其供應商無論如何不對因或與使用本伺服器上資訊或與資訊的實行有關而引起的契約、過失或其他侵權行為之訴訟中的特別的、間接的、衍生性的損害或任何因使用而喪失所導致的之損害、資料或利潤負任何責任。
其他資源
其他支援網站
社群
立即取得協助
文章翻譯
- (????? (?????
- (????? ?????? (???????
- 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)
- Ελλ?δα (Ελληνικ?)
- ?????? (???????)
- ???? (?????)
- ??? (???)
- ???? (???)
- 中? (?体中文)
- 日本 (日本語)






Windows Live
Facebook
Twitter
Linkedin
Digg it
Yahoo
Delicious
StumbleUpon
Yammer
Reddit
Technorati
FriendFeed
Email
回此頁最上方
