使用 Microsoft 登入
登入或建立帳戶。
您好:
選取其他帳戶。
您有多個帳戶
選擇您要用來登入的帳戶。

檢視本文適用的產品。

摘要

此 Microsoft .NET Framework 的安全性更新解決 .NET Framework (和 .NET Core) 元件無法完全驗證憑證時存在的安全性功能略過弱點。 若要深入了解此弱點,請參閱 Microsoft 一般弱點及安全風險 CVE-2017-0248

此更新還包含對 Windows Presentation Framework PackageDigitalSignatureManager 元件使用 SHA256 散列算法簽署套件的能力的安全性增強修正。

重要

  • Windows RT 8.1、Windows 8.1 和 Windows Server 2012 R2 未來所有的安全性與非安全性更新皆需要安裝更新  2919355  (英文)。 我們建議您 在 Windows RT 8.1、Windows 8.1 或 Windows Server 2012 R2 電腦上安裝更新 2919355  (英文), 以便收到未來的更新。

  • 如果您在安裝此更新之後安裝語言套件,您必須重新安裝此更新。 因此,我們建議您在安裝此更新前,先安裝任何需要的語言套件。 如需詳細資訊,請參閱將語言套件新增到 Windows

此安全性更新的其他相關資訊

警告

如果您使用「登錄編輯程式」或其他方法不當地修改登錄,可能會發生嚴重問題。 您可能需要重新安裝作業系統才能解決這些問題。 Microsoft 不保證可以解決這些問題。 請自行承擔修改登錄的一切風險。

  • 增強型金鑰使用 (EKU) 在 第 4.2.1.12 節中的 RFC 5280中進行了描述: 除了或代替在金鑰使用擴展中指示的基本目的之外,該擴展表示可以使用經驗證 的公開金鑰的一個或多個目的。 例如,用’於用戶端到伺服器驗證的憑證必須設定為用戶端驗證。 同樣的,用’於伺服器驗證的憑證必須設定為伺服器驗證。

    當憑證用於驗證時,驗證器檢查用戶端憑證並在應用程式策略擴展中查找正確的目標物件識別碼。 例如,用戶端驗證的物件識別碼為 1.3.6.1.5.5.7.3.2。 當憑證用於用戶端驗證時,該物件識別碼必須存在於憑證的 EKU 延伸中,否則驗證失敗。 沒有 EKU 擴展的憑證繼續正確驗證。

    如果您暫時無’法正確訪問重新發行的憑證,您可以在所有電腦運行中選擇加入或者選擇退出安全性更改以避免任何連接影響。 若要執行這項操作,根據您的應用程式設為目標的的 .NET Framework 版本,指定以下登錄機碼設定。

    方法 1: 更新登錄機碼(適用於所有版本)

    注意:此登錄項目必須為 DWORD 項目。

    • 適用於 32 位元系統上的 32 位元處理程序,以及 64 位元系統上的 64 位元處理程序:

      HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\v4.0.30319@RequireCertificateEKUs=0

    • 適用於 64 位元系統上的 32 位元處理程序:

      HKEY_LOCAL_MACHINE \Software\Wow6432Node\Microsoft\.NETFramework\v4.0.30319@RequireCertificateEKUs=0

    您也可以根據每個應用程式選擇退出。 以下選項可用於停用此項更改以確保 應用程式相容性得到維護。

    方法 2: 停用個別應用程式的策略

    注意: 此登錄項目必須為 DWORD 項目。 唯一有效的值是 0。 任何其他值都被忽略。

    • 適用於 32 位元系統上的 32 位元處理程序,以及 64 位元系統上的 64 位元處理程序:

      HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\v4.0.30319@System.Net.ServicePointManager.RequireCertificateEKUs
      S:\Prj\console_pg\console_pg45\bin\Release\console_pg45.exe=0
      C:\MyApp\MyApp.exe=0

    • 適用於 64 位元系統上的 32 位元處理程序:

      HKEY_LOCAL_MACHINE \Software\Wow6432Node\Microsoft\.NETFramework\v4.0.30319@System.Net.ServicePointManager.RequireCertificateEKUs
      S:\Prj\console_pg\console_pg45\bin\Release\console_pg45.exe=0
      C:\MyApp\MyApp.exe=0

    方法 3: 使用設定 API(適用於 .NET Framework 4.6 及更高版本)

    從 .NET Framework 4.6 開始,您可以透過程式碼、應用程式設定或者登錄更改來更改應用程式層級的設定。

    設定 .NET Framework 4.6中的參數

    注意: 下列範例 不使用安全性功能

    • 程式設計方式

      應用程式應該做的第一件事就是執行下列程式碼。 這是因為 Service Point Manager 只會初始化一次。
        private const string DisableCachingName = @"TestSwitch.LocalAppContext.DisableCaching"; private const string DontCheckCertificateEKUsName= @"Switch.System.Net.DontCheckCertificateEKUs"; AppContext.SetSwitch(DisableCachingName, true); AppContext.SetSwitch(DontCheckCertificateEKUsName, true);

    • 應用程式設定

      若要變更應用程式設定,請新增下列項目︰
        <runtime> <AppContextSwitchOverrides value="Switch.System.Net.DontCheckCertificateEKUsName=true"/> </runtime>

    • 登錄機碼 (全域的機器):

      登錄位置: HKEY_LOCAL_MACHINE\Software\[Wow6432Node\]Microsoft\.NETFramework\AppContext\Switch.System.Net.DontCheckCertificateEKUsName

      類型: 字串
      值: 「true」

    注意: 根據預設, Switch.System.Net.DontCheckCertificateEKUsName = True 適用於所有 在 .NET Framework 4.6 更高版本上運行的 .NET Framework 4. x 應用程式。

  • 若要深入了解這個與 Windows  8.1 及 Windows Server 2012 R2 相關的安全性更新,請參閱 Microsoft 知識庫中的下列文章:

    4019114  適用於 Windows 8.1 和 Windows Server 2012 R2 之 .NET Framework 3.5 Service Pack 1、4.5.2、4.6、4.6.1 和 4.6.2 的安全性和品質彙總套件更新: 2017 年 5 月 9 日

如何取得並安裝更新

方法 1: Windows Update

您可以透過 Windows Update 取得此更新。 開啟自動更新後,就會自動下載並安裝此更新。 如需有關如何自動取得安全性更新的詳細資訊,請參閱 Windows Update: 常見問題集

方法 2: Windows Software Update Services (WSUS)

在您的 WSUS 伺服器上,請依照下列步驟執行:

  1. 依序按一下 [開始][系統管理工具],然後按一下 [Microsoft Windows Server Update Services 3.0]

  2. 展開 [電腦名稱],然後按一下[動作]

  3. 按一下 [匯入更新]

  4. WSUS 將開啟瀏覽器視窗,系統可能會在視窗中提示您安裝 ActiveX 控制項。 您 必須安裝 ActiveX 控制項才能繼續。

  5. 安裝 控制項後,就會出現 [Microsoft Update Catalog] 畫面。在 [搜尋] 方塊中 輸入 4019114,然後按一下 [搜尋]

  6. 找出符合您環境中作業系統、語言及處理器的 .NET Framework 套件。 按一下 [Add] 將套件新增至籃中。

  7. 當您選取需要的所有套件時,按一下 [View Basket]

  8. 按一下 [Import] 以將套件匯入至 WSUS 伺服器。

  9. 套件完成匯入至 WSUS 後.按一下 [Close]

這些更新現可透過 WSUS 進行安裝。

更新部署資訊

如需有關此安全性更新的詳細部署資訊,請參閱 Microsoft 知識庫中的下列文章:

20170509安全性更新部署資訊: 2017 年 5 月 9 日

更新移除資訊

注意 我們不建議您移除任何安全性更新。 若要移除此更新,請使用 [控制台] 中的 [程式和功能] 項目。

更新重新啟動資訊

除非正在更新的檔案遭到鎖定或正在使用中,否則套用此更新後不需要重新啟動系統。

更新取代資訊

此更新不會取代任何先前發行的更新。

檔案資訊

套件名稱

套件雜湊 SHA 1

套件雜湊 SHA 2

Windows8.1-KB4014512-arm.msu

88D5A69D8A5457730E76FBEFEBC0CC8EBF6C89D2

D9E1AFF8E0CE4364EB7A50A5450DDDF846566076D168FAC94DFEB18B543B71EC

Windows8.1-KB4014512-x64.msu

6E89FD5979A5D163774AFADDCFA34FBD89A4B5E1

A959F07DF56957E13C4823BDEED126B5DA390BF812025819CABFEDEE84216167

Windows8.1-KB4014512-x86.msu

E0901A067139C1F12C5F45B3BEEDE43C8B6F8255

4B48754873B30BD6F7E02E0C3B9491D5219FD0D5D0D2F8600F10195C02BE4714


此 Hotfix 的英文版 (美國) 會安裝具有下表中所列屬性的檔案。 這些檔案的日期與時間是以 Coordinated Universal Time (UTC) 表示。 本機電腦上這些檔案的日期與時間,是以您當地的時間和目前的日光節約時間 (DST) 的時差來顯示。 此外,當您對檔案執行特定作業時,其日期與時間可能會改變。

適用於所有 x86 系統

檔案名稱

檔案版本

檔案大小

日期

時間

microsoft.build.tasks.v4.0.dll

4.0.30319.36366

1,191,144

20-Oct-2016

13:10

microsoft.build.dll

4.0.30319.36366

1,448,128

20-Oct-2016

13:10

presentationframework.aero2.dll

4.0.30319.36366

256,912

20-Oct-2016

13:10

presentationframework.aerolite.dll

4.0.30319.36366

177,560

20-Oct-2016

13:10

presentationframework.dll

4.0.30319.36389

6,221,680

30-Mar-2017

13:15

reachframework.dll

4.0.30319.36366

595,280

20-Oct-2016

13:10

smdiagnostics.dll

4.0.30319.36366

73,384

20-Oct-2016

13:10

system.activities.core.presentation.dll

4.0.30319.36366

718,256

20-Oct-2016

13:10

system.activities.presentation.dll

4.0.30319.36366

2,140,576

20-Oct-2016

13:10

system.activities.dll

4.0.30319.36366

1,582,792

20-Oct-2016

13:10

system.addin.dll

4.0.30319.36366

163,504

20-Oct-2016

13:10

system.componentmodel.composition.dll

4.0.30319.36366

312,096

20-Oct-2016

13:10

system.configuration.dll

4.0.30319.36366

402,640

20-Oct-2016

13:10

system.core.dll

4.0.30319.36389

1,271,968

30-Mar-2017

13:15

system.data.entity.dll

4.0.30319.36366

4,099,272

20-Oct-2016

13:10

system.data.linq.dll

4.0.30319.36366

698,568

20-Oct-2016

13:10

system.data.sqlxml.dll

4.0.30319.36366

752,336

20-Oct-2016

13:10

system.deployment.dll

4.0.30319.36366

853,696

20-Oct-2016

13:10

system.design.dll

4.0.30319.36366

5,056,176

20-Oct-2016

13:10

system.directoryservices.accountmanagement.dll

4.0.30319.36366

297,776

06-Apr-2017

01:36

system.directoryservices.protocols.dll

4.0.30319.36366

203,048

20-Oct-2016

13:10

system.directoryservices.dll

4.0.30319.36366

425,704

20-Oct-2016

13:10

system.drawing.design.dll

4.0.30319.36366

113,880

20-Oct-2016

13:10

system.drawing.dll

4.0.30319.36366

598,704

20-Oct-2016

13:10

system.identitymodel.services.dll

4.0.30319.36366

199,928

20-Oct-2016

13:10

system.identitymodel.dll

4.0.30319.36366

1,093,848

20-Oct-2016

13:10

system.io.compression.dll

4.0.30319.36366

71,904

20-Oct-2016

13:10

system.management.dll

4.0.30319.36386

416,960

21-Mar-2017

13:11

system.messaging.dll

4.0.30319.36366

275,640

20-Oct-2016

13:10

system.net.dll

4.0.30319.36366

259,736

20-Oct-2016

13:10

system.numerics.dll

4.0.30319.36366

86,192

20-Oct-2016

13:10

system.runtime.remoting.dll

4.0.30319.36366

347,880

20-Oct-2016

13:10

system.runtime.serialization.dll

4.0.30319.36366

1,060,096

20-Oct-2016

13:10

system.runtime.windowsruntime.dll

4.0.30319.36366

152,328

20-Oct-2016

13:10

system.runtime.dll

4.0.30319.36366

36,536

20-Oct-2016

13:10

system.security.dll

4.0.30319.36389

296,632

30-Mar-2017

13:15

system.servicemodel.activation.dll

4.0.30319.36366

204,184

20-Oct-2016

13:10

system.servicemodel.channels.dll

4.0.30319.36366

159,632

20-Oct-2016

13:10

system.servicemodel.discovery.dll

4.0.30319.36366

312,728

20-Oct-2016

13:10

system.servicemodel.internals.dll

4.0.30319.36366

254,728

20-Oct-2016

13:10

system.servicemodel.routing.dll

4.0.30319.36366

132,496

20-Oct-2016

13:10

system.servicemodel.washosting.dll

4.0.30319.36366

39,680

20-Oct-2016

13:10

system.servicemodel.web.dll

4.0.30319.36366

332,520

20-Oct-2016

13:10

system.servicemodel.dll

4.0.30319.36366

6,384,336

20-Oct-2016

13:10

system.serviceprocess.dll

4.0.30319.36366

134,872

20-Oct-2016

13:10

system.threading.timer.dll

4.0.30319.36366

29,400

20-Oct-2016

13:10

system.web.applicationservices.dll

4.0.30319.36366

71,440

20-Oct-2016

13:10

system.web.extensions.dll

4.0.30319.36366

1,859,288

20-Oct-2016

13:10

system.web.mobile.dll

4.0.30319.36366

839,880

20-Oct-2016

13:10

system.web.services.dll

4.0.30319.36366

858,312

20-Oct-2016

13:10

system.windows.controls.ribbon.dll

4.0.30319.36389

751,512

30-Mar-2017

13:15

system.windows.forms.dll

4.0.30319.36366

4,859,608

20-Oct-2016

13:10

system.workflow.activities.dll

4.0.30319.36366

1,068,432

20-Oct-2016

13:10

system.workflow.componentmodel.dll

4.0.30319.36366

1,559,968

20-Oct-2016

13:10

system.workflow.runtime.dll

4.0.30319.36366

503,680

20-Oct-2016

13:10

system.xaml.dll

4.0.30319.36389

640,672

30-Mar-2017

13:15

system.xml.dll

4.0.30319.36366

2,703,000

20-Oct-2016

13:10

system.dll

4.0.30319.36389

3,487,872

30-Mar-2017

13:15

windowsbase.dll

4.0.30319.36389

1,241,928

30-Mar-2017

13:15

windowsformsintegration.dll

4.0.30319.36366

102,784

20-Oct-2016

13:10

xamlbuildtask.dll

4.0.30319.36366

133,968

20-Oct-2016

13:10

mscorlib.dll

4.0.30319.36366

5,266,080

20-Oct-2016

13:10

normidna.nlp

59,342

03-Oct-2015

06:10

normnfc.nlp

47,076

03-Oct-2015

06:10

normnfd.nlp

40,566

03-Oct-2015

06:10

normnfkc.nlp

67,808

03-Oct-2015

06:10

normnfkd.nlp

61,718

03-Oct-2015

06:10

aspnet_perf.h

7,177

18-Jun-2013

12:28

aspnet_perf2.ini

995,542

08-Jul-2013

18:39

aspnet_perf2_d.ini

31

18-Jun-2013

12:28

aspnet_state_perf.h

318

18-Jun-2013

12:28

aspnet_state_perf.ini

42,996

18-Jun-2013

12:28

aspnet_state_perf_d.ini

36

18-Jun-2013

12:28

aspnet_counters.dll

4.0.30319.36366

28,352

20-Oct-2016

13:10

aspnet_filter.dll

4.0.30319.36366

34,488

20-Oct-2016

13:10

aspnet_isapi.dll

4.0.30319.36366

24,752

20-Oct-2016

13:10

aspnet_perf.dll

4.0.30319.36366

41,648

20-Oct-2016

13:10

aspnet_rc.dll

4.0.30319.36366

90,280

20-Oct-2016

13:10

aspnet_regiis.exe

4.0.30319.36366

41,136

20-Oct-2016

13:10

aspnet_state.exe

4.0.30319.36366

45,744

20-Oct-2016

13:10

aspnet_state_perf.h

318

03-Oct-2015

06:10

aspnet_state_perf.ini

42,996

03-Oct-2015

06:10

aspnet_wp.exe

4.0.30319.36366

43,176

20-Oct-2016

13:10

blackberry.browser

2,389

03-Oct-2015

06:10

chrome.browser

2,107

03-Oct-2015

06:10

default.browser

11,568

03-Oct-2015

06:10

firefox.browser

2,336

03-Oct-2015

06:10

gateway.browser

5,630

03-Oct-2015

06:10

generic.browser

5,569

03-Oct-2015

06:10

ie.browser

5,166

03-Oct-2015

06:10

iemobile.browser

4,045

03-Oct-2015

06:10

iphone.browser

1,759

03-Oct-2015

06:10

opera.browser

5,248

03-Oct-2015

06:10

safari.browser

3,560

03-Oct-2015

06:10

ucbrowser.browser

1,725

03-Oct-2015

06:10

clr-etw.man

303,549

30-Mar-2017

13:15

clretwrc.dll

4.0.30319.36366

228,008

30-Mar-2017

13:15

clrjit.dll

4.0.30319.36366

509,088

20-Oct-2016

13:10

clr.dll

4.0.30319.36366

6,937,744

20-Oct-2016

13:10

corperfmonext.dll

4.0.30319.36366

127,672

20-Oct-2016

13:10

csc.rsp

1,329

03-Oct-2015

06:10

csc.exe

4.0.30319.36366

1,853,072

20-Oct-2016

13:10

csc.exe.config

182

03-Oct-2015

06:10

culture.dll

4.0.30319.36366

54,432

20-Oct-2016

13:10

locale.nlp

419,632

20-Oct-2016

13:10

dfdll.dll

4.0.30319.36366

141,976

20-Oct-2016

13:10

installpersistsqlstate.sql

54,647

30-Mar-2017

13:15

installsqlstatetemplate.sql

56,233

30-Mar-2017

13:15

installsqlstate.sql

54,427

30-Mar-2017

13:15

microsoft.common.overridetasks

6,297

03-Oct-2015

06:10

microsoft.data.entity.targets

6,501

03-Oct-2015

06:10

microsoft.workflowbuildextensions.targets

7,537

06-Apr-2017

01:36

microsoft.xaml.targets

19,848

03-Oct-2015

06:10

mmcaspext.dll

4.0.30319.36366

107,176

20-Oct-2016

13:10

microsoft.common.targets

262,547

03-Oct-2015

06:10

microsoft.csharp.targets

23,618

03-Oct-2015

06:10

microsoft.netframework.props

11,957

03-Oct-2015

06:10

microsoft.netframework.targets

8,183

03-Oct-2015

06:10

microsoft.visualbasic.targets

23,329

03-Oct-2015

06:10

mscordacwks.dll

4.0.30319.36366

1,284,272

20-Oct-2016

13:10

mscordbi.dll

4.0.30319.36366

1,107,616

20-Oct-2016

13:10

mscoreei.dll

4.0.30319.36366

516,256

20-Oct-2016

13:10

mscorlib.ni.dll

4.0.30319.36366

17,232,048

20-Oct-2016

13:10

mscorrc.dll

4.0.30319.36366

395,936

20-Oct-2016

13:10

mscorsvc.dll

4.0.30319.36366

414,880

20-Oct-2016

13:10

mscorsvw.exe

4.0.30319.36366

103,600

20-Oct-2016

13:10

msvcp120_clr0400.dll

12.0.52389.36389

536,768

30-Mar-2017

13:15

msvcr120_clr0400.dll

12.0.52389.36389

875,712

30-Mar-2017

13:15

ngen.exe

4.0.30319.36366

140,944

20-Oct-2016

13:10

penimc.dll

4.0.30319.36389

81,048

30-Mar-2017

13:15

peverify.dll

4.0.30319.36366

164,008

20-Oct-2016

13:10

presentationhost_v0400.dll

4.0.30319.36389

186,080

30-Mar-2017

13:15

presentationnative_v0400.dll

4.0.30319.36389

790,248

30-Mar-2017

13:15

servicemonikersupport.dll

4.0.30319.36366

28,376

20-Oct-2016

13:10

sos.dll

4.0.30319.36366

762,512

20-Oct-2016

13:10

system.addin.dll

4.0.30319.36366

163,504

20-Oct-2016

13:10

system.core.dll

4.0.30319.36389

1,271,968

30-Mar-2017

13:15

system.data.entity.dll

4.0.30319.36366

4,099,272

20-Oct-2016

13:10

system.data.linq.dll

4.0.30319.36366

698,568

20-Oct-2016

13:10

system.net.dll

4.0.30319.36366

259,736

20-Oct-2016

13:10

system.web.extensions.dll

4.0.30319.36366

1,859,288

20-Oct-2016

13:10

system.core.ni.dll

4.0.30319.36366

6,998,712

20-Oct-2016

13:10

system.ni.dll

4.0.30319.36366

10,110,632

20-Oct-2016

13:10

vbc.rsp

1,467

03-Oct-2015

06:10

vbc.exe

12.0.52366.36366

2,459,280

20-Oct-2016

13:10

vbc.exe.config

182

03-Oct-2015

06:10

webengine4.dll

4.0.30319.36366

509,608

20-Oct-2016

13:10

webengine.dll

4.0.30319.36366

24,744

20-Oct-2016

13:10

wminet_utils.dll

4.0.30319.36386

126,136

21-Mar-2017

13:11

workflowservicehostperformancecounters.dll

4.0.30319.36366

75,544

06-Apr-2017

01:36

wpfgfx_v0400.dll

4.0.30319.36389

1,648,312

30-Mar-2017

13:15

presentationcore.dll

4.0.30319.36389

3,226,464

30-Mar-2017

13:15

system.data.dll

4.0.30319.36372

3,209,904

01-Dec-2016

14:11

system.printing.dll

4.0.30319.36366

343,384

20-Oct-2016

13:10

system.transactions.dll

4.0.30319.36366

289,488

20-Oct-2016

13:10

system.web.dll

4.0.30319.36366

5,462,696

20-Oct-2016

13:10

適用於所有 x64 系統

檔案名稱

檔案版本

檔案大小

日期

時間

mscorlib.dll

4.0.30319.36366

5,220,008

20-Oct-2016

13:13

normidna.nlp

59,342

22-Sep-2015

13:52

normnfc.nlp

47,076

22-Sep-2015

13:52

normnfd.nlp

40,566

22-Sep-2015

13:52

normnfkc.nlp

67,808

22-Sep-2015

13:52

normnfkd.nlp

61,718

22-Sep-2015

13:52

aspnet_perf.h

7,177

18-Jun-2013

14:46

aspnet_perf2.ini

995,542

08-Jul-2013

18:39

aspnet_perf2_d.ini

31

18-Jun-2013

14:46

aspnet_state_perf.h

318

18-Jun-2013

14:46

aspnet_state_perf.ini

42,996

18-Jun-2013

14:46

aspnet_state_perf_d.ini

36

18-Jun-2013

14:46

aspnet_counters.dll

4.0.30319.36366

29,888

20-Oct-2016

13:14

aspnet_filter.dll

4.0.30319.36366

37,560

20-Oct-2016

13:13

aspnet_isapi.dll

4.0.30319.36366

25,776

20-Oct-2016

13:13

aspnet_perf.dll

4.0.30319.36366

45,232

20-Oct-2016

13:13

aspnet_rc.dll

4.0.30319.36366

90,280

20-Oct-2016

13:13

aspnet_regiis.exe

4.0.30319.36366

43,704

20-Oct-2016

13:13

aspnet_state.exe

4.0.30319.36366

50,864

20-Oct-2016

13:13

aspnet_state_perf.h

318

22-Sep-2015

13:52

aspnet_state_perf.ini

42,996

22-Sep-2015

13:52

aspnet_wp.exe

4.0.30319.36366

47,784

20-Oct-2016

13:13

blackberry.browser

2,389

22-Sep-2015

13:52

chrome.browser

2,107

22-Sep-2015

13:52

default.browser

11,568

22-Sep-2015

13:52

firefox.browser

2,336

22-Sep-2015

13:52

gateway.browser

5,630

22-Sep-2015

13:52

generic.browser

5,569

22-Sep-2015

13:52

ie.browser

5,166

22-Sep-2015

13:52

iemobile.browser

4,045

22-Sep-2015

13:52

iphone.browser

1,759

22-Sep-2015

13:52

opera.browser

5,248

22-Sep-2015

13:52

safari.browser

3,560

22-Sep-2015

13:52

ucbrowser.browser

1,725

22-Sep-2015

13:52

clr-etw.man

303,557

30-Mar-2017

13:15

clretwrc.dll

4.0.30319.36366

228,008

30-Mar-2017

13:15

clrjit.dll

4.0.30319.36366

1,234,584

20-Oct-2016

13:13

clr.dll

4.0.30319.36366

10,070,160

20-Oct-2016

13:13

corperfmonext.dll

4.0.30319.36366

153,784

20-Oct-2016

13:13

csc.rsp

1,329

22-Sep-2015

13:52

csc.exe

4.0.30319.36366

2,637,456

20-Oct-2016

13:13

csc.exe.config

182

22-Sep-2015

13:52

culture.dll

4.0.30319.36366

63,648

20-Oct-2016

13:13

locale.nlp

419,632

14-Jul-2016

13:12

dfdll.dll

4.0.30319.36366

165,528

20-Oct-2016

13:13

installpersistsqlstate.sql

54,647

30-Mar-2017

13:15

installsqlstatetemplate.sql

56,233

30-Mar-2017

13:15

installsqlstate.sql

54,427

30-Mar-2017

13:15

microsoft.build.tasks.v4.0.dll

4.0.30319.36366

1,191,144

20-Oct-2016

13:13

microsoft.build.dll

4.0.30319.36366

1,448,128

20-Oct-2016

13:13

microsoft.common.overridetasks

6,297

22-Sep-2015

13:52

microsoft.data.entity.targets

6,501

22-Sep-2015

13:52

microsoft.workflowbuildextensions.targets

7,537

06-Apr-2017

01:37

microsoft.xaml.targets

19,848

22-Sep-2015

13:52

mmcaspext.dll

4.0.30319.36366

113,320

20-Oct-2016

13:13

microsoft.common.targets

262,547

22-Sep-2015

13:52

microsoft.csharp.targets

23,618

22-Sep-2015

13:52

microsoft.netframework.props

11,957

22-Sep-2015

13:52

microsoft.netframework.targets

8,183

22-Sep-2015

13:52

microsoft.visualbasic.targets

23,329

22-Sep-2015

13:52

mscordacwks.dll

4.0.30319.36366

1,731,248

20-Oct-2016

13:13

mscordbi.dll

4.0.30319.36366

1,533,600

20-Oct-2016

13:13

mscoreei.dll

4.0.30319.36366

636,064

20-Oct-2016

13:13

mscorlib.ni.dll

4.0.30319.36366

22,685,872

20-Oct-2016

13:13

mscorrc.dll

4.0.30319.36366

395,936

20-Oct-2016

13:13

mscorsvc.dll

4.0.30319.36366

523,424

20-Oct-2016

13:13

mscorsvw.exe

4.0.30319.36366

124,088

20-Oct-2016

13:13

msvcp120_clr0400.dll

12.0.52389.36389

678,592

30-Mar-2017

13:15

msvcr120_clr0400.dll

12.0.52389.36389

869,568

30-Mar-2017

13:15

ngen.exe

4.0.30319.36366

171,152

20-Oct-2016

13:13

penimc.dll

4.0.30319.36389

94,360

30-Mar-2017

13:15

peverify.dll

4.0.30319.36366

225,952

20-Oct-2016

13:13

presentationframework.aero2.dll

4.0.30319.36366

256,912

20-Oct-2016

13:14

presentationframework.aerolite.dll

4.0.30319.36366

177,560

20-Oct-2016

13:14

presentationframework.dll

4.0.30319.36389

6,221,680

30-Mar-2017

13:15

presentationhost_v0400.dll

4.0.30319.36389

232,152

30-Mar-2017

13:15

presentationnative_v0400.dll

4.0.30319.36389

1,077,984

30-Mar-2017

13:15

reachframework.dll

4.0.30319.36366

595,280

20-Oct-2016

13:14

servicemodel.mof

88,383

22-Sep-2015

13:52

servicemodel.mof.uninstall

896

22-Sep-2015

13:52

servicemonikersupport.dll

4.0.30319.36366

28,888

20-Oct-2016

13:13

smdiagnostics.dll

4.0.30319.36366

73,384

20-Oct-2016

13:13

sos.dll

4.0.30319.36366

822,928

20-Oct-2016

13:13

system.activities.core.presentation.dll

4.0.30319.36366

718,256

06-Apr-2017

01:37

system.activities.presentation.dll

4.0.30319.36366

2,140,576

20-Oct-2016

13:13

system.activities.dll

4.0.30319.36366

1,582,792

20-Oct-2016

13:13

system.addin.dll

4.0.30319.36366

163,504

20-Oct-2016

13:13

system.componentmodel.composition.dll

4.0.30319.36366

312,096

06-Apr-2017

01:37

system.configuration.dll

4.0.30319.36366

402,640

20-Oct-2016

13:13

system.core.dll

4.0.30319.36389

1,271,968

30-Mar-2017

13:15

system.data.entity.dll

4.0.30319.36366

4,099,272

20-Oct-2016

13:13

system.data.linq.dll

4.0.30319.36366

698,568

20-Oct-2016

13:13

system.data.sqlxml.dll

4.0.30319.36366

752,336

20-Oct-2016

13:13

system.deployment.dll

4.0.30319.36366

853,696

20-Oct-2016

13:13

system.design.dll

4.0.30319.36366

5,056,176

20-Oct-2016

13:13

system.directoryservices.accountmanagement.dll

4.0.30319.36366

297,776

06-Apr-2017

01:37

system.directoryservices.protocols.dll

4.0.30319.36366

203,048

06-Apr-2017

01:37

system.directoryservices.dll

4.0.30319.36366

425,704

20-Oct-2016

13:13

system.drawing.design.dll

4.0.30319.36366

113,880

20-Oct-2016

13:13

system.drawing.dll

4.0.30319.36366

598,704

20-Oct-2016

13:13

system.identitymodel.services.dll

4.0.30319.36366

199,928

20-Oct-2016

13:13

system.identitymodel.dll

4.0.30319.36366

1,093,848

20-Oct-2016

13:13

system.io.compression.dll

4.0.30319.36366

71,904

20-Oct-2016

13:13

system.management.dll

4.0.30319.36386

416,960

21-Mar-2017

13:11

system.messaging.dll

4.0.30319.36366

275,640

20-Oct-2016

13:13

system.net.dll

4.0.30319.36366

259,736

20-Oct-2016

13:13

system.numerics.dll

4.0.30319.36366

86,192

20-Oct-2016

13:13

system.runtime.remoting.dll

4.0.30319.36366

347,880

20-Oct-2016

13:13

system.runtime.serialization.dll

4.0.30319.36366

1,060,096

20-Oct-2016

13:13

system.runtime.windowsruntime.dll

4.0.30319.36366

152,328

20-Oct-2016

13:13

system.runtime.dll

4.0.30319.36366

36,536

20-Oct-2016

13:13

system.security.dll

4.0.30319.36389

296,632

30-Mar-2017

13:15

system.servicemodel.activation.dll

4.0.30319.36366

204,184

20-Oct-2016

13:13

system.servicemodel.channels.dll

4.0.30319.36366

159,632

20-Oct-2016

13:13

system.servicemodel.discovery.dll

4.0.30319.36366

312,728

20-Oct-2016

13:13

system.servicemodel.internals.dll

4.0.30319.36366

254,728

20-Oct-2016

13:13

system.servicemodel.routing.dll

4.0.30319.36366

132,496

20-Oct-2016

13:13

system.servicemodel.washosting.dll

4.0.30319.36366

39,680

20-Oct-2016

13:13

system.servicemodel.web.dll

4.0.30319.36366

332,520

20-Oct-2016

13:13

system.servicemodel.dll

4.0.30319.36366

6,384,336

20-Oct-2016

13:13

system.serviceprocess.dll

4.0.30319.36366

134,872

20-Oct-2016

13:13

system.threading.timer.dll

4.0.30319.36366

29,400

20-Oct-2016

13:13

system.web.applicationservices.dll

4.0.30319.36366

71,440

20-Oct-2016

13:13

system.web.extensions.dll

4.0.30319.36366

1,859,288

20-Oct-2016

13:13

system.web.mobile.dll

4.0.30319.36366

839,880

20-Oct-2016

13:14

system.web.services.dll

4.0.30319.36366

858,312

20-Oct-2016

13:14

system.windows.controls.ribbon.dll

4.0.30319.36389

751,512

30-Mar-2017

13:15

system.windows.forms.dll

4.0.30319.36366

4,859,608

20-Oct-2016

13:14

system.workflow.activities.dll

4.0.30319.36366

1,068,432

20-Oct-2016

13:14

system.workflow.componentmodel.dll

4.0.30319.36366

1,559,968

20-Oct-2016

13:14

system.workflow.runtime.dll

4.0.30319.36366

503,680

20-Oct-2016

13:14

system.xaml.dll

4.0.30319.36389

640,672

30-Mar-2017

13:15

system.xml.dll

4.0.30319.36366

2,703,000

20-Oct-2016

13:14

system.dll

4.0.30319.36389

3,487,872

30-Mar-2017

13:15

system.core.ni.dll

4.0.30319.36366

9,866,936

20-Oct-2016

13:13

system.ni.dll

4.0.30319.36366

13,107,368

20-Oct-2016

13:13

vbc.rsp

1,467

22-Sep-2015

13:52

vbc.exe

12.0.52366.36366

3,546,256

20-Oct-2016

13:14

vbc.exe.config

182

22-Sep-2015

13:52

webengine4.dll

4.0.30319.36366

621,224

20-Oct-2016

13:14

webengine.dll

4.0.30319.36366

26,792

20-Oct-2016

13:14

windowsbase.dll

4.0.30319.36389

1,241,928

30-Mar-2017

13:15

windowsformsintegration.dll

4.0.30319.36366

102,784

20-Oct-2016

13:14

wminet_utils.dll

4.0.30319.36386

174,256

21-Mar-2017

13:11

workflowservicehostperformancecounters.dll

4.0.30319.36366

84,768

06-Apr-2017

01:37

wpfgfx_v0400.dll

4.0.30319.36389

2,108,592

30-Mar-2017

13:15

xamlbuildtask.dll

4.0.30319.36366

133,968

20-Oct-2016

13:14

presentationcore.dll

4.0.30319.36389

3,210,944

30-Mar-2017

13:15

system.data.dll

4.0.30319.36372

3,239,088

01-Dec-2016

14:13

system.printing.dll

4.0.30319.36366

342,720

20-Oct-2016

13:14

system.transactions.dll

4.0.30319.36366

292,560

20-Oct-2016

13:13

system.web.dll

4.0.30319.36366

5,456,552

20-Oct-2016

13:13

microsoft.build.tasks.v4.0.dll

4.0.30319.36366

1,191,144

20-Oct-2016

13:10

microsoft.build.dll

4.0.30319.36366

1,448,128

20-Oct-2016

13:10

presentationframework.aero2.dll

4.0.30319.36366

256,912

20-Oct-2016

13:10

presentationframework.aerolite.dll

4.0.30319.36366

177,560

20-Oct-2016

13:10

presentationframework.dll

4.0.30319.36389

6,221,680

30-Mar-2017

13:15

reachframework.dll

4.0.30319.36366

595,280

20-Oct-2016

13:10

smdiagnostics.dll

4.0.30319.36366

73,384

20-Oct-2016

13:10

system.activities.core.presentation.dll

4.0.30319.36366

718,256

20-Oct-2016

13:10

system.activities.presentation.dll

4.0.30319.36366

2,140,576

20-Oct-2016

13:10

system.activities.dll

4.0.30319.36366

1,582,792

20-Oct-2016

13:10

system.addin.dll

4.0.30319.36366

163,504

20-Oct-2016

13:10

system.componentmodel.composition.dll

4.0.30319.36366

312,096

20-Oct-2016

13:10

system.configuration.dll

4.0.30319.36366

402,640

20-Oct-2016

13:10

system.core.dll

4.0.30319.36389

1,271,968

30-Mar-2017

13:15

system.data.entity.dll

4.0.30319.36366

4,099,272

20-Oct-2016

13:10

system.data.linq.dll

4.0.30319.36366

698,568

20-Oct-2016

13:10

system.data.sqlxml.dll

4.0.30319.36366

752,336

20-Oct-2016

13:10

system.deployment.dll

4.0.30319.36366

853,696

20-Oct-2016

13:10

system.design.dll

4.0.30319.36366

5,056,176

20-Oct-2016

13:10

system.directoryservices.accountmanagement.dll

4.0.30319.36366

297,776

06-Apr-2017

01:37

system.directoryservices.protocols.dll

4.0.30319.36366

203,048

20-Oct-2016

13:10

system.directoryservices.dll

4.0.30319.36366

425,704

20-Oct-2016

13:10

system.drawing.design.dll

4.0.30319.36366

113,880

20-Oct-2016

13:10

system.drawing.dll

4.0.30319.36366

598,704

20-Oct-2016

13:10

system.identitymodel.services.dll

4.0.30319.36366

199,928

20-Oct-2016

13:10

system.identitymodel.dll

4.0.30319.36366

1,093,848

20-Oct-2016

13:10

system.io.compression.dll

4.0.30319.36366

71,904

20-Oct-2016

13:10

system.management.dll

4.0.30319.36386

416,960

21-Mar-2017

13:11

system.messaging.dll

4.0.30319.36366

275,640

20-Oct-2016

13:10

system.net.dll

4.0.30319.36366

259,736

20-Oct-2016

13:10

system.numerics.dll

4.0.30319.36366

86,192

20-Oct-2016

13:10

system.runtime.remoting.dll

4.0.30319.36366

347,880

20-Oct-2016

13:10

system.runtime.serialization.dll

4.0.30319.36366

1,060,096

20-Oct-2016

13:10

system.runtime.windowsruntime.dll

4.0.30319.36366

152,328

20-Oct-2016

13:10

system.runtime.dll

4.0.30319.36366

36,536

20-Oct-2016

13:10

system.security.dll

4.0.30319.36389

296,632

30-Mar-2017

13:15

system.servicemodel.activation.dll

4.0.30319.36366

204,184

20-Oct-2016

13:10

system.servicemodel.channels.dll

4.0.30319.36366

159,632

20-Oct-2016

13:10

system.servicemodel.discovery.dll

4.0.30319.36366

312,728

20-Oct-2016

13:10

system.servicemodel.internals.dll

4.0.30319.36366

254,728

20-Oct-2016

13:10

system.servicemodel.routing.dll

4.0.30319.36366

132,496

20-Oct-2016

13:10

system.servicemodel.washosting.dll

4.0.30319.36366

39,680

20-Oct-2016

13:10

system.servicemodel.web.dll

4.0.30319.36366

332,520

20-Oct-2016

13:10

system.servicemodel.dll

4.0.30319.36366

6,384,336

20-Oct-2016

13:10

system.serviceprocess.dll

4.0.30319.36366

134,872

20-Oct-2016

13:10

system.threading.timer.dll

4.0.30319.36366

29,400

20-Oct-2016

13:10

system.web.applicationservices.dll

4.0.30319.36366

71,440

20-Oct-2016

13:10

system.web.extensions.dll

4.0.30319.36366

1,859,288

20-Oct-2016

13:10

system.web.mobile.dll

4.0.30319.36366

839,880

20-Oct-2016

13:10

system.web.services.dll

4.0.30319.36366

858,312

20-Oct-2016

13:10

system.windows.controls.ribbon.dll

4.0.30319.36389

751,512

30-Mar-2017

13:15

system.windows.forms.dll

4.0.30319.36366

4,859,608

20-Oct-2016

13:10

system.workflow.activities.dll

4.0.30319.36366

1,068,432

20-Oct-2016

13:10

system.workflow.componentmodel.dll

4.0.30319.36366

1,559,968

20-Oct-2016

13:10

system.workflow.runtime.dll

4.0.30319.36366

503,680

20-Oct-2016

13:10

system.xaml.dll

4.0.30319.36389

640,672

30-Mar-2017

13:15

system.xml.dll

4.0.30319.36366

2,703,000

20-Oct-2016

13:10

system.dll

4.0.30319.36389

3,487,872

30-Mar-2017

13:15

windowsbase.dll

4.0.30319.36389

1,241,928

30-Mar-2017

13:15

windowsformsintegration.dll

4.0.30319.36366

102,784

20-Oct-2016

13:10

xamlbuildtask.dll

4.0.30319.36366

133,968

20-Oct-2016

13:10

mscorlib.dll

4.0.30319.36366

5,266,080

20-Oct-2016

13:10

normidna.nlp

59,342

03-Oct-2015

06:10

normnfc.nlp

47,076

03-Oct-2015

06:10

normnfd.nlp

40,566

03-Oct-2015

06:10

normnfkc.nlp

67,808

03-Oct-2015

06:10

normnfkd.nlp

61,718

03-Oct-2015

06:10

aspnet_counters.dll

4.0.30319.36366

28,352

20-Oct-2016

13:10

aspnet_filter.dll

4.0.30319.36366

34,488

20-Oct-2016

13:10

aspnet_isapi.dll

4.0.30319.36366

24,752

20-Oct-2016

13:10

aspnet_perf.dll

4.0.30319.36366

41,648

20-Oct-2016

13:10

aspnet_rc.dll

4.0.30319.36366

90,280

20-Oct-2016

13:10

aspnet_regiis.exe

4.0.30319.36366

41,136

20-Oct-2016

13:10

aspnet_state.exe

4.0.30319.36366

45,744

20-Oct-2016

13:10

aspnet_state_perf.h

318

03-Oct-2015

06:10

aspnet_state_perf.ini

42,996

03-Oct-2015

06:10

aspnet_wp.exe

4.0.30319.36366

43,176

20-Oct-2016

13:10

blackberry.browser

2,389

03-Oct-2015

06:10

chrome.browser

2,107

03-Oct-2015

06:10

default.browser

11,568

03-Oct-2015

06:10

firefox.browser

2,336

03-Oct-2015

06:10

gateway.browser

5,630

03-Oct-2015

06:10

generic.browser

5,569

03-Oct-2015

06:10

ie.browser

5,166

03-Oct-2015

06:10

iemobile.browser

4,045

03-Oct-2015

06:10

iphone.browser

1,759

03-Oct-2015

06:10

opera.browser

5,248

03-Oct-2015

06:10

safari.browser

3,560

03-Oct-2015

06:10

ucbrowser.browser

1,725

03-Oct-2015

06:10

clr-etw.man

303,549

30-Mar-2017

13:15

clretwrc.dll

4.0.30319.36366

228,008

30-Mar-2017

13:15

clrjit.dll

4.0.30319.36366

509,088

20-Oct-2016

13:10

clr.dll

4.0.30319.36366

6,937,744

20-Oct-2016

13:10

corperfmonext.dll

4.0.30319.36366

127,672

20-Oct-2016

13:10

csc.rsp

1,329

03-Oct-2015

06:10

csc.exe

4.0.30319.36366

1,853,072

20-Oct-2016

13:10

csc.exe.config

182

03-Oct-2015

06:10

culture.dll

4.0.30319.36366

54,432

20-Oct-2016

13:10

locale.nlp

419,632

20-Oct-2016

13:10

dfdll.dll

4.0.30319.36366

141,976

20-Oct-2016

13:10

installpersistsqlstate.sql

54,647

30-Mar-2017

13:15

installsqlstatetemplate.sql

56,233

30-Mar-2017

13:15

installsqlstate.sql

54,427

30-Mar-2017

13:15

microsoft.common.overridetasks

6,297

03-Oct-2015

06:10

microsoft.data.entity.targets

6,501

03-Oct-2015

06:10

microsoft.workflowbuildextensions.targets

7,537

06-Apr-2017

01:37

microsoft.xaml.targets

19,848

03-Oct-2015

06:10

mmcaspext.dll

4.0.30319.36366

107,176

20-Oct-2016

13:10

microsoft.common.targets

262,547

03-Oct-2015

06:10

microsoft.csharp.targets

23,618

03-Oct-2015

06:10

microsoft.netframework.props

11,957

03-Oct-2015

06:10

microsoft.netframework.targets

8,183

03-Oct-2015

06:10

microsoft.visualbasic.targets

23,329

03-Oct-2015

06:10

mscordacwks.dll

4.0.30319.36366

1,284,272

20-Oct-2016

13:10

mscordbi.dll

4.0.30319.36366

1,107,616

20-Oct-2016

13:10

mscoreei.dll

4.0.30319.36366

516,256

20-Oct-2016

13:10

mscorlib.ni.dll

4.0.30319.36366

17,232,048

20-Oct-2016

13:10

mscorrc.dll

4.0.30319.36366

395,936

20-Oct-2016

13:10

mscorsvc.dll

4.0.30319.36366

414,880

20-Oct-2016

13:10

mscorsvw.exe

4.0.30319.36366

103,600

20-Oct-2016

13:10

msvcp120_clr0400.dll

12.0.52389.36389

536,768

30-Mar-2017

13:15

msvcr120_clr0400.dll

12.0.52389.36389

875,712

30-Mar-2017

13:15

ngen.exe

4.0.30319.36366

140,944

20-Oct-2016

13:10

penimc.dll

4.0.30319.36389

81,048

30-Mar-2017

13:15

peverify.dll

4.0.30319.36366

164,008

20-Oct-2016

13:10

presentationhost_v0400.dll

4.0.30319.36389

186,080

30-Mar-2017

13:15

presentationnative_v0400.dll

4.0.30319.36389

790,248

30-Mar-2017

13:15

servicemonikersupport.dll

4.0.30319.36366

28,376

20-Oct-2016

13:10

sos.dll

4.0.30319.36366

762,512

20-Oct-2016

13:10

system.addin.dll

4.0.30319.36366

163,504

20-Oct-2016

13:10

system.core.dll

4.0.30319.36389

1,271,968

30-Mar-2017

13:15

system.data.entity.dll

4.0.30319.36366

4,099,272

20-Oct-2016

13:10

system.data.linq.dll

4.0.30319.36366

698,568

20-Oct-2016

13:10

system.net.dll

4.0.30319.36366

259,736

20-Oct-2016

13:10

system.web.extensions.dll

4.0.30319.36366

1,859,288

20-Oct-2016

13:10

system.core.ni.dll

4.0.30319.36366

6,998,712

20-Oct-2016

13:10

system.ni.dll

4.0.30319.36366

10,110,632

20-Oct-2016

13:10

vbc.rsp

1,467

03-Oct-2015

06:10

vbc.exe

12.0.52366.36366

2,459,280

20-Oct-2016

13:10

vbc.exe.config

182

03-Oct-2015

06:10

webengine4.dll

4.0.30319.36366

509,608

20-Oct-2016

13:10

webengine.dll

4.0.30319.36366

24,744

20-Oct-2016

13:10

wminet_utils.dll

4.0.30319.36386

126,136

21-Mar-2017

13:11

workflowservicehostperformancecounters.dll

4.0.30319.36366

75,544

06-Apr-2017

01:37

wpfgfx_v0400.dll

4.0.30319.36389

1,648,312

30-Mar-2017

13:15

presentationcore.dll

4.0.30319.36389

3,226,464

30-Mar-2017

13:15

system.data.dll

4.0.30319.36372

3,209,904

01-Dec-2016

14:11

system.printing.dll

4.0.30319.36366

343,384

20-Oct-2016

13:10

system.transactions.dll

4.0.30319.36366

289,488

20-Oct-2016

13:10

system.web.dll

4.0.30319.36366

5,462,696

20-Oct-2016

13:10

適用於所有 ARM 系統

檔案名稱

檔案版本

檔案大小

日期

時間

mscorlib.dll

4.0.30319.36364

5,267,440

01-Dec-2016

14:13

normidna.nlp

59,342

03-Oct-2015

18:17

normnfc.nlp

47,076

03-Oct-2015

18:17

normnfd.nlp

40,566

03-Oct-2015

18:17

normnfkc.nlp

67,808

03-Oct-2015

18:17

normnfkd.nlp

61,718

03-Oct-2015

18:17

clr-etw.man

303,549

30-Mar-2017

13:17

clretwrc.dll

4.0.30319.36362

229,872

30-Mar-2017

13:17

clrjit.dll

4.0.30319.36364

625,640

01-Dec-2016

14:13

clr.dll

4.0.30319.36364

7,098,848

01-Dec-2016

14:13

corperfmonext.dll

4.0.30319.36362

129,536

01-Dec-2016

14:13

csc.rsp

1,329

03-Oct-2015

18:17

csc.exe

4.0.30319.36362

1,828,832

01-Dec-2016

14:13

csc.exe.config

182

03-Oct-2015

18:17

culture.dll

4.0.30319.36362

49,136

01-Dec-2016

14:13

locale.nlp

419,632

01-Dec-2016

14:13

mscordacwks.dll

4.0.30319.36364

1,305,592

01-Dec-2016

14:13

mscordbi.dll

4.0.30319.36364

1,120,240

01-Dec-2016

14:13

mscoreei.dll

4.0.30319.36362

525,808

01-Dec-2016

14:13

mscorlib.ni.dll

4.0.30319.36364

17,564,664

01-Dec-2016

14:13

mscorrc.dll

4.0.30319.36362

397,800

01-Dec-2016

14:13

mscorsvc.dll

4.0.30319.36362

442,864

01-Dec-2016

14:13

mscorsvw.exe

4.0.30319.36362

124,912

01-Dec-2016

14:13

msvcp120_clr0400.dll

12.0.52389.36389

602,128

30-Mar-2017

13:17

msvcr120_clr0400.dll

12.0.52389.36389

634,376

30-Mar-2017

13:17

ngen.exe

4.0.30319.36362

165,856

01-Dec-2016

14:13

sos.dll

4.0.30319.36364

666,584

01-Dec-2016

14:13

system.core.dll

4.0.30319.36389

1,271,968

30-Mar-2017

13:17

system.net.dll

4.0.30319.36362

259,744

01-Dec-2016

14:13

system.web.extensions.dll

4.0.30319.36241

1,859,240

01-Dec-2016

14:13

system.core.ni.dll

4.0.30319.36362

7,296,008

01-Dec-2016

14:13

system.ni.dll

4.0.30319.36362

10,351,608

01-Dec-2016

14:13

wminet_utils.dll

4.0.30319.36386

110,080

21-Mar-2017

13:09

workflowservicehostperformancecounters.dll

4.0.30319.36362

62,576

06-Apr-2017

01:38

system.data.dll

4.0.30319.36372

3,180,544

01-Dec-2016

14:13

system.transactions.dll

4.0.30319.36362

289,312

01-Dec-2016

14:13

system.web.dll

4.0.30319.36362

5,464,056

01-Dec-2016

14:13

smdiagnostics.dll

4.0.30319.36362

73,392

01-Dec-2016

14:13

system.activities.dll

4.0.30319.36362

1,582,784

01-Dec-2016

14:13

system.componentmodel.composition.dll

4.0.30319.36362

312,104

01-Dec-2016

14:13

system.configuration.dll

4.0.30319.36362

402,648

01-Dec-2016

14:13

system.core.dll

4.0.30319.36389

1,271,968

30-Mar-2017

13:17

system.data.sqlxml.dll

4.0.30319.36362

752,336

01-Dec-2016

14:13

system.deployment.dll

4.0.30319.36362

853,704

01-Dec-2016

14:13

system.design.dll

4.0.30319.36362

5,056,176

01-Dec-2016

14:13

system.directoryservices.protocols.dll

4.0.30319.36362

203,056

01-Dec-2016

14:13

system.directoryservices.dll

4.0.30319.36362

425,712

01-Dec-2016

14:13

system.drawing.design.dll

4.0.30319.36362

113,888

01-Dec-2016

14:13

system.drawing.dll

4.0.30319.36362

598,712

01-Dec-2016

14:13

system.identitymodel.dll

4.0.30319.36362

1,093,840

01-Dec-2016

14:13

system.io.compression.dll

4.0.30319.36362

71,904

01-Dec-2016

14:13

system.management.dll

4.0.30319.36386

416,960

21-Mar-2017

13:09

system.messaging.dll

4.0.30319.36362

276,672

01-Dec-2016

14:13

system.net.dll

4.0.30319.36362

259,744

01-Dec-2016

14:13

system.numerics.dll

4.0.30319.36362

86,200

01-Dec-2016

14:13

system.runtime.remoting.dll

4.0.30319.36362

347,880

01-Dec-2016

14:13

system.runtime.serialization.dll

4.0.30319.36362

1,060,104

01-Dec-2016

14:13

system.runtime.windowsruntime.dll

4.0.30319.36362

152,336

01-Dec-2016

14:13

system.runtime.dll

4.0.30319.36362

36,536

01-Dec-2016

14:13

system.security.dll

4.0.30319.36389

296,632

30-Mar-2017

13:17

system.servicemodel.internals.dll

4.0.30319.36362

254,728

01-Dec-2016

14:13

system.servicemodel.web.dll

4.0.30319.36362

332,520

01-Dec-2016

14:13

system.servicemodel.dll

4.0.30319.36362

6,384,336

01-Dec-2016

14:13

system.serviceprocess.dll

4.0.30319.36362

134,872

01-Dec-2016

14:13

system.threading.timer.dll

4.0.30319.36362

29,416

01-Dec-2016

14:13

system.web.applicationservices.dll

4.0.30319.36362

71,440

01-Dec-2016

14:13

system.web.extensions.dll

4.0.30319.36241

1,859,240

01-Dec-2016

14:13

system.web.services.dll

4.0.30319.36362

858,320

01-Dec-2016

14:13

system.windows.forms.dll

4.0.30319.36362

4,859,608

01-Dec-2016

14:13

system.xaml.dll

4.0.30319.36389

640,672

30-Mar-2017

13:17

system.xml.dll

4.0.30319.36362

2,703,008

01-Dec-2016

14:13

system.dll

4.0.30319.36389

3,487,872

30-Mar-2017

13:17

 

如何取得此安全性更新的說明及支援

適用於

本文適用於下列項目:

  • 與以下版本一起運作的 Microsoft .NET Framework 4.5.2:

    • Windows Server 2012 R2

    • Windows 8.1

需要更多協助嗎?

想要其他選項嗎?

探索訂閱權益、瀏覽訓練課程、瞭解如何保護您的裝置等等。

社群可協助您詢問並回答問題、提供意見反應,以及聆聽來自具有豐富知識的專家意見。

這項資訊有幫助嗎?

您對語言品質的滿意度如何?
以下何者是您會在意的事項?
按下 [提交] 後,您的意見反應將用來改善 Microsoft 產品與服務。 您的 IT 管理員將能夠收集這些資料。 隱私權聲明。

感謝您的意見反應!

×