文章編號: 2264107 - 上次校閱: 2011年5月15日 - 版次: 6.0

已有新的 CWDIllegalInDllSearch 登錄項目可以控制 DLL 搜尋路徑演算法

系統提示本文適用於您使用的作業系統之外的作業系統。與您不相關的文章內容已停用。

在此頁中

全部展開 | 全部摺疊

結論

此更新引入了一個新的登錄項目 CWDIllegalInDllSearch,可讓使用者控制 DLL 搜尋路徑演算法。若載入 DLL 時未指定完整的路徑,LoadLibrary API 和 LoadLibraryEx API 就會使用 DLL 搜尋路徑演算法。

此更新讓系統管理員能夠根據整個系統或個別應用程式來定義下列項目:
  • 將目前工作目錄從程式庫搜尋路徑中移除。
  • 防止應用程式從 WebDAV 位置載入程式庫。
  • 防止應用程式從 WebDAV 和 UNC 位置載入程式庫。

其他相關資訊

重要此章節、方法或工作包含的步驟會告訴您要如何修改登錄。然而,如果登錄修改錯誤,可能會發生嚴重的問題。因此,請確定小心執行下列步驟。為加強保護,修改登錄之前,請務必將它備份起來。如果發生問題,您就可以還原登錄。如需有關如何備份和還原登錄的詳細資訊,請按一下下面的文件編號,檢視「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 搜尋順序:
  1. 應用程式進行載入的目錄
  2. 系統目錄
  3. 16 位元系統目錄
  4. Windows 目錄
  5. 目前的工作目錄 (CWD)
  6. PATH 環境變數中所列的目錄
新導入的 CWDIllegalInDllSearch 登錄機碼,可以讓電腦系統管理員修改 LoadLibraryLoadLibraryEx 所使用的 DLL 搜尋路徑演算法的執行方式。此登錄機碼可以允許略過某些特定的目錄。

可以將 CWDIllegalInDllSearch 登錄項目新增至下列路徑:
  • 若要在電腦上所有的應用程式中使用此登錄項目:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
  • 若要在電腦上的特定應用程式中使用此登錄項目:
    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\<application binary name>
    每個應用程式登錄項目一律都會覆寫整個系統的設定,此動作可讓整個系統的設定以更嚴格的方式設定。接著,您就可以將任何無法與整個系統的設定正確運作的應用程式設為應用程式設定。

    例如,將整個系統設定設為 2 讓系統管理員封鎖從 WebDAV 和 SMB 載入 DLL,然後將影像檔執行選項設定為 0 或 1,就能變更特定應用程式的執行方式,該應用程式需要此執行方式。

    CWDIllegalInDllSearch 值的登錄項目修改 LoadLibraryLoadLibraryEx 的執行方式如下所示。


案例 1:應用程式會由本機資料夾開始,例如?C:\Program Files

摺疊此表格展開此表格
CWDIllegalInDllSearchDLL 搜尋路徑在 LoadLibrary 和 LoadLibraryEx 的執行方式
0xFFFFFFFF在預設的 DLL 搜尋順序中移除目前的工作目錄
0使用前述的預設 DLL 搜尋路徑
1若將目前的工作目錄設為 WebDAV 資料夾,會封鎖從目前的工作目錄載入 DLL
2若將目前的工作目錄設為遠端的資料夾 (例如 WebDAV 和 UNC 位置) 會封鎖從目前的工作目錄載入 DLL。
沒有機碼或其他值使用前述的預設 DLL 搜尋路徑

案例 2:應用程式會由遠端資料夾開始,例如?\\remote\shareremote\share)

摺疊此表格展開此表格
CWDIllegalInDllSearchDLL 搜尋路徑在 LoadLibrary 和 LoadLibraryEx 的執行方式
0xFFFFFFFF在預設的 DLL 搜尋順序中移除目前的工作目錄
0使用前述的預設 DLL 搜尋路徑
1若將目前的工作目錄設為 WebDAV 資料夾,會封鎖從目前的工作目錄載入 DLL
2若將目前的工作目錄設為遠端的資料夾 (例如 WebDAV 和 UNC 位置) 可允許從目前的工作目錄載入 DLL。
沒有機碼或其他值使用前述的預設 DLL 搜尋路徑

案例 3:應用程式會由 WebDav 資料夾開始,例如 http://remote/share)

摺疊此表格展開此表格
CWDIllegalInDllSearchDLL 搜尋路徑在 LoadLibrary 和 LoadLibraryEx 的執行方式
0xFFFFFFFF在預設的 DLL 搜尋順序中移除目前的工作目錄
沒有機碼或其他值使用前述的預設 DLL 搜尋路徑

範例

範例 1:如何讓安裝在本機電腦上的所有應用程式停用從 WebDAV 共用載入 DLL

  1. 請以系統管理員的身分登入電腦。
  2. 開啟「登錄編輯程式」。
  3. 找出並按一下下列登錄子機碼:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
  4. 用滑鼠右鍵按一下 [工作階段管理員],指向 [新增],然後按一下 [DWORD 值]
  5. 輸入?CWDIllegalInDllSearch然後按一下 [修改]
  6. [數值資料] 方塊中輸入?1,然後按一下 [確定]

範例 2:如何只讓安裝在本機電腦上的特定應用程式停用從 WebDAV 共用載入 DLL

  1. 請以系統管理員的身分登入電腦。
  2. 開啟「登錄編輯程式」。
  3. 找出並按一下下列登錄子機碼:
    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\<application binary name>
  4. 如果沒有含應用程式二進位名稱的機碼,則您必須建立一個。
  5. 用滑鼠右鍵按一下?<[應用程式][二進位名稱]>,指向?[新增] ,然後按一下?[DWORD 值]
  6. 輸入?CWDIllegalInDllSearch然後按一下 [修改]
  7. [數值資料] 方塊中輸入?1,然後按一下 [確定]

範例 3:如何只讓安裝在本機電腦上的特定應用程式停用從遠端 (SMB) 共用載入 DLL

  1. 請以系統管理員的身分登入電腦。
  2. 開啟「登錄編輯程式」。
  3. 找出並按一下下列登錄子機碼:
    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\<application binary name>
  4. 如果沒有含應用程式二進位名稱的機碼,則您必須建立一個。
  5. 用滑鼠右鍵按一下?<[應用程式][二進位名稱]>,指向?[新增] ,然後按一下?[DWORD 值]
  6. 輸入?CWDIllegalInDllSearch然後按一下 [修改]
  7. [數值資料] 方塊中輸入?2,然後按一下 [確定]

為我修正此問題

本節所描述的 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 精靈中的步驟執行。
摺疊此表格展開此表格
啟用此 Fix it停用此 Fix it
修正此問題
Microsoft Fix it 50522
修正此問題
Microsoft Fix it 50523
注意
  • 此精靈可能只提供英文版本。不過,自動修正程式也適用於 Windows 的其他語言版本。
  • 如果您不在發生問題的電腦上,則可將 Fix it 解決方案儲存至快閃磁碟機或 CD,然後在發生問題的電腦上執行。

更新資訊

您可以從「Microsoft 下載中心」下載下列檔案:

Windows XP 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=e8941631-fe92-47c3-8872-2814e05e1ecc)

Windows XP x64 Edition 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?FamilyId=96f74b8f-fe85-4532-a38f-fc3b20317699)

Windows Server 2003 更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=7adba01e-46fc-44e5-b36c-9bfdad5a1d00)

Windows Server 2003 x64 Edition 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=741cc9ef-a0b6-4561-b81c-5e5e036600b7)

適用於 Itanium 型系統的 Windows Server 2003 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?FamilyId=89ad97ab-2ee3-48ec-8fbf-4c38d542404f)

Windows Vista 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=86631d97-ebed-4346-be66-d6ba0f500cea)

適用於 x64 型系統的 Windows Vista 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=1476975d-6675-41e2-b52d-3d8cb55a3a43)

Windows Server 2008 更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=083cd670-093c-46ef-91af-4f544f1258e8)

Windows Server 2008 x64 Edition 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=913fe4b5-1ab2-4c15-a586-60ef2ccf0f99)

適用於 Itanium 型系統的 Windows Server 2008 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?FamilyId=d0f7dbde-0d97-4177-84bc-99517ecf85b7)

Windows 7 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=cc86a592-609e-4808-958f-7afba40073d3)

適用於 x64 型系統的 Windows 7 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=a57b7cc2-cb05-4cf3-83c5-e0181d6ec184)

適用於 Itanium 型系統的 Windows Server 2008 R2 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?FamilyId=73d73ea8-ef50-4ad0-9b0c-df340ae4409a)

Windows Server 2008 R2 x64 Edition 的更新


摺疊此圖像展開此圖像
下載
立即下載此套件。 (http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&FamilyID=36f0e79d-fe0a-4605-a932-a129a93c4290)



發行日期: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 nameFile versionFile sizeDateTimePlatformSP requirementService branch
Mrxdav.sys5.1.2600.6007179,71230-Jun-201013:16x86SP3SP3GDR
Ntdll.dll5.1.2600.6007715,77630-Jun-201014:56x86SP3SP3GDR
Mrxdav.sys5.1.2600.6007180,09630-Jun-201013:34x86SP3SP3QFE
Ntdll.dll5.1.2600.6007715,77630-Jun-201014:54x86SP3SP3QFE

關於所有支援的 Windows Server 2003 與 Windows XP Professional x64 Edition 之 x64 版本

摺疊此表格展開此表格
File nameFile versionFile sizeDateTimePlatformSP requirementService branch
Mrxdav.sys5.2.3790.4737273,40803-Jul-201008:24x64SP2SP2GDR
Ntdll.dll5.2.3790.47371,261,56803-Jul-201008:24x64SP2SP2GDR
Wntdll.dll5.2.3790.4737775,68003-Jul-201008:24x86SP2SP2GDR\WOW
Mrxdav.sys5.2.3790.4737273,40803-Jul-201008:21x64SP2SP2QFE
Ntdll.dll5.2.3790.47371,262,08003-Jul-201008:21x64SP2SP2QFE
Wntdll.dll5.2.3790.4737775,68003-Jul-201008:21x86SP2SP2QFE\WOW

關於所有支援的 Windows Server 2003 之 x86 版本

摺疊此表格展開此表格
File nameFile versionFile sizeDateTimePlatformSP requirementService branch
Mrxdav.sys5.2.3790.4737188,92830-Jun-201013:28x86SP2SP2GDR
Ntdll.dll5.2.3790.4737774,65630-Jun-201016:17x86SP2SP2GDR
Mrxdav.sys5.2.3790.4737188,92830-Jun-201013:34x86SP2SP2QFE
Ntdll.dll5.2.3790.4737774,65630-Jun-201016:35x86SP2SP2QFE

關於所有支援的 Windows Server 2003 之 IA-64 版本

摺疊此表格展開此表格
File nameFile versionFile sizeDateTimePlatformSP requirementService branch
Mrxdav.sys5.2.3790.4737552,44805-Jul-201017:05IA-64SP2SP2GDR
Ntdll.dll5.2.3790.47371,648,12805-Jul-201017:05IA-64SP2SP2GDR
Wntdll.dll5.2.3790.4737775,68005-Jul-201017:05x86SP2SP2GDR\WOW
Mrxdav.sys5.2.3790.4737553,47205-Jul-201017:02IA-64SP2SP2QFE
Ntdll.dll5.2.3790.47371,648,64005-Jul-201017:02IA-64SP2SP2QFE
Ntkrnlmp.exe5.2.3790.46666,582,27205-Jul-201017:02IA-64SP2SP2QFE
Wntdll.dll5.2.3790.4737775,68005-Jul-201017:02x86SP2SP2QFE\WOW

Windows Vista 及 Windows Server 2008 檔案資訊

  • 套用至特定產品、里程碑 (RTM、SPn) 及服務分支 (LDR、GDR) 的檔案可透過檢視下列表格中所顯示的檔案版本號碼來確認:
    摺疊此表格展開此表格
    版本產品里程碑服務分支
    6.0.6000.16xxxWindows VistaRTMGDR
    6.0.6000.20xxxWindows VistaRTMLDR
    6.0.6001.18xxxWindows Vista SP1 和 Windows Server 2008 SP1SP1GDR
    6.0.6001.22xxxWindows Vista SP1 和 Windows Server 2008 SP1SP1LDR
    6.0.6002.18xxxWindows Vista SP2 和 Windows Server 2008 SP2SP2GDR
    6.0.6002.22xxxWindows Vista SP2 和 Windows Server 2008 SP2SP2LDR
  • 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 nameFile versionFile sizeDateTimePlatform
Ntdll.dll6.0.6001.184991,203,03230-Jun-201022:28x86
Ntdll.dll6.0.6001.227211,203,03230-Jun-201022:28x86
Ntdll.dll6.0.6002.182791,203,03230-Jun-201022:28x86
Ntdll.dll6.0.6002.224351,203,54430-Jun-201022:28x86

關於所有支援的 Windows Vista 及 Windows Server 2008 之 x64 版本

摺疊此表格展開此表格
File nameFile versionFile sizeDateTimePlatform
Ntdll.dll6.0.6001.184991,557,88830-Jun-201022:24x64
Ntdll.dll6.0.6001.227211,558,91230-Jun-201022:24x64
Ntdll.dll6.0.6002.182791,582,09630-Jun-201022:24x64
Ntdll.dll6.0.6002.224351,583,12030-Jun-201022:24x64
Ntdll.dll6.0.6001.184991,164,90430-Jun-201022:24x86
Ntdll.dll6.0.6001.227211,165,41630-Jun-201022:24x86
Ntdll.dll6.0.6002.182791,165,41630-Jun-201022:24x86
Ntdll.dll6.0.6002.224351,166,46430-Jun-201022:24x86

關於所有支援的 Windows Server 2008 之 IA-64 版本

摺疊此表格展開此表格
File nameFile versionFile sizeDateTimePlatform
Ntdll.dll6.0.6001.184992,564,50430-Jun-201022:19IA-64
Ntdll.dll6.0.6001.227212,563,99230-Jun-201022:19IA-64
Ntdll.dll6.0.6002.182792,563,99230-Jun-201022:19IA-64
Ntdll.dll6.0.6002.224352,565,52830-Jun-201022:19IA-64
Ntdll.dll6.0.6001.184991,164,90430-Jun-201022:19x86
Ntdll.dll6.0.6001.227211,165,41630-Jun-201022:19x86
Ntdll.dll6.0.6002.182791,165,41630-Jun-201022:19x86
Ntdll.dll6.0.6002.224351,166,46430-Jun-201022:19x86

Windows Vista 和 Windows Server 2008 的其他檔案資訊

關於所有支援的 Windows Vista 和 Windows Server 2008 之 x86 版本的其他檔案

摺疊此表格展開此表格
File namePackage_1_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,736
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_1_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size2,436
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_2_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,899
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_2_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size2,603
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_3_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,741
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_3_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size2,441
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_4_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,741
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_4_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size2,443
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_5_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size2,375
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_5_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size3,093
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_6_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size2,218
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_6_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size2,931
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_7_for_kb2264107_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size2,218
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_7_for_kb2264107~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size2,931
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client_1_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,354
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client_1~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,373
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client_2_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,673
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client_2~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,700
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,690
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,721
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_0_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,408
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_0~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,428
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_1_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,669
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_1~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,696
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,678
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,709
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_0_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,412
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_0~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,431
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_1_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,673
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_1~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,700
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,690
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,721
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv_0_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,409
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv_0~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,428
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv_bf~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,417
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv~31bf3856ad364e35~x86~~6.0.1.2.mum
File versionNot Applicable
File size1,436
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameUpdate-bf.mum
File versionNot Applicable
File size3,494
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameX86_61bc60071b9b61aa76d40c4f113bd741_31bf3856ad364e35_6.0.6001.18499_none_05c2a7101317839c.manifest
File versionNot Applicable
File size693
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameX86_71510d48a9321ed421ef3af3bd651c3b_31bf3856ad364e35_6.0.6002.22435_none_2662730a644dd47b.manifest
File versionNot Applicable
File size693
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameX86_d3665c674acde7d63aa008ba77eff09c_31bf3856ad364e35_6.0.6002.18279_none_01374d7fc696329b.manifest
File versionNot Applicable
File size693
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameX86_e2046630a9c590b709642d53c914312a_31bf3856ad364e35_6.0.6001.22721_none_28fb1ffa8d76f99b.manifest
File versionNot Applicable
File size693
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameX86_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.18499_none_587e9927fc6e803a.manifest
File versionNot Applicable
File size5,257
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable
File nameX86_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.22721_none_594be6e3155a8c03.manifest
File versionNot Applicable
File size5,257
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable
File nameX86_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.18279_none_5a7aaccdf9849aa3.manifest
File versionNot Applicable
File size5,257
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable
File nameX86_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.22435_none_5b2b8a0712856274.manifest
File versionNot Applicable
File size5,257
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable

所有支援的 Windows Vista 和 Windows Server 2008 之 x64 版本的其他檔案

摺疊此表格展開此表格
File nameAmd64_234fb62a80b953b5b5f7211350ee0db5_31bf3856ad364e35_6.0.6001.22721_none_cb62d321a994b6a9.manifest
File versionNot Applicable
File size697
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameAmd64_4ad8c43c2333fa28d3a0baeb43117898_31bf3856ad364e35_6.0.6001.18499_none_b2e86a01282bcc24.manifest
File versionNot Applicable
File size1,036
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameAmd64_730c524d4462e4279b8a7ab928e9ed6c_31bf3856ad364e35_6.0.6002.18279_none_48c2155287d44bbd.manifest
File versionNot Applicable
File size1,036
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameAmd64_84e6d8041559b20f1f2a0f8c55712116_31bf3856ad364e35_6.0.6001.22721_none_fde71f6f4aa8e5f6.manifest
File versionNot Applicable
File size1,036
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameAmd64_9af854c86e2ef45814cf8a51d65f80b2_31bf3856ad364e35_6.0.6002.22435_none_bb366403f3d0c6cc.manifest
File versionNot Applicable
File size1,036
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameAmd64_fa2942bf653af7a7acc85572973d8fa2_31bf3856ad364e35_6.0.6001.18499_none_036ad2da2a591eeb.manifest
File versionNot Applicable
File size697
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameAmd64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.18499_none_b49d34abb4cbf170.manifest
File versionNot Applicable
File size5,263
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable
File nameAmd64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.22721_none_b56a8266cdb7fd39.manifest
File versionNot Applicable
File size5,263
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable
File nameAmd64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.18279_none_b6994851b1e20bd9.manifest
File versionNot Applicable
File size5,263
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable
File nameAmd64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.22435_none_b74a258acae2d3aa.manifest
File versionNot Applicable
File size5,263
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable
File namePackage_1_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,746
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_1_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size2,450
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_2_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size2,118
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_2_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size3,045
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_3_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,958
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_3_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size2,881
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_4_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,958
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_4_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size2,883
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_5_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size2,600
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_5_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size3,541
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_6_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size2,441
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_6_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size3,377
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_7_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size2,441
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_7_for_kb2264107~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size3,377
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client_1_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,362
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client_1~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,381
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client_2_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,685
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client_2~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,712
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,700
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_client~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,731
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_0_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,416
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_0~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,436
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_1_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,681
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_1~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,708
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,688
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,719
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_0_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,420
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_0~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,439
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_1_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,685
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_1~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,712
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,700
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,731
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv_0_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,417
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv_0~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,436
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv_bf~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,425
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv~31bf3856ad364e35~amd64~~6.0.1.2.mum
File versionNot Applicable
File size1,444
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameUpdate-bf.mum
File versionNot Applicable
File size3,522
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.18499_none_bef1defde92cb36b.manifest
File versionNot Applicable
File size5,829
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.22721_none_bfbf2cb90218bf34.manifest
File versionNot Applicable
File size5,829
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.18279_none_c0edf2a3e642cdd4.manifest
File versionNot Applicable
File size5,829
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.22435_none_c19ecfdcff4395a5.manifest
File versionNot Applicable
File size5,829
Date (UTC)30-Jun-2010
Time (UTC)22:43
PlatformNot Applicable

所有支援的 Windows Server 2008 之 IA-64 版本的其他檔案

摺疊此表格展開此表格
File nameIa64_01ed13e0b81bda0e486983c95f335672_31bf3856ad364e35_6.0.6001.22721_none_a0b3362fd31f6289.manifest
File versionNot Applicable
File size695
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameIa64_0dd02d5231bf597cc6f42c0bb7ba9c4e_31bf3856ad364e35_6.0.6002.22435_none_f57937f3f2ce200b.manifest
File versionNot Applicable
File size1,034
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameIa64_81be58e5ac0f424b83c94f79168f86a1_31bf3856ad364e35_6.0.6001.18499_none_b5decde4b0b49d6c.manifest
File versionNot Applicable
File size1,034
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameIa64_c4f5ad45e16ffbace434662e779fbed3_31bf3856ad364e35_6.0.6001.18499_none_7aabb0954c38bfb9.manifest
File versionNot Applicable
File size695
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameIa64_f13865be1a2675f95f6e38e0931edd30_31bf3856ad364e35_6.0.6002.18279_none_ac5cd62625149dba.manifest
File versionNot Applicable
File size1,034
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameIa64_f908b94687b66697c94b746000e7c21f_31bf3856ad364e35_6.0.6001.22721_none_e6776d2f5f6e3452.manifest
File versionNot Applicable
File size1,034
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameIa64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.18499_none_58803d1dfc6c8936.manifest
File versionNot Applicable
File size5,260
Date (UTC)30-Jun-2010
Time (UTC)22:42
PlatformNot Applicable
File nameIa64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.22721_none_594d8ad9155894ff.manifest
File versionNot Applicable
File size5,260
Date (UTC)30-Jun-2010
Time (UTC)22:42
PlatformNot Applicable
File nameIa64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.18279_none_5a7c50c3f982a39f.manifest
File versionNot Applicable
File size5,260
Date (UTC)30-Jun-2010
Time (UTC)22:42
PlatformNot Applicable
File nameIa64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.22435_none_5b2d2dfd12836b70.manifest
File versionNot Applicable
File size5,260
Date (UTC)30-Jun-2010
Time (UTC)22:42
PlatformNot Applicable
File namePackage_1_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,741
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_1_for_kb2264107~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size2,443
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_2_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,953
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_2_for_kb2264107~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size2,874
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_3_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,953
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_3_for_kb2264107~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size2,874
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_4_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size2,270
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_4_for_kb2264107~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size3,201
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_5_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size2,270
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_5_for_kb2264107~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size3,201
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_0_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,412
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_0~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,431
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_1_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,513
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_1~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,536
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,683
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_sc~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,714
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_0_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,416
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_0~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,435
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_1_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,516
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_1~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,540
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,695
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_server~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,726
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv_0_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,413
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv_0~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,432
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv_bf~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,421
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File namePackage_for_kb2264107_winpesrv~31bf3856ad364e35~ia64~~6.0.1.2.mum
File versionNot Applicable
File size1,440
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameUpdate-bf.mum
File versionNot Applicable
File size2,699
Date (UTC)05-Jul-2010
Time (UTC)06:28
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.18499_none_bef1defde92cb36b.manifest
File versionNot Applicable
File size5,829
Date (UTC)30-Jun-2010
Time (UTC)22:42
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6001.22721_none_bfbf2cb90218bf34.manifest
File versionNot Applicable
File size5,829
Date (UTC)30-Jun-2010
Time (UTC)22:42
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.18279_none_c0edf2a3e642cdd4.manifest
File versionNot Applicable
File size5,829
Date (UTC)30-Jun-2010
Time (UTC)22:42
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.0.6002.22435_none_c19ecfdcff4395a5.manifest
File versionNot Applicable
File size5,829
Date (UTC)30-Jun-2010
Time (UTC)22:42
PlatformNot Applicable

Windows 7 和 Windows Server 2008 R2 檔案資訊

  • 套用至特定產品、里程碑 (RTM、SPn) 及服務分支 (LDR、GDR) 的檔案可透過檢視下列表格中所顯示的檔案版本號碼來確認:
    摺疊此表格展開此表格
    版本產品里程碑服務分支
    6.1.7600.16xxxWindows 7 和 Windows Server 2008 R2RTMGDR
    6.1.7600.20xxxWindows 7 和 Windows Server 2008 R2RTMLDR
  • GDR 服務分支只包含針對普遍的嚴重問題所發行的通用修正程式。LDR 服務分支除了通用修正程式之外,還包含 Hotfix。
  • 每一個環境安裝的 MANIFEST 檔案 (.manifest) 及 MUM 檔案 (.mum) 皆會分別列在<Windows 7 和 Windows Server 2008 R2 的其他檔案資訊>一節中。對於維持已更新元件的狀態,MUM 及 MANIFEST 檔案及相關的安全性目錄 (.cat) 檔案皆很重要。屬性未列出的安全性目錄檔案是以 Microsoft 數位簽章簽署。

關於所有支援的 Windows 7 之 x86 版本

摺疊此表格展開此表格
File nameFile versionFile sizeDateTimePlatform
Ntdll.dll6.1.7600.166251,286,96030-Jun-201006:27x86
Ntdll.dll6.1.7600.207451,286,95230-Jun-201006:20x86

關於所有支援的 Windows 7 和 Windows Server 2008 R2 之 x64 版本

摺疊此表格展開此表格
File nameFile versionFile sizeDateTimePlatform
Ntdll.dll6.1.7600.166251,736,60030-Jun-201007:14x64
Ntdll.dll6.1.7600.207451,737,62430-Jun-201007:32x64
Ntdll.dll6.1.7600.166251,290,05630-Jun-201006:27x86
Ntdll.dll6.1.7600.207451,291,07230-Jun-201006:20x86

關於所有支援的 Windows Server 2008 R2 之 IA-64 版本

摺疊此表格展開此表格
File nameFile versionFile sizeDateTimePlatform
Ntdll.dll6.1.7600.166252,784,24830-Jun-201005:47IA-64
Ntdll.dll6.1.7600.207452,784,76030-Jun-201005:41IA-64
Ntdll.dll6.1.7600.166251,290,05630-Jun-201006:27x86
Ntdll.dll6.1.7600.207451,291,07230-Jun-201006:20x86

Windows 7 和 Windows Server 2008 R2 的其他檔案資訊

所有支援的 Windows 7 之 x86 版本的其他檔案

摺疊此表格展開此表格
File namePackage_1_for_kb2264107_bf~31bf3856ad364e35~x86~~6.1.1.2.mum
File versionNot Applicable
File size1,774
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_1_for_kb2264107~31bf3856ad364e35~x86~~6.1.1.2.mum
File versionNot Applicable
File size2,474
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_2_for_kb2264107_bf~31bf3856ad364e35~x86~~6.1.1.2.mum
File versionNot Applicable
File size1,779
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_2_for_kb2264107~31bf3856ad364e35~x86~~6.1.1.2.mum
File versionNot Applicable
File size2,479
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_3_for_kb2264107_bf~31bf3856ad364e35~x86~~6.1.1.2.mum
File versionNot Applicable
File size1,759
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_3_for_kb2264107~31bf3856ad364e35~x86~~6.1.1.2.mum
File versionNot Applicable
File size2,459
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_for_kb2264107_rtm_bf~31bf3856ad364e35~x86~~6.1.1.2.mum
File versionNot Applicable
File size2,380
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_for_kb2264107_rtm~31bf3856ad364e35~x86~~6.1.1.2.mum
File versionNot Applicable
File size2,431
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameUpdate-bf.mum
File versionNot Applicable
File size1,850
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameX86_2045a589aaa17c99881b63c9bbc7512e_31bf3856ad364e35_6.1.7600.16625_none_48b95d16d73babe2.manifest
File versionNot Applicable
File size693
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameX86_7ff10b93251f422739846b250b29b7dc_31bf3856ad364e35_6.1.7600.20745_none_633ab693bb449a7c.manifest
File versionNot Applicable
File size693
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameX86_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.16625_none_58ee199f5d509156.manifest
File versionNot Applicable
File size3,802
Date (UTC)30-Jun-2010
Time (UTC)06:54
PlatformNot Applicable
File nameX86_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.20745_none_59621692767e6902.manifest
File versionNot Applicable
File size3,802
Date (UTC)30-Jun-2010
Time (UTC)06:48
PlatformNot Applicable

所有支援的 Windows 7 和 Windows Server 2008 R2 之 x64 版本的其他檔案

摺疊此表格展開此表格
File nameAmd64_3e508c9a14911d7cc089aaa8d5ab8a1a_31bf3856ad364e35_6.1.7600.16625_none_8966f7bc47286abb.manifest
File versionNot Applicable
File size697
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameAmd64_60b46a4071ff17f63038e17efde27ab1_31bf3856ad364e35_6.1.7600.20745_none_b6ef796b96806e9a.manifest
File versionNot Applicable
File size697
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameAmd64_6f17b0e56e01a63c92b34a6524458f99_31bf3856ad364e35_6.1.7600.16625_none_7ed7f804e56af77b.manifest
File versionNot Applicable
File size1,036
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameAmd64_781dd2a8176197181e8874fed7e9e798_31bf3856ad364e35_6.1.7600.20745_none_79941a4eba3f8b6c.manifest
File versionNot Applicable
File size1,036
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameAmd64_7c757053d7e8fc7552a56a286f1db3a6_31bf3856ad364e35_6.1.7600.16625_none_aa5e4e7046c9f576.manifest
File versionNot Applicable
File size697
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameAmd64_dd09fe43aafcff5990f874aa5af056fe_31bf3856ad364e35_6.1.7600.20745_none_816e6b6501ce3b9f.manifest
File versionNot Applicable
File size697
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameAmd64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.16625_none_b50cb52315ae028c.manifest
File versionNot Applicable
File size3,806
Date (UTC)30-Jun-2010
Time (UTC)07:47
PlatformNot Applicable
File nameAmd64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.20745_none_b580b2162edbda38.manifest
File versionNot Applicable
File size3,806
Date (UTC)30-Jun-2010
Time (UTC)08:01
PlatformNot Applicable
File namePackage_1_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.1.1.2.mum
File versionNot Applicable
File size1,784
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_1_for_kb2264107~31bf3856ad364e35~amd64~~6.1.1.2.mum
File versionNot Applicable
File size2,488
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_2_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.1.1.2.mum
File versionNot Applicable
File size2,203
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_2_for_kb2264107~31bf3856ad364e35~amd64~~6.1.1.2.mum
File versionNot Applicable
File size4,068
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_3_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.1.1.2.mum
File versionNot Applicable
File size2,007
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_3_for_kb2264107~31bf3856ad364e35~amd64~~6.1.1.2.mum
File versionNot Applicable
File size3,868
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_4_for_kb2264107_bf~31bf3856ad364e35~amd64~~6.1.1.2.mum
File versionNot Applicable
File size1,976
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_4_for_kb2264107~31bf3856ad364e35~amd64~~6.1.1.2.mum
File versionNot Applicable
File size2,900
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_for_kb2264107_rtm_bf~31bf3856ad364e35~amd64~~6.1.1.2.mum
File versionNot Applicable
File size3,294
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_for_kb2264107_rtm~31bf3856ad364e35~amd64~~6.1.1.2.mum
File versionNot Applicable
File size3,373
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameUpdate-bf.mum
File versionNot Applicable
File size2,494
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.16625_none_bf615f754a0ec487.manifest
File versionNot Applicable
File size3,566
Date (UTC)30-Jun-2010
Time (UTC)06:50
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.20745_none_bfd55c68633c9c33.manifest
File versionNot Applicable
File size3,566
Date (UTC)30-Jun-2010
Time (UTC)06:44
PlatformNot Applicable

所有支援的 Windows Server 2008 R2 之 IA-64 版本的其他檔案

摺疊此表格展開此表格
File nameIa64_284d06872f26ffc9dbd8f4b5ad4a40d5_31bf3856ad364e35_6.1.7600.20745_none_0bb3c667b68e275c.manifest
File versionNot Applicable
File size695
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameIa64_3e508c9a14911d7cc089aaa8d5ab8a1a_31bf3856ad364e35_6.1.7600.16625_none_2d4a002e8ec90281.manifest
File versionNot Applicable
File size696
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameIa64_60b46a4071ff17f63038e17efde27ab1_31bf3856ad364e35_6.1.7600.20745_none_5ad281ddde210660.manifest
File versionNot Applicable
File size696
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameIa64_e9ba15c32fb5a7d9f4d55380dbbe2a49_31bf3856ad364e35_6.1.7600.16625_none_033898e00a16976e.manifest
File versionNot Applicable
File size695
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameIa64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.16625_none_58efbd955d4e9a52.manifest
File versionNot Applicable
File size3,804
Date (UTC)30-Jun-2010
Time (UTC)07:39
PlatformNot Applicable
File nameIa64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.20745_none_5963ba88767c71fe.manifest
File versionNot Applicable
File size3,804
Date (UTC)30-Jun-2010
Time (UTC)07:36
PlatformNot Applicable
File namePackage_1_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.1.1.2.mum
File versionNot Applicable
File size1,785
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_1_for_kb2264107~31bf3856ad364e35~ia64~~6.1.1.2.mum
File versionNot Applicable
File size3,639
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_2_for_kb2264107_bf~31bf3856ad364e35~ia64~~6.1.1.2.mum
File versionNot Applicable
File size2,001
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_2_for_kb2264107~31bf3856ad364e35~ia64~~6.1.1.2.mum
File versionNot Applicable
File size3,858
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_for_kb2264107_rtm_bf~31bf3856ad364e35~ia64~~6.1.1.2.mum
File versionNot Applicable
File size1,931
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File namePackage_for_kb2264107_rtm~31bf3856ad364e35~ia64~~6.1.1.2.mum
File versionNot Applicable
File size1,966
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameUpdate-bf.mum
File versionNot Applicable
File size1,664
Date (UTC)02-Jul-2010
Time (UTC)19:06
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.16625_none_bf615f754a0ec487.manifest
File versionNot Applicable
File size3,566
Date (UTC)30-Jun-2010
Time (UTC)06:50
PlatformNot Applicable
File nameWow64_microsoft-windows-ntdll_31bf3856ad364e35_6.1.7600.20745_none_bfd55c68633c9c33.manifest
File versionNot Applicable
File size3,566
Date (UTC)30-Jun-2010
Time (UTC)06:44
PlatformNot 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)
注意 :本文屬於「快速發佈」文章,係由 Microsoft 技術支援或組織內部直接建立。 本文所包含的資訊是為了回應新問題而依現況提供。 因此為了迅速對外發佈,文章內容可能含有印刷錯誤,而且可能會在不另行通知的情況下進行修改。 如需其他考量事項,請參閱使用規定 (http://go.microsoft.com/fwlink/?LinkId=151500)

這篇文章中的資訊適用於:
  • 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及(或)其供應商無論如何不對因或與使用本伺服器上資訊或與資訊的實行有關而引起的契約、過失或其他侵權行為之訴訟中的特別的、間接的、衍生性的損害或任何因使用而喪失所導致的之損害、資料或利潤負任何責任。