요약
이 Microsoft .NET Framework용 보안 업데이트는 .NET Framework(및 .NET Core) 구성 요소가 인증서의 유효성을 완전하게 검사하지 못하는 경우 존재하는 보안 기능 우회 취약성을 해결합니다. 이 취약성에 대해 자세히 알아보려면 Microsoft의 일반적인 취약성 및 노출 CVE-2017-0248을 참조하십시오.
또한 이 업데이트에는 Windows Presentation Framework PackageDigitalSignatureManager 구성 요소의 SHA256 해시 알고리즘 패키지 서명 기능에 대한 보안 강화 픽스도 포함되어 있습니다.
중요
-
이 업데이트를 설치한 후에 언어 팩을 설치하는 경우 이 업데이트를 다시 설치해야 합니다. 따라서 이 업데이트를 설치하기 전에 언어 팩을 설치하는 것이 좋습니다. 자세한 내용은 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"
참고 기본적으로 .NET Framework 4.6 이상 버전에서 실행되는 모든 .NET Framework 4.x 응용 프로그램의 경우 Switch.System.Net.DontCheckCertificateEKUsName = True입니다.
-
-
Windows 7 서비스 팩 1 및 Windows Server 2008 R2 서비스 팩 1과 관련한 이 보안 업데이트에 대한 자세한 내용은 Microsoft 기술 자료 문서에서 다음 문서를 참조하세요.
4019112 Windows 7 서비스 팩 1 및 Windows Server 2008 R2 서비스 팩 1의 .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1 및 4.6.2 업데이트용 보안 및 품질 롤업: 2017년 5월 9일 화요일
Windows Server 2008과 관련한 이 보안 업데이트에 대한 자세한 내용은 Microsoft 기술 자료 문서에서 다음 문서를 참조하십시오.
4019115 Windows Server 2008 서비스 팩 2의 .NET Framework 2.0 서비스 팩 2, 4.5.2 및 4.6 업데이트용 보안 및 품질 롤업: 2017년 5월 9일 화요일
업데이트를 구하고 설치하는 방법
방법 1: Windows Update
이 업데이트는 Windows 업데이트를 통해 제공됩니다. 자동 업데이트를 켜면 이 업데이트가 자동으로 다운로드되고 설치됩니다. 자동으로 보안 업데이트를 받는 방법에 대한 자세한 내용은 Windows 업데이트: FAQ를 참조하십시오.
방법 2: WSUS(Windows Software Update Services)
WSUS 서버에서 다음 단계를 수행합니다.
-
시작, 관리 도구, Microsoft Windows Server Update Services 3.0을 차례로 클릭합니다.
-
ComputerName 을 확장한 다음 작업을 클릭합니다.
-
업데이트 가져오기를 클릭합니다.
-
브라우저 창이 열립니다. ActiveX 컨트롤을 설치하라는 메시지가 표시되는 경우 계속하려면 ActiveX 컨트롤을 설치해야 합니다.
-
컨트롤이 설치되면 Microsoft 업데이트 카탈로그 화면이 표시됩니다. 검색 상자에 사용 중인 운영 체제에 따라 다음 중 하나를 입력한 후 검색을 클릭합니다.
-
Windows Server 2008의 경우 4019115를 입력합니다.
-
Windows 7 또는 Windows Server 2008 R2의 경우 4019112를 입력합니다.
-
-
사용자 환경의 운영 체제, 언어 및 프로세서와 일치하는 .NET Framework 패키지를 찾습니다. 추가를 클릭하여 해당 패키지를 바구니에 추가합니다.
-
필요한 패키지를 모두 선택했으면 바구니 보기를 클릭합니다.
-
가져오기를 클릭하여 패키지를 WSUS 서버로 가져옵니다.
-
패키지를 가져왔으면 닫기를 클릭하여 WSUS로 돌아옵니다.
이제 WSUS를 통해 업데이트를 설치할 수 있습니다.
배포 정보 업데이트
이 보안 업데이트에 대한 배포 정보는 Microsoft 기술 자료의 다음 문서를 참조하십시오.
20170509 보안 업데이트 배포 정보: 2017년 5월 9일 화요일
업데이트 제거 정보
참고 보안 업데이트는 제거하지 않는 것이 좋습니다.
이 업데이트를 제거하려면 제어판의 프로그램 및 기능 항목을 사용하십시오.
업데이트 다시 시작 정보
업데이트 중인 파일이 잠겨 있거나 사용 중인 경우가 아니면 이 업데이트를 적용한 후에 시스템을 다시 시작할 필요가 없습니다.
업데이트 대체 정보
이 업데이트는 이전에 릴리스된 업데이트를 대체하지 않습니다.
파일 정보
패키지 이름 |
패키지 해시 SHA 1 |
패키지 해시 SHA 2 |
---|---|---|
NDP46-KB4014511-x64.exe |
BEAB62B7D633D8CC6A207F52348C1954EAEE6A03 |
7418974D308A712FB6209D688191C861292DE8FA6D3BF08C91D62E0F82DA4824 |
NDP46-KB4014511-x86.exe |
5F79AE2826E102DEB33EBD5DC7DD13C4A6837844 |
66303075E7C594F23AA2984075E4547699D20B55C22D8EC193A9A79025A5E51D |
이 핫픽스의 영어(미국) 버전은 다음 표에 나열된 특성을 갖는 파일을 설치합니다. 이 파일의 날짜와 시간은 UTC(협정 세계시)로 나열되며 이러한 파일의 날짜와 시간은 로컬 컴퓨터에서 현재의 DST(일광 절약 시간) 설정이 적용된 상태로 현지 시간으로 표시됩니다. 또한 이러한 날짜와 시간은 파일에 대해 특정 작업을 수행할 경우 변경될 수 있습니다.
모든 x86 기반 시스템
파일 이름 |
파일 버전 |
파일 크기 |
날짜 |
시간 |
---|---|---|---|---|
System.Web.DataVisualization.dll |
4.6.1099.0 |
1,690,000 |
29-Mar-2017 |
23:32 |
Microsoft.VisualBasic.Activities.Compiler.dll |
14.0.1099.0 |
2,944,808 |
29-Mar-2017 |
23:32 |
vbc.exe |
14.0.1099.0 |
2,713,208 |
29-Mar-2017 |
23:32 |
Microsoft.VisualBasic.Activities.CompilerUI.dll |
14.0.1099.0 |
273,712 |
29-Mar-2017 |
23:32 |
vbc7ui.dll |
14.0.1099.0 |
273,048 |
29-Mar-2017 |
23:32 |
Accessibility.dll |
4.6.1099.0 |
36,008 |
29-Mar-2017 |
23:32 |
AddInProcess.exe |
4.6.1099.0 |
42,104 |
29-Mar-2017 |
23:32 |
AddInProcess32.exe |
4.6.1099.0 |
42,104 |
29-Mar-2017 |
23:32 |
AddInUtil.exe |
4.6.1099.0 |
42,104 |
29-Mar-2017 |
23:32 |
AdoNetDiag.dll |
4.6.1099.0 |
169,128 |
29-Mar-2017 |
23:32 |
alink.dll |
14.0.1099.0 |
117,912 |
29-Mar-2017 |
23:32 |
alinkui.dll |
14.0.1099.0 |
36,504 |
29-Mar-2017 |
23:32 |
AppLaunch.exe |
4.6.1099.0 |
96,888 |
29-Mar-2017 |
23:32 |
aspnet_compiler.exe |
4.6.1099.0 |
55,416 |
29-Mar-2017 |
23:32 |
aspnet_counters.dll |
4.6.1099.0 |
28,344 |
29-Mar-2017 |
23:32 |
aspnet_filter.dll |
4.6.1099.0 |
35,000 |
29-Mar-2017 |
23:32 |
aspnet_isapi.dll |
4.6.1099.0 |
25,264 |
29-Mar-2017 |
23:32 |
Aspnet_perf.dll |
4.6.1099.0 |
41,648 |
29-Mar-2017 |
23:32 |
aspnet_rc.dll |
4.6.1099.0 |
91,304 |
29-Mar-2017 |
23:32 |
aspnet_regbrowsers.exe |
4.6.1099.0 |
44,664 |
29-Mar-2017 |
23:32 |
aspnet_regiis.exe |
4.6.1099.0 |
40,560 |
29-Mar-2017 |
23:32 |
aspnet_regsql.exe |
4.6.1099.0 |
126,584 |
29-Mar-2017 |
23:32 |
aspnet_state.exe |
4.6.1099.0 |
45,688 |
29-Mar-2017 |
23:32 |
aspnet_wp.exe |
4.6.1099.0 |
43,640 |
29-Mar-2017 |
23:32 |
AspNetMMCExt.dll |
4.6.1099.0 |
507,568 |
29-Mar-2017 |
23:32 |
ThirdPartyNotices.txt |
20,324 |
29-Mar-2017 |
23:32 |
|
CasPol.exe |
4.6.1099.0 |
107,128 |
29-Mar-2017 |
23:32 |
clr.dll |
4.6.1099.0 |
7,003,792 |
29-Mar-2017 |
23:32 |
clrcompression.dll |
4.6.1099.0 |
123,576 |
29-Mar-2017 |
23:32 |
clretwrc.dll |
4.6.1099.0 |
237,224 |
29-Mar-2017 |
23:32 |
clrjit.dll |
4.6.1099.0 |
511,128 |
29-Mar-2017 |
23:32 |
ComSvcConfig.exe |
4.6.1099.0 |
172,664 |
29-Mar-2017 |
23:32 |
CORPerfMonExt.dll |
4.6.1099.0 |
126,136 |
29-Mar-2017 |
23:32 |
csc.exe |
4.6.1099.0 |
2,052,728 |
29-Mar-2017 |
23:32 |
cscui.dll |
4.6.1099.0 |
204,952 |
29-Mar-2017 |
23:32 |
Culture.dll |
4.6.1099.0 |
54,944 |
29-Mar-2017 |
23:32 |
CustomMarshalers.dll |
4.6.1099.0 |
95,936 |
29-Mar-2017 |
23:32 |
DataSvcUtil.exe |
4.6.1099.0 |
71,280 |
29-Mar-2017 |
23:32 |
dfdll.dll |
4.6.1099.0 |
154,768 |
29-Mar-2017 |
23:32 |
dfshim.dll.mui |
4.0.41209.0 |
18,600 |
29-Mar-2017 |
23:32 |
dfsvc.exe |
4.6.1099.0 |
23,664 |
29-Mar-2017 |
23:32 |
diasymreader.dll |
14.0.1099.0 |
868,528 |
29-Mar-2017 |
23:32 |
dw20.exe |
4.6.1099.0 |
44,152 |
29-Mar-2017 |
23:32 |
EdmGen.exe |
4.6.1099.0 |
96,376 |
29-Mar-2017 |
23:32 |
EventLogMessages.dll |
4.6.1099.0 |
805,568 |
29-Mar-2017 |
23:32 |
filetracker.dll |
14.0.1099.0 |
215,216 |
29-Mar-2017 |
23:32 |
FileTrackerUI.dll |
14.0.1099.0 |
22,712 |
29-Mar-2017 |
23:32 |
fusion.dll |
4.6.1099.0 |
93,336 |
29-Mar-2017 |
23:32 |
GlobalUserInterface.CompositeFont |
116,922 |
29-Mar-2017 |
23:32 |
|
ilasm.exe |
4.6.1099.0 |
285,816 |
29-Mar-2017 |
23:32 |
InstallUtil.exe |
4.6.1099.0 |
40,568 |
29-Mar-2017 |
23:32 |
InstallUtilLib.dll |
4.6.1099.0 |
68,288 |
29-Mar-2017 |
23:32 |
ISymWrapper.dll |
4.6.1099.0 |
71,344 |
29-Mar-2017 |
23:32 |
jsc.exe |
14.6.1099.0 |
46,200 |
29-Mar-2017 |
23:32 |
locale.nlp |
419,640 |
29-Mar-2017 |
23:32 |
|
Microsoft.Activities.Build.dll |
4.6.1099.0 |
53,480 |
29-Mar-2017 |
23:32 |
Microsoft.Build.Conversion.v4.0.dll |
4.6.1099.0 |
84,736 |
29-Mar-2017 |
23:32 |
Microsoft.Build.dll |
4.6.1099.0 |
1,405,632 |
29-Mar-2017 |
23:32 |
Microsoft.Build.Engine.dll |
4.6.1099.0 |
655,576 |
29-Mar-2017 |
23:32 |
Microsoft.Build.Framework.dll |
4.6.1099.0 |
100,072 |
29-Mar-2017 |
23:32 |
Microsoft.Build.Tasks.v4.0.dll |
4.6.1099.0 |
1,157,352 |
29-Mar-2017 |
23:32 |
Microsoft.Build.Utilities.v4.0.dll |
4.6.1099.0 |
268,024 |
29-Mar-2017 |
23:32 |
Microsoft.CSharp.dll |
4.6.1099.0 |
483,008 |
29-Mar-2017 |
23:32 |
Microsoft.Data.Entity.Build.Tasks.dll |
4.6.1099.0 |
52,488 |
29-Mar-2017 |
23:32 |
Microsoft.Internal.Tasks.Dataflow.dll |
4.6.1099.0 |
184,072 |
29-Mar-2017 |
23:32 |
Microsoft.Transactions.Bridge.dll |
4.6.1099.0 |
395,016 |
29-Mar-2017 |
23:32 |
Microsoft.Transactions.Bridge.Dtc.dll |
4.6.1099.0 |
130,824 |
29-Mar-2017 |
23:32 |
Microsoft.Windows.ApplicationServer.Applications.dll.mui |
4.6.1099.0 |
99,160 |
29-Mar-2017 |
23:32 |
Microsoft.Windows.ApplicationServer.Applications.dll |
4.6.1099.0 |
140,688 |
29-Mar-2017 |
23:32 |
Microsoft.Workflow.Compiler.exe |
4.6.1099.0 |
32,376 |
29-Mar-2017 |
23:32 |
Microsoft.JScript.dll |
14.6.1099.0 |
750,792 |
29-Mar-2017 |
23:32 |
Microsoft.JScript.tlb |
14.0.1099.0 |
58,880 |
29-Mar-2017 |
23:32 |
Microsoft.VisualBasic.Compatibility.Data.dll |
14.6.1099.0 |
116,520 |
29-Mar-2017 |
23:32 |
Microsoft.VisualBasic.Compatibility.dll |
14.6.1099.0 |
497,936 |
29-Mar-2017 |
23:32 |
Microsoft.VisualBasic.dll |
14.6.1099.0 |
640,224 |
29-Mar-2017 |
23:32 |
MmcAspExt.dll |
4.6.1099.0 |
106,664 |
29-Mar-2017 |
23:32 |
MSBuild.exe |
4.6.1099.0 |
260,208 |
29-Mar-2017 |
23:32 |
mscordacwks.dll |
4.6.1099.0 |
1,271,472 |
29-Mar-2017 |
23:32 |
mscordbi.dll |
4.6.1099.0 |
1,088,672 |
29-Mar-2017 |
23:32 |
mscoree.tlb |
4.6.1099.0 |
31,744 |
29-Mar-2017 |
23:32 |
mscoreei.dll |
4.6.1099.0 |
497,824 |
29-Mar-2017 |
23:32 |
mscoreeis.dll |
4.6.1099.0 |
33,952 |
29-Mar-2017 |
23:32 |
mscorlib.dll |
4.6.1099.0 |
5,359,776 |
29-Mar-2017 |
23:32 |
mscorpe.dll |
4.6.1099.0 |
88,224 |
29-Mar-2017 |
23:32 |
mscorpehost.dll |
4.6.1099.0 |
137,904 |
29-Mar-2017 |
23:32 |
mscorrc.dll |
4.6.1099.0 |
399,008 |
29-Mar-2017 |
23:32 |
mscorsecimpl.dll |
4.6.1099.0 |
102,072 |
29-Mar-2017 |
23:32 |
mscorsecr.dll |
4.6.1099.0 |
39,080 |
29-Mar-2017 |
23:32 |
mscorsn.dll |
4.6.1099.0 |
25,760 |
29-Mar-2017 |
23:32 |
mscorsvc.dll |
4.6.1099.0 |
415,912 |
29-Mar-2017 |
23:32 |
mscorsvw.exe |
4.6.1099.0 |
105,096 |
29-Mar-2017 |
23:32 |
VsVersion.dll |
14.0.1099.0 |
19,104 |
29-Mar-2017 |
23:32 |
netfx45_upgradecleanup.inf |
2,371 |
29-Mar-2017 |
23:32 |
|
ngen.exe |
4.6.1099.0 |
140,920 |
29-Mar-2017 |
23:32 |
nlssorting.dll |
4.6.1099.0 |
75,944 |
29-Mar-2017 |
23:32 |
normalization.dll |
4.6.1099.0 |
31,416 |
29-Mar-2017 |
23:32 |
PenIMC.dll |
4.6.1099.0 |
77,976 |
29-Mar-2017 |
23:32 |
PerfCounter.dll |
4.6.1099.0 |
211,120 |
29-Mar-2017 |
23:32 |
peverify.dll |
4.6.1099.0 |
173,216 |
29-Mar-2017 |
23:32 |
PresentationBuildTasks.dll |
4.6.1099.0 |
600,448 |
29-Mar-2017 |
23:32 |
PresentationCore.dll |
4.6.1099.0 |
3,491,168 |
29-Mar-2017 |
23:32 |
PresentationFramework.Aero.dll |
4.6.1099.0 |
247,696 |
29-Mar-2017 |
23:32 |
presentationframework.aerolite.dll |
4.6.1099.0 |
177,568 |
29-Mar-2017 |
23:32 |
PresentationFramework.Classic.dll |
4.6.1099.0 |
180,632 |
29-Mar-2017 |
23:32 |
PresentationFramework.Luna.dll |
4.6.1099.0 |
484,240 |
29-Mar-2017 |
23:32 |
PresentationFramework.Royale.dll |
4.6.1099.0 |
207,768 |
29-Mar-2017 |
23:32 |
PresentationFramework.dll |
4.6.1099.0 |
6,079,864 |
29-Mar-2017 |
23:32 |
PresentationFramework-SystemCore.dll |
4.6.1099.0 |
25,344 |
29-Mar-2017 |
23:32 |
PresentationFramework-SystemData.dll |
4.6.1099.0 |
23,808 |
29-Mar-2017 |
23:32 |
PresentationFramework-SystemDrawing.dll |
4.6.1099.0 |
24,336 |
29-Mar-2017 |
23:32 |
PresentationFramework-SystemXml.dll |
4.6.1099.0 |
24,832 |
29-Mar-2017 |
23:32 |
PresentationFramework-SystemXmlLinq.dll |
4.6.1099.0 |
22,800 |
29-Mar-2017 |
23:32 |
PresentationHost_v0400.dll |
4.6.1099.0 |
181,464 |
29-Mar-2017 |
23:32 |
PresentationHost_v0400.dll.mui |
4.6.1099.0 |
84,720 |
29-Mar-2017 |
23:32 |
PresentationNative_v0400.dll |
4.6.1099.0 |
791,264 |
29-Mar-2017 |
23:32 |
PresentationUI.dll |
4.6.1099.0 |
843,960 |
29-Mar-2017 |
23:32 |
ReachFramework.dll |
4.6.1099.0 |
581,976 |
29-Mar-2017 |
23:32 |
RegAsm.exe |
4.6.1099.0 |
64,120 |
29-Mar-2017 |
23:32 |
RegSvcs.exe |
4.6.1099.0 |
45,176 |
29-Mar-2017 |
23:32 |
regtlib.exe |
14.0.1099.0 |
96,888 |
29-Mar-2017 |
23:32 |
sbscmp10.dll |
4.0.41209.0 |
23,712 |
29-Mar-2017 |
23:32 |
ServiceModelEvents.dll.mui |
4.6.1099.0 |
43,736 |
29-Mar-2017 |
23:32 |
ServiceModelEvents.dll |
4.6.1099.0 |
19,144 |
29-Mar-2017 |
23:32 |
ServiceModelInstallRC.dll.mui |
4.6.1099.0 |
19,688 |
29-Mar-2017 |
23:32 |
ServiceModelInstallRC.dll |
4.6.1099.0 |
19,160 |
29-Mar-2017 |
23:32 |
ServiceModelPerformanceCounters.dll.mui |
4.6.1099.0 |
47,376 |
29-Mar-2017 |
23:32 |
ServiceModelPerformanceCounters.dll |
4.6.1099.0 |
89,856 |
29-Mar-2017 |
23:32 |
ServiceModelReg.exe |
4.6.1099.0 |
216,696 |
29-Mar-2017 |
23:32 |
ServiceModelRegUI.dll.mui |
4.6.1099.0 |
37,592 |
29-Mar-2017 |
23:32 |
ServiceModelRegUI.dll |
4.6.1099.0 |
19,144 |
29-Mar-2017 |
23:32 |
ServiceMonikerSupport.dll |
4.6.1099.0 |
27,864 |
29-Mar-2017 |
23:32 |
SMDiagnostics.dll |
4.6.1099.0 |
72,880 |
29-Mar-2017 |
23:32 |
SMSvcHost.exe |
4.6.1099.0 |
135,800 |
29-Mar-2017 |
23:32 |
SOS.dll |
4.6.1099.0 |
722,064 |
29-Mar-2017 |
23:32 |
System.Speech.dll |
4.6.1099.0 |
680,280 |
29-Mar-2017 |
23:32 |
sysglobl.dll |
4.6.1099.0 |
132,240 |
29-Mar-2017 |
23:32 |
System.Activities.Core.Presentation.dll |
4.6.1099.0 |
704,272 |
29-Mar-2017 |
23:32 |
System.Activities.dll |
4.6.1099.0 |
1,519,808 |
29-Mar-2017 |
23:32 |
System.Activities.DurableInstancing.dll |
4.6.1099.0 |
141,096 |
29-Mar-2017 |
23:32 |
System.Activities.Presentation.dll |
4.6.1099.0 |
2,093,816 |
29-Mar-2017 |
23:32 |
System.AddIn.Contract.dll |
4.6.1099.0 |
51,928 |
29-Mar-2017 |
23:32 |
System.AddIn.dll |
4.6.1099.0 |
161,456 |
29-Mar-2017 |
23:32 |
System.Collections.Concurrent.dll |
4.6.1099.0 |
29,448 |
29-Mar-2017 |
23:32 |
System.Collections.dll |
4.6.1099.0 |
29,896 |
29-Mar-2017 |
23:32 |
System.ComponentModel.Annotations.dll |
4.6.1099.0 |
30,504 |
29-Mar-2017 |
23:32 |
System.ComponentModel.Composition.dll |
4.6.1099.0 |
310,560 |
29-Mar-2017 |
23:32 |
System.ComponentModel.Composition.Registration.dll |
4.6.1099.0 |
62,848 |
29-Mar-2017 |
23:32 |
System.ComponentModel.DataAnnotations.dll |
4.6.1099.0 |
125,760 |
29-Mar-2017 |
23:32 |
System.ComponentModel.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:32 |
System.ComponentModel.EventBasedAsync.dll |
4.6.1099.0 |
29,504 |
29-Mar-2017 |
23:32 |
System.Core.dll |
4.6.1099.0 |
1,312,928 |
29-Mar-2017 |
23:32 |
System.Data.DataSetExtensions.dll |
4.6.1099.0 |
71,440 |
29-Mar-2017 |
23:32 |
System.Data.Entity.Design.dll |
4.6.1099.0 |
1,081,576 |
29-Mar-2017 |
23:32 |
System.Data.Entity.dll |
4.6.1099.0 |
4,010,184 |
29-Mar-2017 |
23:32 |
System.Data.Linq.dll |
4.6.1099.0 |
685,760 |
29-Mar-2017 |
23:32 |
System.Data.Services.Client.dll |
4.6.1099.0 |
442,096 |
29-Mar-2017 |
23:32 |
System.Data.Services.Design.dll |
4.6.1099.0 |
173,808 |
29-Mar-2017 |
23:32 |
System.Data.Services.dll |
4.6.1099.0 |
669,904 |
29-Mar-2017 |
23:32 |
System.Diagnostics.Contracts.dll |
4.6.1099.0 |
29,960 |
29-Mar-2017 |
23:32 |
System.Diagnostics.Debug.dll |
4.6.1099.0 |
29,416 |
29-Mar-2017 |
23:32 |
System.Diagnostics.Tools.dll |
4.6.1099.0 |
29,424 |
29-Mar-2017 |
23:32 |
System.Diagnostics.Tracing.dll |
4.6.1099.0 |
29,944 |
29-Mar-2017 |
23:32 |
System.DirectoryServices.AccountManagement.dll |
4.6.1099.0 |
293,680 |
29-Mar-2017 |
23:32 |
System.Dynamic.dll |
4.6.1099.0 |
130,216 |
29-Mar-2017 |
23:32 |
System.Dynamic.Runtime.dll |
4.6.1099.0 |
29,928 |
29-Mar-2017 |
23:32 |
System.Globalization.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:32 |
System.IdentityModel.dll |
4.6.1099.0 |
1,066,200 |
29-Mar-2017 |
23:32 |
System.IdentityModel.Selectors.dll |
4.6.1099.0 |
144,136 |
29-Mar-2017 |
23:32 |
System.IdentityModel.Services.dll |
4.6.1099.0 |
197,368 |
29-Mar-2017 |
23:32 |
System.IO.dll |
4.6.1099.0 |
28,816 |
29-Mar-2017 |
23:32 |
System.IO.Log.dll |
4.6.1099.0 |
132,792 |
29-Mar-2017 |
23:32 |
System.Linq.dll |
4.6.1099.0 |
29,344 |
29-Mar-2017 |
23:32 |
System.Linq.Expressions.dll |
4.6.1099.0 |
31,464 |
29-Mar-2017 |
23:32 |
System.Linq.Parallel.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:32 |
System.Linq.Queryable.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:32 |
System.Management.Instrumentation.dll |
4.6.1099.0 |
144,648 |
29-Mar-2017 |
23:32 |
System.Net.dll |
4.6.1099.0 |
256,672 |
29-Mar-2017 |
23:32 |
System.Net.Http.Rtc.dll |
4.6.1099.0 |
29,392 |
29-Mar-2017 |
23:32 |
System.Net.NetworkInformation.dll |
4.6.1099.0 |
30,472 |
29-Mar-2017 |
23:32 |
System.Net.Primitives.dll |
4.6.1099.0 |
29,912 |
29-Mar-2017 |
23:32 |
System.Net.Requests.dll |
4.6.1099.0 |
29,392 |
29-Mar-2017 |
23:32 |
System.Net.WebHeaderCollection.dll |
4.6.1099.0 |
28,944 |
29-Mar-2017 |
23:32 |
System.ObjectModel.dll |
4.6.1099.0 |
29,896 |
29-Mar-2017 |
23:32 |
System.Printing.dll |
4.6.1099.0 |
366,944 |
29-Mar-2017 |
23:32 |
System.Reflection.dll |
4.6.1099.0 |
29,888 |
29-Mar-2017 |
23:32 |
System.Reflection.Emit.dll |
4.6.1099.0 |
29,408 |
29-Mar-2017 |
23:32 |
System.Reflection.Emit.ILGeneration.dll |
4.6.1099.0 |
29,488 |
29-Mar-2017 |
23:32 |
System.Reflection.Emit.Lightweight.dll |
4.6.1099.0 |
29,480 |
29-Mar-2017 |
23:32 |
System.Reflection.Extensions.dll |
4.6.1099.0 |
29,448 |
29-Mar-2017 |
23:32 |
System.Reflection.Primitives.dll |
4.6.1099.0 |
29,448 |
29-Mar-2017 |
23:32 |
System.Resources.ResourceManager.dll |
4.6.1099.0 |
29,464 |
29-Mar-2017 |
23:32 |
System.Runtime.dll |
4.6.1099.0 |
37,552 |
29-Mar-2017 |
23:32 |
System.Runtime.DurableInstancing.dll |
4.6.1099.0 |
171,808 |
29-Mar-2017 |
23:32 |
System.Runtime.Extensions.dll |
4.6.1099.0 |
29,424 |
29-Mar-2017 |
23:32 |
System.Runtime.Handles.dll |
4.6.1099.0 |
29,408 |
29-Mar-2017 |
23:32 |
System.Runtime.InteropServices.dll |
4.6.1099.0 |
32,520 |
29-Mar-2017 |
23:32 |
System.Runtime.InteropServices.WindowsRuntime.dll |
4.6.1099.0 |
29,552 |
29-Mar-2017 |
23:32 |
System.Runtime.Numerics.dll |
4.6.1099.0 |
29,416 |
29-Mar-2017 |
23:32 |
System.Runtime.Serialization.dll |
4.6.1099.0 |
1,037,568 |
29-Mar-2017 |
23:32 |
System.Runtime.Serialization.Json.dll |
4.6.1099.0 |
29,472 |
29-Mar-2017 |
23:32 |
System.Runtime.Serialization.Primitives.dll |
4.6.1099.0 |
29,520 |
29-Mar-2017 |
23:32 |
System.Runtime.Serialization.Xml.dll |
4.6.1099.0 |
29,472 |
29-Mar-2017 |
23:32 |
System.Security.Principal.dll |
4.6.1099.0 |
29,424 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Activation.dll |
4.6.1099.0 |
201,976 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Activities.dll |
4.6.1099.0 |
558,328 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Channels.dll |
4.6.1099.0 |
156,912 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Discovery.dll |
4.6.1099.0 |
307,448 |
29-Mar-2017 |
23:32 |
System.ServiceModel.dll |
4.6.1099.0 |
6,197,960 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Duplex.dll |
4.6.1099.0 |
29,432 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Http.dll |
4.6.1099.0 |
29,936 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Internals.dll |
4.6.1099.0 |
250,120 |
29-Mar-2017 |
23:32 |
System.ServiceModel.NetTcp.dll |
4.6.1099.0 |
29,432 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Primitives.dll |
4.6.1099.0 |
34,064 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Routing.dll |
4.6.1099.0 |
130,288 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Security.dll |
4.6.1099.0 |
29,952 |
29-Mar-2017 |
23:32 |
System.ServiceModel.ServiceMoniker40.dll |
4.6.1099.0 |
23,312 |
29-Mar-2017 |
23:32 |
System.ServiceModel.WasHosting.dll |
4.6.1099.0 |
39,160 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Web.dll |
4.6.1099.0 |
327,392 |
29-Mar-2017 |
23:32 |
System.Text.Encoding.dll |
4.6.1099.0 |
29,392 |
29-Mar-2017 |
23:32 |
System.Text.Encoding.Extensions.dll |
4.6.1099.0 |
28,944 |
29-Mar-2017 |
23:32 |
System.Text.RegularExpressions.dll |
4.6.1099.0 |
29,456 |
29-Mar-2017 |
23:32 |
System.Threading.dll |
4.6.1099.0 |
29,880 |
29-Mar-2017 |
23:32 |
System.Threading.Tasks.dll |
4.6.1099.0 |
29,920 |
29-Mar-2017 |
23:32 |
System.Threading.Tasks.Parallel.dll |
4.6.1099.0 |
29,464 |
29-Mar-2017 |
23:32 |
System.Threading.Timer.dll |
4.6.1099.0 |
29,408 |
29-Mar-2017 |
23:32 |
System.Web.Abstractions.dll |
4.6.1099.0 |
22,912 |
29-Mar-2017 |
23:32 |
System.Web.ApplicationServices.dll |
4.6.1099.0 |
70,928 |
29-Mar-2017 |
23:32 |
System.Web.DataVisualization.Design.dll |
4.6.1099.0 |
105,392 |
29-Mar-2017 |
23:32 |
System.Web.DynamicData.Design.dll |
4.6.1099.0 |
44,440 |
29-Mar-2017 |
23:32 |
System.Web.DynamicData.dll |
4.6.1099.0 |
244,600 |
29-Mar-2017 |
23:32 |
System.Web.Entity.Design.dll |
4.6.1099.0 |
172,768 |
29-Mar-2017 |
23:32 |
System.Web.Entity.dll |
4.6.1099.0 |
164,544 |
29-Mar-2017 |
23:32 |
System.Web.Extensions.Design.dll |
4.6.1099.0 |
351,640 |
29-Mar-2017 |
23:32 |
System.Web.Extensions.dll |
4.6.1099.0 |
1,846,496 |
29-Mar-2017 |
23:32 |
System.Web.Routing.dll |
4.6.1099.0 |
22,376 |
29-Mar-2017 |
23:32 |
System.Windows.dll |
4.6.1099.0 |
31,408 |
29-Mar-2017 |
23:32 |
System.Windows.Forms.DataVisualization.Design.dll |
4.6.1099.0 |
82,392 |
29-Mar-2017 |
23:32 |
System.Windows.Forms.DataVisualization.dll |
4.6.1099.0 |
1,702,336 |
29-Mar-2017 |
23:32 |
System.Workflow.Activities.dll |
4.6.1099.0 |
1,044,720 |
29-Mar-2017 |
23:32 |
System.Workflow.ComponentModel.dll |
4.6.1099.0 |
1,535,224 |
29-Mar-2017 |
23:32 |
System.Workflow.Runtime.dll |
4.6.1099.0 |
494,816 |
29-Mar-2017 |
23:32 |
System.WorkflowServices.dll |
4.6.1099.0 |
449,248 |
29-Mar-2017 |
23:32 |
System.Xaml.Hosting.dll |
4.6.1099.0 |
42,704 |
29-Mar-2017 |
23:32 |
System.Xml.Linq.dll |
4.6.1099.0 |
163,000 |
29-Mar-2017 |
23:32 |
System.Xml.ReaderWriter.dll |
4.6.1099.0 |
29,928 |
29-Mar-2017 |
23:32 |
System.Xml.Serialization.dll |
4.6.1099.0 |
45,808 |
29-Mar-2017 |
23:32 |
System.Xml.XDocument.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:32 |
System.Xml.XmlSerializer.dll |
4.6.1099.0 |
29,928 |
29-Mar-2017 |
23:32 |
System.Runtime.Caching.dll |
4.6.1099.0 |
108,408 |
29-Mar-2017 |
23:32 |
System.Configuration.dll |
4.6.1099.0 |
402,648 |
29-Mar-2017 |
23:32 |
System.Configuration.Install.dll |
4.6.1099.0 |
102,656 |
29-Mar-2017 |
23:32 |
System.Data.dll |
4.6.1099.0 |
3,359,920 |
29-Mar-2017 |
23:32 |
System.Data.OracleClient.dll |
4.6.1099.0 |
506,080 |
29-Mar-2017 |
23:32 |
System.Data.SqlXml.dll |
4.6.1099.0 |
730,832 |
29-Mar-2017 |
23:32 |
System.Deployment.dll |
4.6.1099.0 |
846,016 |
29-Mar-2017 |
23:32 |
System.Design.dll |
4.6.1099.0 |
4,999,848 |
29-Mar-2017 |
23:32 |
System.Device.dll |
4.6.1099.0 |
64,184 |
29-Mar-2017 |
23:32 |
System.DirectoryServices.dll |
4.6.1099.0 |
420,080 |
29-Mar-2017 |
23:32 |
System.DirectoryServices.Protocols.dll |
4.6.1099.0 |
200,488 |
29-Mar-2017 |
23:32 |
System.dll |
4.6.1099.0 |
3,462,784 |
29-Mar-2017 |
23:32 |
System.Drawing.Design.dll |
4.6.1099.0 |
112,856 |
29-Mar-2017 |
23:32 |
System.Drawing.dll |
4.6.1099.0 |
594,616 |
29-Mar-2017 |
23:32 |
System.Drawing.tlb |
4.6.1099.0 |
8,704 |
29-Mar-2017 |
23:32 |
System.EnterpriseServices.dll |
4.6.1099.0 |
239,336 |
29-Mar-2017 |
23:32 |
System.EnterpriseServices.Thunk.dll |
4.6.1099.0 |
99,064 |
29-Mar-2017 |
23:32 |
System.EnterpriseServices.tlb |
4.6.1099.0 |
34,304 |
29-Mar-2017 |
23:32 |
System.EnterpriseServices.Wrapper.dll |
4.6.1099.0 |
111,616 |
29-Mar-2017 |
23:32 |
System.IO.Compression.dll |
4.6.1099.0 |
71,904 |
29-Mar-2017 |
23:32 |
System.IO.Compression.FileSystem.dll |
4.6.1099.0 |
33,024 |
29-Mar-2017 |
23:32 |
System.Management.dll |
4.6.1099.0 |
413,384 |
29-Mar-2017 |
23:32 |
System.Messaging.dll |
4.6.1099.0 |
272,064 |
29-Mar-2017 |
23:32 |
System.Net.Http.dll |
4.6.1099.0 |
200,368 |
29-Mar-2017 |
23:32 |
System.Net.Http.WebRequest.dll |
4.6.1099.0 |
50,936 |
29-Mar-2017 |
23:32 |
System.Numerics.dll |
4.6.1099.0 |
138,416 |
29-Mar-2017 |
23:32 |
System.Numerics.Vectors.dll |
4.6.1099.0 |
31,464 |
29-Mar-2017 |
23:32 |
System.Reflection.context.dll |
4.6.1099.0 |
107,760 |
29-Mar-2017 |
23:32 |
System.Runtime.Remoting.dll |
4.6.1099.0 |
344,288 |
29-Mar-2017 |
23:32 |
System.Runtime.Serialization.Formatters.Soap.dll |
4.6.1099.0 |
141,160 |
29-Mar-2017 |
23:32 |
System.Security.dll |
4.6.1099.0 |
292,528 |
29-Mar-2017 |
23:32 |
System.ServiceProcess.dll |
4.6.1099.0 |
134,360 |
29-Mar-2017 |
23:32 |
System.tlb |
14.6.1099.0 |
72,192 |
29-Mar-2017 |
23:32 |
System.Transactions.dll |
4.6.1099.0 |
303,824 |
29-Mar-2017 |
23:32 |
System.Web.dll |
4.6.1099.0 |
5,349,544 |
29-Mar-2017 |
23:32 |
System.Web.Mobile.dll |
4.6.1099.0 |
827,080 |
29-Mar-2017 |
23:32 |
System.Web.RegularExpressions.dll |
4.6.1099.0 |
105,720 |
29-Mar-2017 |
23:32 |
System.Web.Services.dll |
4.6.1099.0 |
843,976 |
29-Mar-2017 |
23:32 |
System.Web.tlb |
4.6.1099.0 |
7,168 |
29-Mar-2017 |
23:32 |
System.Windows.Controls.Ribbon.dll |
4.6.1099.0 |
740,248 |
29-Mar-2017 |
23:32 |
System.Windows.Forms.dll |
4.6.1099.0 |
4,801,752 |
29-Mar-2017 |
23:32 |
System.Windows.Forms.tlb |
4.6.1099.0 |
86,528 |
29-Mar-2017 |
23:32 |
System.Windows.Input.Manipulations.dll |
4.6.1099.0 |
67,496 |
29-Mar-2017 |
23:32 |
System.Windows.Presentation.dll |
4.6.1099.0 |
29,072 |
29-Mar-2017 |
23:32 |
System.Xaml.dll |
4.6.1099.0 |
626,848 |
29-Mar-2017 |
23:32 |
System.Xml.dll |
4.6.1099.0 |
2,621,080 |
29-Mar-2017 |
23:32 |
TLBREF.DLL |
4.6.1099.0 |
110,744 |
29-Mar-2017 |
23:32 |
UIAutomationClient.dll |
4.6.1099.0 |
176,488 |
29-Mar-2017 |
23:32 |
UIAutomationClientsideProviders.dll |
4.6.1099.0 |
358,816 |
29-Mar-2017 |
23:32 |
UIAutomationProvider.dll |
4.6.1099.0 |
48,496 |
29-Mar-2017 |
23:32 |
UIAutomationTypes.dll |
4.6.1099.0 |
104,800 |
29-Mar-2017 |
23:32 |
WebAdminPage.cs |
48,004 |
29-Mar-2017 |
23:32 |
|
webengine.dll |
4.6.1099.0 |
25,256 |
29-Mar-2017 |
23:32 |
webengine4.dll |
4.6.1099.0 |
512,680 |
29-Mar-2017 |
23:32 |
WindowsBase.dll |
4.6.1099.0 |
1,256,776 |
29-Mar-2017 |
23:32 |
WindowsFormsIntegration.dll |
4.6.1099.0 |
102,784 |
29-Mar-2017 |
23:32 |
WMINet_Utils.dll |
4.6.1099.0 |
125,616 |
29-Mar-2017 |
23:32 |
WorkflowServiceHostPerformanceCounters.dll.mui |
4.6.1099.0 |
23,856 |
29-Mar-2017 |
23:32 |
WorkflowServiceHostPerformanceCounters.dll |
4.6.1099.0 |
87,840 |
29-Mar-2017 |
23:32 |
wpf-etw.man |
151,330 |
29-Mar-2017 |
23:32 |
|
WPFFontCache_v0400.exe.mui |
4.6.1099.0 |
19,168 |
29-Mar-2017 |
23:32 |
WPFFontCache_v0400.exe |
4.6.1099.0 |
25,720 |
29-Mar-2017 |
23:32 |
wpfgfx_v0400.dll |
4.6.1099.0 |
1,685,680 |
29-Mar-2017 |
23:32 |
WsatConfig.exe |
4.6.1099.0 |
152,184 |
29-Mar-2017 |
23:32 |
XamlBuildTask.dll |
4.6.1099.0 |
131,256 |
29-Mar-2017 |
23:32 |
XsdBuildTask.dll |
4.6.1099.0 |
67,768 |
29-Mar-2017 |
23:32 |
모든 x64 기반 시스템
파일 이름 |
파일 버전 |
파일 크기 |
날짜 |
시간 |
---|---|---|---|---|
System.Web.DataVisualization.dll |
4.6.1099.0 |
1,690,000 |
29-Mar-2017 |
23:32 |
Microsoft.VisualBasic.Activities.Compiler.dll |
14.0.1099.0 |
3,960,104 |
29-Mar-2017 |
23:51 |
Microsoft.VisualBasic.Activities.Compiler.dll |
14.0.1099.0 |
2,944,808 |
29-Mar-2017 |
23:32 |
vbc.exe |
14.0.1099.0 |
3,246,712 |
29-Mar-2017 |
23:51 |
vbc.exe |
14.0.1099.0 |
2,713,208 |
29-Mar-2017 |
23:32 |
Microsoft.VisualBasic.Activities.CompilerUI.dll |
14.0.1099.0 |
273,712 |
29-Mar-2017 |
23:51 |
Microsoft.VisualBasic.Activities.CompilerUI.dll |
14.0.1099.0 |
273,712 |
29-Mar-2017 |
23:32 |
vbc7ui.dll |
14.0.1099.0 |
273,048 |
29-Mar-2017 |
23:51 |
vbc7ui.dll |
14.0.1099.0 |
273,048 |
29-Mar-2017 |
23:32 |
Accessibility.dll |
4.6.1099.0 |
36,008 |
29-Mar-2017 |
23:32 |
AddInProcess.exe |
4.6.1099.0 |
42,104 |
29-Mar-2017 |
23:32 |
AddInProcess32.exe |
4.6.1099.0 |
42,104 |
29-Mar-2017 |
23:32 |
AddInUtil.exe |
4.6.1099.0 |
42,104 |
29-Mar-2017 |
23:32 |
AdoNetDiag.dll |
4.6.1099.0 |
190,640 |
29-Mar-2017 |
23:51 |
AdoNetDiag.dll |
4.6.1099.0 |
169,128 |
29-Mar-2017 |
23:32 |
alink.dll |
14.0.1099.0 |
145,048 |
29-Mar-2017 |
23:51 |
alink.dll |
14.0.1099.0 |
117,912 |
29-Mar-2017 |
23:32 |
alinkui.dll |
14.0.1099.0 |
36,504 |
29-Mar-2017 |
23:51 |
alinkui.dll |
14.0.1099.0 |
36,504 |
29-Mar-2017 |
23:32 |
AppLaunch.exe |
4.6.1099.0 |
116,848 |
29-Mar-2017 |
23:51 |
AppLaunch.exe |
4.6.1099.0 |
96,888 |
29-Mar-2017 |
23:32 |
aspnet_compiler.exe |
4.6.1099.0 |
54,904 |
29-Mar-2017 |
23:51 |
aspnet_compiler.exe |
4.6.1099.0 |
55,416 |
29-Mar-2017 |
23:32 |
aspnet_counters.dll |
4.6.1099.0 |
30,400 |
29-Mar-2017 |
23:51 |
aspnet_counters.dll |
4.6.1099.0 |
28,344 |
29-Mar-2017 |
23:32 |
aspnet_filter.dll |
4.6.1099.0 |
38,072 |
29-Mar-2017 |
23:51 |
aspnet_filter.dll |
4.6.1099.0 |
35,000 |
29-Mar-2017 |
23:32 |
aspnet_isapi.dll |
4.6.1099.0 |
26,288 |
29-Mar-2017 |
23:51 |
aspnet_isapi.dll |
4.6.1099.0 |
25,264 |
29-Mar-2017 |
23:32 |
Aspnet_perf.dll |
4.6.1099.0 |
45,744 |
29-Mar-2017 |
23:51 |
Aspnet_perf.dll |
4.6.1099.0 |
41,648 |
29-Mar-2017 |
23:32 |
aspnet_rc.dll |
4.6.1099.0 |
91,304 |
29-Mar-2017 |
23:51 |
aspnet_rc.dll |
4.6.1099.0 |
91,304 |
29-Mar-2017 |
23:32 |
aspnet_regbrowsers.exe |
4.6.1099.0 |
44,152 |
29-Mar-2017 |
23:51 |
aspnet_regbrowsers.exe |
4.6.1099.0 |
44,664 |
29-Mar-2017 |
23:32 |
aspnet_regiis.exe |
4.6.1099.0 |
44,144 |
29-Mar-2017 |
23:51 |
aspnet_regiis.exe |
4.6.1099.0 |
40,560 |
29-Mar-2017 |
23:32 |
aspnet_regsql.exe |
4.6.1099.0 |
126,072 |
29-Mar-2017 |
23:51 |
aspnet_regsql.exe |
4.6.1099.0 |
126,584 |
29-Mar-2017 |
23:32 |
aspnet_state.exe |
4.6.1099.0 |
51,320 |
29-Mar-2017 |
23:51 |
aspnet_state.exe |
4.6.1099.0 |
45,688 |
29-Mar-2017 |
23:32 |
aspnet_wp.exe |
4.6.1099.0 |
48,248 |
29-Mar-2017 |
23:51 |
aspnet_wp.exe |
4.6.1099.0 |
43,640 |
29-Mar-2017 |
23:32 |
AspNetMMCExt.dll |
4.6.1099.0 |
507,568 |
29-Mar-2017 |
23:32 |
ThirdPartyNotices.txt |
20,324 |
29-Mar-2017 |
23:32 |
|
CasPol.exe |
4.6.1099.0 |
106,104 |
29-Mar-2017 |
23:51 |
CasPol.exe |
4.6.1099.0 |
107,128 |
29-Mar-2017 |
23:32 |
clr.dll |
4.6.1099.0 |
10,005,648 |
29-Mar-2017 |
23:51 |
clr.dll |
4.6.1099.0 |
7,003,792 |
29-Mar-2017 |
23:32 |
clrcompression.dll |
4.6.1099.0 |
138,936 |
29-Mar-2017 |
23:51 |
clrcompression.dll |
4.6.1099.0 |
123,576 |
29-Mar-2017 |
23:32 |
clretwrc.dll |
4.6.1099.0 |
237,216 |
29-Mar-2017 |
23:51 |
clretwrc.dll |
4.6.1099.0 |
237,224 |
29-Mar-2017 |
23:32 |
clrjit.dll |
4.6.1099.0 |
1,059,480 |
29-Mar-2017 |
23:51 |
clrjit.dll |
4.6.1099.0 |
511,128 |
29-Mar-2017 |
23:32 |
compatjit.dll |
4.6.1099.0 |
1,250,464 |
29-Mar-2017 |
23:51 |
ComSvcConfig.exe |
4.6.1099.0 |
172,664 |
29-Mar-2017 |
23:32 |
CORPerfMonExt.dll |
4.6.1099.0 |
153,272 |
29-Mar-2017 |
23:51 |
CORPerfMonExt.dll |
4.6.1099.0 |
126,136 |
29-Mar-2017 |
23:32 |
csc.exe |
4.6.1099.0 |
2,621,048 |
29-Mar-2017 |
23:51 |
csc.exe |
4.6.1099.0 |
2,052,728 |
29-Mar-2017 |
23:32 |
cscui.dll |
4.6.1099.0 |
204,952 |
29-Mar-2017 |
23:51 |
cscui.dll |
4.6.1099.0 |
204,952 |
29-Mar-2017 |
23:32 |
Culture.dll |
4.6.1099.0 |
64,152 |
29-Mar-2017 |
23:51 |
Culture.dll |
4.6.1099.0 |
54,944 |
29-Mar-2017 |
23:32 |
CustomMarshalers.dll |
4.6.1099.0 |
105,664 |
29-Mar-2017 |
23:51 |
CustomMarshalers.dll |
4.6.1099.0 |
95,936 |
29-Mar-2017 |
23:32 |
DataSvcUtil.exe |
4.6.1099.0 |
71,280 |
29-Mar-2017 |
23:32 |
dfdll.dll |
4.6.1099.0 |
181,400 |
29-Mar-2017 |
23:51 |
dfdll.dll |
4.6.1099.0 |
154,768 |
29-Mar-2017 |
23:32 |
dfshim.dll.mui |
4.0.41209.0 |
18,600 |
29-Mar-2017 |
23:51 |
dfshim.dll.mui |
4.0.41209.0 |
18,600 |
29-Mar-2017 |
23:32 |
dfsvc.exe |
4.6.1099.0 |
23,664 |
29-Mar-2017 |
23:32 |
diasymreader.dll |
14.0.1099.0 |
1,133,744 |
29-Mar-2017 |
23:51 |
diasymreader.dll |
14.0.1099.0 |
868,528 |
29-Mar-2017 |
23:32 |
dw20.exe |
4.6.1099.0 |
51,832 |
29-Mar-2017 |
23:51 |
dw20.exe |
4.6.1099.0 |
44,152 |
29-Mar-2017 |
23:32 |
EdmGen.exe |
4.6.1099.0 |
96,376 |
29-Mar-2017 |
23:32 |
EventLogMessages.dll |
4.6.1099.0 |
805,568 |
29-Mar-2017 |
23:51 |
EventLogMessages.dll |
4.6.1099.0 |
805,568 |
29-Mar-2017 |
23:32 |
filetracker.dll |
14.0.1099.0 |
261,800 |
29-Mar-2017 |
23:52 |
filetracker.dll |
14.0.1099.0 |
215,216 |
29-Mar-2017 |
23:32 |
FileTrackerUI.dll |
14.0.1099.0 |
22,704 |
29-Mar-2017 |
23:52 |
FileTrackerUI.dll |
14.0.1099.0 |
22,712 |
29-Mar-2017 |
23:32 |
fusion.dll |
4.6.1099.0 |
110,744 |
29-Mar-2017 |
23:51 |
fusion.dll |
4.6.1099.0 |
93,336 |
29-Mar-2017 |
23:32 |
GlobalUserInterface.CompositeFont |
116,922 |
29-Mar-2017 |
23:32 |
|
ilasm.exe |
4.6.1099.0 |
349,816 |
29-Mar-2017 |
23:52 |
ilasm.exe |
4.6.1099.0 |
285,816 |
29-Mar-2017 |
23:32 |
InstallUtil.exe |
4.6.1099.0 |
40,056 |
29-Mar-2017 |
23:51 |
InstallUtil.exe |
4.6.1099.0 |
40,568 |
29-Mar-2017 |
23:32 |
InstallUtilLib.dll |
4.6.1099.0 |
76,480 |
29-Mar-2017 |
23:51 |
InstallUtilLib.dll |
4.6.1099.0 |
68,288 |
29-Mar-2017 |
23:32 |
ISymWrapper.dll |
4.6.1099.0 |
72,880 |
29-Mar-2017 |
23:51 |
ISymWrapper.dll |
4.6.1099.0 |
71,344 |
29-Mar-2017 |
23:32 |
jsc.exe |
14.6.1099.0 |
46,200 |
29-Mar-2017 |
23:32 |
locale.nlp |
419,640 |
29-Mar-2017 |
23:51 |
|
locale.nlp |
419,640 |
29-Mar-2017 |
23:32 |
|
Microsoft.Activities.Build.dll |
4.6.1099.0 |
53,480 |
29-Mar-2017 |
23:32 |
Microsoft.Build.Conversion.v4.0.dll |
4.6.1099.0 |
84,736 |
29-Mar-2017 |
23:32 |
Microsoft.Build.dll |
4.6.1099.0 |
1,405,632 |
29-Mar-2017 |
23:32 |
Microsoft.Build.Engine.dll |
4.6.1099.0 |
655,576 |
29-Mar-2017 |
23:32 |
Microsoft.Build.Framework.dll |
4.6.1099.0 |
100,072 |
29-Mar-2017 |
23:32 |
Microsoft.Build.Tasks.v4.0.dll |
4.6.1099.0 |
1,157,352 |
29-Mar-2017 |
23:32 |
Microsoft.Build.Utilities.v4.0.dll |
4.6.1099.0 |
268,024 |
29-Mar-2017 |
23:32 |
Microsoft.CSharp.dll |
4.6.1099.0 |
483,008 |
29-Mar-2017 |
23:32 |
Microsoft.Data.Entity.Build.Tasks.dll |
4.6.1099.0 |
52,488 |
29-Mar-2017 |
23:32 |
Microsoft.Internal.Tasks.Dataflow.dll |
4.6.1099.0 |
184,072 |
29-Mar-2017 |
23:32 |
Microsoft.Transactions.Bridge.dll |
4.6.1099.0 |
395,016 |
29-Mar-2017 |
23:32 |
Microsoft.Transactions.Bridge.Dtc.dll |
4.6.1099.0 |
132,872 |
29-Mar-2017 |
23:51 |
Microsoft.Transactions.Bridge.Dtc.dll |
4.6.1099.0 |
130,824 |
29-Mar-2017 |
23:32 |
Microsoft.Windows.ApplicationServer.Applications.dll |
4.6.1099.0 |
140,688 |
29-Mar-2017 |
23:32 |
Microsoft.Windows.ApplicationServer.Applications.dll.mui |
4.6.1099.0 |
99,160 |
29-Mar-2017 |
23:51 |
Microsoft.Windows.ApplicationServer.Applications.dll.mui |
4.6.1099.0 |
99,160 |
29-Mar-2017 |
23:32 |
Microsoft.Workflow.Compiler.exe |
4.6.1099.0 |
32,376 |
29-Mar-2017 |
23:32 |
Microsoft.JScript.dll |
14.6.1099.0 |
750,792 |
29-Mar-2017 |
23:32 |
Microsoft.JScript.tlb |
14.0.1099.0 |
58,880 |
29-Mar-2017 |
23:51 |
Microsoft.JScript.tlb |
14.0.1099.0 |
58,880 |
29-Mar-2017 |
23:32 |
Microsoft.VisualBasic.Compatibility.Data.dll |
14.6.1099.0 |
116,520 |
29-Mar-2017 |
23:32 |
Microsoft.VisualBasic.Compatibility.dll |
14.6.1099.0 |
497,936 |
29-Mar-2017 |
23:32 |
Microsoft.VisualBasic.dll |
14.6.1099.0 |
640,224 |
29-Mar-2017 |
23:32 |
MmcAspExt.dll |
4.6.1099.0 |
113,832 |
29-Mar-2017 |
23:51 |
MmcAspExt.dll |
4.6.1099.0 |
106,664 |
29-Mar-2017 |
23:32 |
MSBuild.exe |
4.6.1099.0 |
256,112 |
29-Mar-2017 |
23:52 |
MSBuild.exe |
4.6.1099.0 |
260,208 |
29-Mar-2017 |
23:32 |
mscordacwks.dll |
4.6.1099.0 |
1,748,144 |
29-Mar-2017 |
23:51 |
mscordacwks.dll |
4.6.1099.0 |
1,271,472 |
29-Mar-2017 |
23:32 |
mscordbi.dll |
4.6.1099.0 |
1,519,776 |
29-Mar-2017 |
23:51 |
mscordbi.dll |
4.6.1099.0 |
1,088,672 |
29-Mar-2017 |
23:32 |
mscoree.tlb |
4.6.1099.0 |
31,744 |
29-Mar-2017 |
23:51 |
mscoree.tlb |
4.6.1099.0 |
31,744 |
29-Mar-2017 |
23:32 |
mscoreei.dll |
4.6.1099.0 |
617,632 |
29-Mar-2017 |
23:51 |
mscoreei.dll |
4.6.1099.0 |
497,824 |
29-Mar-2017 |
23:32 |
mscoreeis.dll |
4.6.1099.0 |
33,960 |
29-Mar-2017 |
23:51 |
mscoreeis.dll |
4.6.1099.0 |
33,952 |
29-Mar-2017 |
23:32 |
mscorlib.dll |
4.6.1099.0 |
5,277,344 |
29-Mar-2017 |
23:51 |
mscorlib.dll |
4.6.1099.0 |
5,359,776 |
29-Mar-2017 |
23:32 |
mscorpe.dll |
4.6.1099.0 |
100,000 |
29-Mar-2017 |
23:51 |
mscorpe.dll |
4.6.1099.0 |
88,224 |
29-Mar-2017 |
23:32 |
mscorpehost.dll |
4.6.1099.0 |
169,136 |
29-Mar-2017 |
23:51 |
mscorpehost.dll |
4.6.1099.0 |
137,904 |
29-Mar-2017 |
23:32 |
mscorrc.dll |
4.6.1099.0 |
399,008 |
29-Mar-2017 |
23:51 |
mscorrc.dll |
4.6.1099.0 |
399,008 |
29-Mar-2017 |
23:32 |
mscorsecimpl.dll |
4.6.1099.0 |
126,640 |
29-Mar-2017 |
23:51 |
mscorsecimpl.dll |
4.6.1099.0 |
102,072 |
29-Mar-2017 |
23:32 |
mscorsecr.dll |
4.6.1099.0 |
39,080 |
29-Mar-2017 |
23:51 |
mscorsecr.dll |
4.6.1099.0 |
39,080 |
29-Mar-2017 |
23:32 |
mscorsn.dll |
4.6.1099.0 |
26,784 |
29-Mar-2017 |
23:51 |
mscorsn.dll |
4.6.1099.0 |
25,760 |
29-Mar-2017 |
23:32 |
mscorsvc.dll |
4.6.1099.0 |
524,960 |
29-Mar-2017 |
23:51 |
mscorsvc.dll |
4.6.1099.0 |
415,912 |
29-Mar-2017 |
23:32 |
mscorsvw.exe |
4.6.1099.0 |
125,064 |
29-Mar-2017 |
23:51 |
mscorsvw.exe |
4.6.1099.0 |
105,096 |
29-Mar-2017 |
23:32 |
VsVersion.dll |
14.0.1099.0 |
19,112 |
29-Mar-2017 |
23:51 |
VsVersion.dll |
14.0.1099.0 |
19,104 |
29-Mar-2017 |
23:32 |
netfx45_upgradecleanup.inf |
2,371 |
29-Mar-2017 |
23:32 |
|
ngen.exe |
4.6.1099.0 |
172,152 |
29-Mar-2017 |
23:51 |
ngen.exe |
4.6.1099.0 |
140,920 |
29-Mar-2017 |
23:32 |
nlssorting.dll |
4.6.1099.0 |
85,160 |
30-Mar-2017 |
03:13 |
nlssorting.dll |
4.6.1099.0 |
75,944 |
29-Mar-2017 |
23:32 |
normalization.dll |
4.6.1099.0 |
35,000 |
30-Mar-2017 |
03:13 |
normalization.dll |
4.6.1099.0 |
31,416 |
29-Mar-2017 |
23:32 |
PenIMC.dll |
4.6.1099.0 |
93,336 |
29-Mar-2017 |
23:51 |
PenIMC.dll |
4.6.1099.0 |
77,976 |
29-Mar-2017 |
23:32 |
PerfCounter.dll |
4.6.1099.0 |
255,664 |
29-Mar-2017 |
23:51 |
PerfCounter.dll |
4.6.1099.0 |
211,120 |
29-Mar-2017 |
23:32 |
peverify.dll |
4.6.1099.0 |
252,576 |
29-Mar-2017 |
23:52 |
peverify.dll |
4.6.1099.0 |
173,216 |
29-Mar-2017 |
23:32 |
PresentationBuildTasks.dll |
4.6.1099.0 |
600,448 |
29-Mar-2017 |
23:32 |
PresentationCore.dll |
4.6.1099.0 |
3,468,992 |
29-Mar-2017 |
23:51 |
PresentationCore.dll |
4.6.1099.0 |
3,491,168 |
29-Mar-2017 |
23:32 |
PresentationFramework.Aero.dll |
4.6.1099.0 |
247,696 |
29-Mar-2017 |
23:32 |
presentationframework.aerolite.dll |
4.6.1099.0 |
177,568 |
29-Mar-2017 |
23:32 |
PresentationFramework.Classic.dll |
4.6.1099.0 |
180,632 |
29-Mar-2017 |
23:32 |
PresentationFramework.Luna.dll |
4.6.1099.0 |
484,240 |
29-Mar-2017 |
23:32 |
PresentationFramework.Royale.dll |
4.6.1099.0 |
207,768 |
29-Mar-2017 |
23:32 |
PresentationFramework.dll |
4.6.1099.0 |
6,079,864 |
29-Mar-2017 |
23:32 |
PresentationFramework-SystemCore.dll |
4.6.1099.0 |
25,344 |
29-Mar-2017 |
23:32 |
PresentationFramework-SystemData.dll |
4.6.1099.0 |
23,808 |
29-Mar-2017 |
23:32 |
PresentationFramework-SystemDrawing.dll |
4.6.1099.0 |
24,336 |
29-Mar-2017 |
23:32 |
PresentationFramework-SystemXml.dll |
4.6.1099.0 |
24,832 |
29-Mar-2017 |
23:32 |
PresentationFramework-SystemXmlLinq.dll |
4.6.1099.0 |
22,800 |
29-Mar-2017 |
23:32 |
PresentationHost_v0400.dll |
4.6.1099.0 |
230,616 |
29-Mar-2017 |
23:51 |
PresentationHost_v0400.dll.mui |
4.6.1099.0 |
84,712 |
29-Mar-2017 |
23:51 |
PresentationHost_v0400.dll |
4.6.1099.0 |
181,464 |
29-Mar-2017 |
23:32 |
PresentationHost_v0400.dll.mui |
4.6.1099.0 |
84,720 |
29-Mar-2017 |
23:32 |
PresentationNative_v0400.dll |
4.6.1099.0 |
1,071,848 |
29-Mar-2017 |
23:51 |
PresentationNative_v0400.dll |
4.6.1099.0 |
791,264 |
29-Mar-2017 |
23:32 |
PresentationUI.dll |
4.6.1099.0 |
843,960 |
29-Mar-2017 |
23:32 |
ReachFramework.dll |
4.6.1099.0 |
581,976 |
29-Mar-2017 |
23:32 |
RegAsm.exe |
4.6.1099.0 |
63,608 |
29-Mar-2017 |
23:51 |
RegAsm.exe |
4.6.1099.0 |
64,120 |
29-Mar-2017 |
23:32 |
RegSvcs.exe |
4.6.1099.0 |
44,152 |
29-Mar-2017 |
23:51 |
RegSvcs.exe |
4.6.1099.0 |
45,176 |
29-Mar-2017 |
23:32 |
regtlib.exe |
14.0.1099.0 |
108,664 |
30-Mar-2017 |
03:13 |
regtlib.exe |
14.0.1099.0 |
96,888 |
29-Mar-2017 |
23:32 |
sbscmp10.dll |
4.0.41209.0 |
24,224 |
29-Mar-2017 |
23:51 |
sbscmp10.dll |
4.0.41209.0 |
23,712 |
29-Mar-2017 |
23:32 |
ServiceModelEvents.dll |
4.6.1099.0 |
19,144 |
29-Mar-2017 |
23:51 |
ServiceModelEvents.dll.mui |
4.6.1099.0 |
43,736 |
29-Mar-2017 |
23:51 |
ServiceModelEvents.dll.mui |
4.6.1099.0 |
43,736 |
29-Mar-2017 |
23:32 |
ServiceModelEvents.dll |
4.6.1099.0 |
19,144 |
29-Mar-2017 |
23:32 |
ServiceModelInstallRC.dll |
4.6.1099.0 |
19,160 |
29-Mar-2017 |
23:51 |
ServiceModelInstallRC.dll.mui |
4.6.1099.0 |
19,688 |
29-Mar-2017 |
23:51 |
ServiceModelInstallRC.dll.mui |
4.6.1099.0 |
19,688 |
29-Mar-2017 |
23:32 |
ServiceModelInstallRC.dll |
4.6.1099.0 |
19,160 |
29-Mar-2017 |
23:32 |
ServiceModelPerformanceCounters.dll |
4.6.1099.0 |
101,120 |
29-Mar-2017 |
23:51 |
ServiceModelPerformanceCounters.dll.mui |
4.6.1099.0 |
47,376 |
29-Mar-2017 |
23:51 |
ServiceModelPerformanceCounters.dll.mui |
4.6.1099.0 |
47,376 |
29-Mar-2017 |
23:32 |
ServiceModelPerformanceCounters.dll |
4.6.1099.0 |
89,856 |
29-Mar-2017 |
23:32 |
ServiceModelReg.exe |
4.6.1099.0 |
262,256 |
29-Mar-2017 |
23:51 |
ServiceModelReg.exe |
4.6.1099.0 |
216,696 |
29-Mar-2017 |
23:32 |
ServiceModelRegUI.dll |
4.6.1099.0 |
19,144 |
29-Mar-2017 |
23:51 |
ServiceModelRegUI.dll.mui |
4.6.1099.0 |
37,592 |
29-Mar-2017 |
23:51 |
ServiceModelRegUI.dll.mui |
4.6.1099.0 |
37,592 |
29-Mar-2017 |
23:32 |
ServiceModelRegUI.dll |
4.6.1099.0 |
19,144 |
29-Mar-2017 |
23:32 |
ServiceMonikerSupport.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:52 |
ServiceMonikerSupport.dll |
4.6.1099.0 |
27,864 |
29-Mar-2017 |
23:32 |
SMDiagnostics.dll |
4.6.1099.0 |
72,880 |
29-Mar-2017 |
23:32 |
SMSvcHost.exe |
4.6.1099.0 |
135,800 |
29-Mar-2017 |
23:32 |
SOS.dll |
4.6.1099.0 |
833,160 |
29-Mar-2017 |
23:51 |
SOS.dll |
4.6.1099.0 |
722,064 |
29-Mar-2017 |
23:32 |
System.Speech.dll |
4.6.1099.0 |
680,280 |
29-Mar-2017 |
23:32 |
sysglobl.dll |
4.6.1099.0 |
132,240 |
29-Mar-2017 |
23:32 |
System.Activities.Core.Presentation.dll |
4.6.1099.0 |
704,272 |
29-Mar-2017 |
23:32 |
System.Activities.dll |
4.6.1099.0 |
1,519,808 |
29-Mar-2017 |
23:32 |
System.Activities.DurableInstancing.dll |
4.6.1099.0 |
141,096 |
29-Mar-2017 |
23:32 |
System.Activities.Presentation.dll |
4.6.1099.0 |
2,093,816 |
29-Mar-2017 |
23:32 |
System.AddIn.Contract.dll |
4.6.1099.0 |
51,928 |
29-Mar-2017 |
23:32 |
System.AddIn.dll |
4.6.1099.0 |
161,456 |
29-Mar-2017 |
23:32 |
System.Collections.Concurrent.dll |
4.6.1099.0 |
29,448 |
29-Mar-2017 |
23:32 |
System.Collections.dll |
4.6.1099.0 |
29,896 |
29-Mar-2017 |
23:32 |
System.ComponentModel.Annotations.dll |
4.6.1099.0 |
30,504 |
29-Mar-2017 |
23:32 |
System.ComponentModel.Composition.dll |
4.6.1099.0 |
310,560 |
29-Mar-2017 |
23:32 |
system.componentmodel.composition.registration.dll |
4.6.1099.0 |
62,848 |
29-Mar-2017 |
23:32 |
System.ComponentModel.DataAnnotations.dll |
4.6.1099.0 |
125,760 |
29-Mar-2017 |
23:32 |
System.ComponentModel.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:32 |
System.ComponentModel.EventBasedAsync.dll |
4.6.1099.0 |
29,504 |
29-Mar-2017 |
23:32 |
System.Core.dll |
4.6.1099.0 |
1,312,928 |
29-Mar-2017 |
23:32 |
System.Data.DataSetExtensions.dll |
4.6.1099.0 |
71,440 |
29-Mar-2017 |
23:32 |
System.Data.Entity.Design.dll |
4.6.1099.0 |
1,081,576 |
29-Mar-2017 |
23:32 |
System.Data.Entity.dll |
4.6.1099.0 |
4,010,184 |
29-Mar-2017 |
23:32 |
System.Data.Linq.dll |
4.6.1099.0 |
685,760 |
29-Mar-2017 |
23:32 |
System.Data.Services.Client.dll |
4.6.1099.0 |
442,096 |
29-Mar-2017 |
23:32 |
System.Data.Services.Design.dll |
4.6.1099.0 |
173,808 |
29-Mar-2017 |
23:32 |
System.Data.Services.dll |
4.6.1099.0 |
669,904 |
29-Mar-2017 |
23:32 |
System.Diagnostics.Contracts.dll |
4.6.1099.0 |
29,960 |
29-Mar-2017 |
23:32 |
System.Diagnostics.Debug.dll |
4.6.1099.0 |
29,416 |
29-Mar-2017 |
23:32 |
System.Diagnostics.Tools.dll |
4.6.1099.0 |
29,424 |
29-Mar-2017 |
23:32 |
System.Diagnostics.Tracing.dll |
4.6.1099.0 |
29,944 |
29-Mar-2017 |
23:32 |
System.DirectoryServices.AccountManagement.dll |
4.6.1099.0 |
293,680 |
29-Mar-2017 |
23:32 |
system.dynamic.dll |
4.6.1099.0 |
130,216 |
29-Mar-2017 |
23:32 |
System.Dynamic.Runtime.dll |
4.6.1099.0 |
29,928 |
29-Mar-2017 |
23:32 |
System.Globalization.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:32 |
System.IdentityModel.dll |
4.6.1099.0 |
1,066,200 |
29-Mar-2017 |
23:32 |
System.IdentityModel.Selectors.dll |
4.6.1099.0 |
144,136 |
29-Mar-2017 |
23:32 |
System.IdentityModel.Services.dll |
4.6.1099.0 |
197,368 |
29-Mar-2017 |
23:32 |
System.IO.dll |
4.6.1099.0 |
28,816 |
29-Mar-2017 |
23:32 |
System.IO.Log.dll |
4.6.1099.0 |
132,792 |
29-Mar-2017 |
23:32 |
System.Linq.dll |
4.6.1099.0 |
29,344 |
29-Mar-2017 |
23:32 |
System.Linq.Expressions.dll |
4.6.1099.0 |
31,464 |
29-Mar-2017 |
23:32 |
System.Linq.Parallel.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:32 |
System.Linq.Queryable.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:32 |
System.Management.Instrumentation.dll |
4.6.1099.0 |
144,648 |
29-Mar-2017 |
23:32 |
System.Net.dll |
4.6.1099.0 |
256,672 |
29-Mar-2017 |
23:32 |
System.Net.Http.Rtc.dll |
4.6.1099.0 |
29,392 |
29-Mar-2017 |
23:32 |
System.Net.NetworkInformation.dll |
4.6.1099.0 |
30,472 |
29-Mar-2017 |
23:32 |
System.Net.Primitives.dll |
4.6.1099.0 |
29,912 |
29-Mar-2017 |
23:32 |
System.Net.Requests.dll |
4.6.1099.0 |
29,392 |
29-Mar-2017 |
23:32 |
System.Net.WebHeaderCollection.dll |
4.6.1099.0 |
28,944 |
29-Mar-2017 |
23:32 |
System.ObjectModel.dll |
4.6.1099.0 |
29,896 |
29-Mar-2017 |
23:32 |
System.Printing.dll |
4.6.1099.0 |
366,272 |
29-Mar-2017 |
23:51 |
System.Printing.dll |
4.6.1099.0 |
366,944 |
29-Mar-2017 |
23:32 |
System.Reflection.dll |
4.6.1099.0 |
29,888 |
29-Mar-2017 |
23:32 |
System.Reflection.Emit.dll |
4.6.1099.0 |
29,408 |
29-Mar-2017 |
23:32 |
System.Reflection.Emit.ILGeneration.dll |
4.6.1099.0 |
29,488 |
29-Mar-2017 |
23:32 |
System.Reflection.Emit.Lightweight.dll |
4.6.1099.0 |
29,480 |
29-Mar-2017 |
23:32 |
System.Reflection.Extensions.dll |
4.6.1099.0 |
29,448 |
29-Mar-2017 |
23:32 |
System.Reflection.Primitives.dll |
4.6.1099.0 |
29,448 |
29-Mar-2017 |
23:32 |
System.Resources.ResourceManager.dll |
4.6.1099.0 |
29,464 |
29-Mar-2017 |
23:32 |
System.Runtime.dll |
4.6.1099.0 |
37,552 |
29-Mar-2017 |
23:32 |
System.Runtime.DurableInstancing.dll |
4.6.1099.0 |
171,808 |
29-Mar-2017 |
23:32 |
System.Runtime.Extensions.dll |
4.6.1099.0 |
29,424 |
29-Mar-2017 |
23:32 |
System.Runtime.Handles.dll |
4.6.1099.0 |
29,408 |
29-Mar-2017 |
23:32 |
System.Runtime.InteropServices.dll |
4.6.1099.0 |
32,520 |
29-Mar-2017 |
23:32 |
System.Runtime.InteropServices.WindowsRuntime.dll |
4.6.1099.0 |
29,552 |
29-Mar-2017 |
23:32 |
System.Runtime.Numerics.dll |
4.6.1099.0 |
29,416 |
29-Mar-2017 |
23:32 |
System.Runtime.Serialization.dll |
4.6.1099.0 |
1,037,568 |
29-Mar-2017 |
23:32 |
System.Runtime.Serialization.Json.dll |
4.6.1099.0 |
29,472 |
29-Mar-2017 |
23:32 |
System.Runtime.Serialization.Primitives.dll |
4.6.1099.0 |
29,520 |
29-Mar-2017 |
23:32 |
System.Runtime.Serialization.Xml.dll |
4.6.1099.0 |
29,472 |
29-Mar-2017 |
23:32 |
System.Security.Principal.dll |
4.6.1099.0 |
29,424 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Activation.dll |
4.6.1099.0 |
201,976 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Activities.dll |
4.6.1099.0 |
558,328 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Channels.dll |
4.6.1099.0 |
156,912 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Discovery.dll |
4.6.1099.0 |
307,448 |
29-Mar-2017 |
23:32 |
System.ServiceModel.dll |
4.6.1099.0 |
6,197,960 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Duplex.dll |
4.6.1099.0 |
29,432 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Http.dll |
4.6.1099.0 |
29,936 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Internals.dll |
4.6.1099.0 |
250,120 |
29-Mar-2017 |
23:32 |
System.ServiceModel.NetTcp.dll |
4.6.1099.0 |
29,432 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Primitives.dll |
4.6.1099.0 |
34,064 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Routing.dll |
4.6.1099.0 |
130,288 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Security.dll |
4.6.1099.0 |
29,952 |
29-Mar-2017 |
23:32 |
System.ServiceModel.ServiceMoniker40.dll |
4.6.1099.0 |
23,312 |
29-Mar-2017 |
23:32 |
System.ServiceModel.WasHosting.dll |
4.6.1099.0 |
39,160 |
29-Mar-2017 |
23:32 |
System.ServiceModel.Web.dll |
4.6.1099.0 |
327,392 |
29-Mar-2017 |
23:32 |
System.Text.Encoding.dll |
4.6.1099.0 |
29,392 |
29-Mar-2017 |
23:32 |
System.Text.Encoding.Extensions.dll |
4.6.1099.0 |
28,944 |
29-Mar-2017 |
23:32 |
System.Text.RegularExpressions.dll |
4.6.1099.0 |
29,456 |
29-Mar-2017 |
23:32 |
System.Threading.dll |
4.6.1099.0 |
29,880 |
29-Mar-2017 |
23:32 |
System.Threading.Tasks.dll |
4.6.1099.0 |
29,920 |
29-Mar-2017 |
23:32 |
System.Threading.Tasks.Parallel.dll |
4.6.1099.0 |
29,464 |
29-Mar-2017 |
23:32 |
System.Threading.Timer.dll |
4.6.1099.0 |
29,408 |
29-Mar-2017 |
23:32 |
System.Web.Abstractions.dll |
4.6.1099.0 |
22,912 |
29-Mar-2017 |
23:32 |
System.Web.ApplicationServices.dll |
4.6.1099.0 |
70,928 |
29-Mar-2017 |
23:32 |
System.Web.DataVisualization.Design.dll |
4.6.1099.0 |
105,392 |
29-Mar-2017 |
23:32 |
System.Web.DynamicData.Design.dll |
4.6.1099.0 |
44,440 |
29-Mar-2017 |
23:32 |
System.Web.DynamicData.dll |
4.6.1099.0 |
244,600 |
29-Mar-2017 |
23:32 |
System.Web.Entity.Design.dll |
4.6.1099.0 |
172,768 |
29-Mar-2017 |
23:32 |
System.Web.Entity.dll |
4.6.1099.0 |
164,544 |
29-Mar-2017 |
23:32 |
System.Web.Extensions.Design.dll |
4.6.1099.0 |
351,640 |
29-Mar-2017 |
23:32 |
System.Web.Extensions.dll |
4.6.1099.0 |
1,846,496 |
29-Mar-2017 |
23:32 |
System.Web.Routing.dll |
4.6.1099.0 |
22,376 |
29-Mar-2017 |
23:32 |
System.Windows.dll |
4.6.1099.0 |
31,408 |
29-Mar-2017 |
23:32 |
System.Windows.Forms.DataVisualization.Design.dll |
4.6.1099.0 |
82,392 |
29-Mar-2017 |
23:32 |
System.Windows.Forms.DataVisualization.dll |
4.6.1099.0 |
1,702,336 |
29-Mar-2017 |
23:32 |
System.Workflow.Activities.dll |
4.6.1099.0 |
1,044,720 |
29-Mar-2017 |
23:32 |
System.Workflow.ComponentModel.dll |
4.6.1099.0 |
1,535,224 |
29-Mar-2017 |
23:32 |
System.Workflow.Runtime.dll |
4.6.1099.0 |
494,816 |
29-Mar-2017 |
23:32 |
System.WorkflowServices.dll |
4.6.1099.0 |
449,248 |
29-Mar-2017 |
23:32 |
System.Xaml.Hosting.dll |
4.6.1099.0 |
42,704 |
29-Mar-2017 |
23:32 |
System.Xml.Linq.dll |
4.6.1099.0 |
163,000 |
29-Mar-2017 |
23:32 |
System.Xml.ReaderWriter.dll |
4.6.1099.0 |
29,928 |
29-Mar-2017 |
23:32 |
System.Xml.Serialization.dll |
4.6.1099.0 |
45,808 |
29-Mar-2017 |
23:32 |
System.Xml.XDocument.dll |
4.6.1099.0 |
29,400 |
29-Mar-2017 |
23:32 |
System.Xml.XmlSerializer.dll |
4.6.1099.0 |
29,928 |
29-Mar-2017 |
23:32 |
System.Runtime.Caching.dll |
4.6.1099.0 |
108,408 |
29-Mar-2017 |
23:32 |
System.configuration.dll |
4.6.1099.0 |
402,648 |
29-Mar-2017 |
23:32 |
System.Configuration.Install.dll |
4.6.1099.0 |
102,656 |
29-Mar-2017 |
23:32 |
System.Data.dll |
4.6.1099.0 |
3,422,384 |
29-Mar-2017 |
23:51 |
System.Data.dll |
4.6.1099.0 |
3,359,920 |
29-Mar-2017 |
23:32 |
System.Data.OracleClient.dll |
4.6.1099.0 |
508,640 |
29-Mar-2017 |
23:52 |
System.Data.OracleClient.dll |
4.6.1099.0 |
506,080 |
29-Mar-2017 |
23:32 |
System.Data.SqlXml.dll |
4.6.1099.0 |
730,832 |
29-Mar-2017 |
23:32 |
System.Deployment.dll |
4.6.1099.0 |
846,016 |
29-Mar-2017 |
23:32 |
System.Design.dll |
4.6.1099.0 |
4,999,848 |
29-Mar-2017 |
23:32 |
System.Device.dll |
4.6.1099.0 |
64,184 |
29-Mar-2017 |
23:32 |
System.DirectoryServices.dll |
4.6.1099.0 |
420,080 |
29-Mar-2017 |
23:32 |
System.DirectoryServices.Protocols.dll |
4.6.1099.0 |
200,488 |
29-Mar-2017 |
23:32 |
System.dll |
4.6.1099.0 |
3,462,784 |
29-Mar-2017 |
23:32 |
System.Drawing.Design.dll |
4.6.1099.0 |
112,856 |
29-Mar-2017 |
23:32 |
System.Drawing.dll |
4.6.1099.0 |
594,616 |
29-Mar-2017 |
23:32 |
System.Drawing.tlb |
4.6.1099.0 |
8,704 |
29-Mar-2017 |
23:51 |
System.Drawing.tlb |
4.6.1099.0 |
8,704 |
29-Mar-2017 |
23:32 |
System.EnterpriseServices.dll |
4.6.1099.0 |
238,824 |
29-Mar-2017 |
23:51 |
System.EnterpriseServices.dll |
4.6.1099.0 |
239,336 |
29-Mar-2017 |
23:32 |
System.EnterpriseServices.Thunk.dll |
4.6.1099.0 |
106,240 |
29-Mar-2017 |
23:51 |
System.EnterpriseServices.Thunk.dll |
4.6.1099.0 |
99,064 |
29-Mar-2017 |
23:32 |
System.EnterpriseServices.tlb |
4.6.1099.0 |
34,304 |
29-Mar-2017 |
23:51 |
System.EnterpriseServices.tlb |
4.6.1099.0 |
34,304 |
29-Mar-2017 |
23:32 |
System.EnterpriseServices.Wrapper.dll |
4.6.1099.0 |
125,952 |
29-Mar-2017 |
23:51 |
System.EnterpriseServices.Wrapper.dll |
4.6.1099.0 |
111,616 |
29-Mar-2017 |
23:32 |
System.IO.Compression.dll |
4.6.1099.0 |
71,904 |
29-Mar-2017 |
23:32 |
System.IO.Compression.FileSystem.dll |
4.6.1099.0 |
33,024 |
29-Mar-2017 |
23:32 |
System.Management.dll |
4.6.1099.0 |
413,384 |
29-Mar-2017 |
23:32 |
System.Messaging.dll |
4.6.1099.0 |
272,064 |
29-Mar-2017 |
23:32 |
System.Net.Http.dll |
4.6.1099.0 |
200,368 |
29-Mar-2017 |
23:32 |
System.Net.Http.WebRequest.dll |
4.6.1099.0 |
50,936 |
29-Mar-2017 |
23:32 |
System.Numerics.dll |
4.6.1099.0 |
138,416 |
29-Mar-2017 |
23:32 |
System.Numerics.Vectors.dll |
4.6.1099.0 |
31,464 |
29-Mar-2017 |
23:32 |
System.Reflection.context.dll |
4.6.1099.0 |
107,760 |
29-Mar-2017 |
23:32 |
System.Runtime.Remoting.dll |
4.6.1099.0 |
344,288 |
29-Mar-2017 |
23:32 |
System.Runtime.Serialization.Formatters.Soap.dll |
4.6.1099.0 |
141,160 |
29-Mar-2017 |
23:32 |
System.Security.dll |
4.6.1099.0 |
292,528 |
29-Mar-2017 |
23:32 |
System.ServiceProcess.dll |
4.6.1099.0 |
134,360 |
29-Mar-2017 |
23:32 |
System.tlb |
14.6.1099.0 |
72,192 |
29-Mar-2017 |
23:51 |
System.tlb |
14.6.1099.0 |
72,192 |
29-Mar-2017 |
23:32 |
System.Transactions.dll |
4.6.1099.0 |
306,888 |
29-Mar-2017 |
23:51 |
System.Transactions.dll |
4.6.1099.0 |
303,824 |
29-Mar-2017 |
23:32 |
System.Web.dll |
4.6.1099.0 |
5,338,288 |
29-Mar-2017 |
23:51 |
System.Web.dll |
4.6.1099.0 |
5,349,544 |
29-Mar-2017 |
23:32 |
System.Web.Mobile.dll |
4.6.1099.0 |
827,080 |
29-Mar-2017 |
23:32 |
System.Web.RegularExpressions.dll |
4.6.1099.0 |
105,720 |
29-Mar-2017 |
23:32 |
System.Web.Services.dll |
4.6.1099.0 |
843,976 |
29-Mar-2017 |
23:32 |
System.Web.tlb |
4.6.1099.0 |
7,168 |
29-Mar-2017 |
23:51 |
System.Web.tlb |
4.6.1099.0 |
7,168 |
29-Mar-2017 |
23:32 |
System.Windows.Controls.Ribbon.dll |
4.6.1099.0 |
740,248 |
29-Mar-2017 |
23:32 |
System.Windows.Forms.dll |
4.6.1099.0 |
4,801,752 |
29-Mar-2017 |
23:32 |
System.Windows.Forms.tlb |
4.6.1099.0 |
86,528 |
29-Mar-2017 |
23:51 |
System.Windows.Forms.tlb |
4.6.1099.0 |
86,528 |
29-Mar-2017 |
23:32 |
System.Windows.Input.Manipulations.dll |
4.6.1099.0 |
67,496 |
29-Mar-2017 |
23:32 |
System.Windows.Presentation.dll |
4.6.1099.0 |
29,072 |
29-Mar-2017 |
23:32 |
System.Xaml.dll |
4.6.1099.0 |
626,848 |
29-Mar-2017 |
23:32 |
System.XML.dll |
4.6.1099.0 |
2,621,080 |
29-Mar-2017 |
23:32 |
TLBREF.DLL |
4.6.1099.0 |
130,200 |
29-Mar-2017 |
23:52 |
TLBREF.DLL |
4.6.1099.0 |
110,744 |
29-Mar-2017 |
23:32 |
UIAutomationClient.dll |
4.6.1099.0 |
176,488 |
29-Mar-2017 |
23:32 |
UIAutomationClientsideProviders.dll |
4.6.1099.0 |
358,816 |
29-Mar-2017 |
23:32 |
UIAutomationProvider.dll |
4.6.1099.0 |
48,496 |
29-Mar-2017 |
23:32 |
UIAutomationTypes.dll |
4.6.1099.0 |
104,800 |
29-Mar-2017 |
23:32 |
WebAdminPage.cs |
48,004 |
29-Mar-2017 |
23:51 |
|
WebAdminPage.cs |
48,004 |
29-Mar-2017 |
23:32 |
|
webengine.dll |
4.6.1099.0 |
26,792 |
29-Mar-2017 |
23:51 |
webengine.dll |
4.6.1099.0 |
25,256 |
29-Mar-2017 |
23:32 |
webengine4.dll |
4.6.1099.0 |
623,784 |
29-Mar-2017 |
23:51 |
webengine4.dll |
4.6.1099.0 |
512,680 |
29-Mar-2017 |
23:32 |
WindowsBase.dll |
4.6.1099.0 |
1,256,776 |
29-Mar-2017 |
23:32 |
WindowsFormsIntegration.dll |
4.6.1099.0 |
102,784 |
29-Mar-2017 |
23:32 |
WMINet_Utils.dll |
4.6.1099.0 |
174,256 |
29-Mar-2017 |
23:51 |
WMINet_Utils.dll |
4.6.1099.0 |
125,616 |
29-Mar-2017 |
23:32 |
WorkflowServiceHostPerformanceCounters.dll |
4.6.1099.0 |
99,608 |
29-Mar-2017 |
23:51 |
WorkflowServiceHostPerformanceCounters.dll.mui |
4.6.1099.0 |
23,856 |
29-Mar-2017 |
23:51 |
WorkflowServiceHostPerformanceCounters.dll.mui |
4.6.1099.0 |
23,856 |
29-Mar-2017 |
23:32 |
WorkflowServiceHostPerformanceCounters.dll |
4.6.1099.0 |
87,840 |
29-Mar-2017 |
23:32 |
wpf-etw.man |
151,330 |
29-Mar-2017 |
23:32 |
|
WPFFontCache_v0400.exe.mui |
4.6.1099.0 |
19,160 |
30-Mar-2017 |
03:13 |
WPFFontCache_v0400.exe.mui |
4.6.1099.0 |
19,168 |
29-Mar-2017 |
23:32 |
WPFFontCache_v0400.exe |
4.6.1099.0 |
26,744 |
30-Mar-2017 |
03:13 |
WPFFontCache_v0400.exe |
4.6.1099.0 |
25,720 |
29-Mar-2017 |
23:32 |
wpfgfx_v0400.dll |
4.6.1099.0 |
2,144,944 |
29-Mar-2017 |
23:51 |
wpfgfx_v0400.dll |
4.6.1099.0 |
1,685,680 |
29-Mar-2017 |
23:32 |
WsatConfig.exe |
4.6.1099.0 |
152,184 |
29-Mar-2017 |
23:32 |
XamlBuildTask.dll |
4.6.1099.0 |
131,256 |
29-Mar-2017 |
23:32 |
XsdBuildTask.dll |
4.6.1099.0 |
67,768 |
29-Mar-2017 |
23:32 |
이 보안 업데이트에 대한 도움말 및 지원을 받는 방법
-
업데이트 설치에 대한 도움말: Windows 업데이트 FAQ
-
IT 전문가용 보안 솔루션: TechNet 보안 지원 및 문제 해결
-
Windows 기반 제품과 서비스를 바이러스 및 맬웨어로부터 보호하는 방법에 대한 도움말: Microsoft Secure
-
지역별 지원 정보: 국가별 지원
적용 대상
이 문서는 다음에 적용됩니다.
-
다음 운영 체제의 Microsoft .NET Framework 4.6 및 4.6.1:
-
Windows Server 2008 R2 서비스 팩 1
-
Windows 7 서비스 팩 1
-
-
다음 제품과 함께 사용되는 Microsoft .NET Framework 4.6:
-
Windows Server 2008 서비스 팩 2
-