Summary
A remote code execution vulnerability exists in Microsoft SQL Server when it incorrectly handles processing of internal functions. An attacker who successfully exploited this vulnerability could execute code in the context of the SQL Server Database Engine service account. To learn more about the vulnerability, go to CVE-2019-1068.
The SQL Server and Analysis services components are updated to the following builds in this security update:
Component |
Product version |
File version |
SQL Server |
14.0.3192.2 |
2017.140.3192.2 |
Analysis Services |
14.0.249.3 |
2017.140.249.3 |
IMPORTANT
You must run this script if you use Query Store and you are updating from SQL Server 2017 Cumulative Update 2 (CU2) directly to SQL Server 2017 Cumulative Update 3 (CU3) or any later Cumulative Update. Executing this script is notneeded if you have previously installed SQL Server 2017 Cumulative Update 3 (CU3) or any later SQL Server 2017 Cumulative Update.
SET NOCOUNT ON;
DROP TABLE IF EXISTS #tmpUserDBs;
SELECT [database_id], 0 AS [IsDone]
INTO #tmpUserDBs
FROM master.sys.databases
WHERE [database_id] > 4
AND [state] = 0 -- must be ONLINE
AND is_read_only = 0 -- cannot be READ_ONLY
AND [database_id] NOT IN (SELECT dr.database_id FROM sys.dm_hadr_database_replica_states dr -- Except all local Always On secondary replicas
INNER JOIN sys.dm_hadr_availability_replica_states rs ON dr.group_id = rs.group_id
INNER JOIN sys.databases d ON dr.database_id = d.database_id
WHERE rs.role = 2 -- Is Secondary
AND dr.is_local = 1
AND rs.is_local = 1)
DECLARE @userDB sysname;
WHILE (SELECT COUNT([database_id]) FROM #tmpUserDBs WHERE [IsDone] = 0) > 0
BEGIN
SELECT TOP 1 @userDB = DB_NAME([database_id]) FROM #tmpUserDBs WHERE [IsDone] = 0
-- PRINT 'Working on database ' + @userDB
EXEC ('USE [' + @userDB + '];
DECLARE @clearPlan bigint, @clearQry bigint;
IF EXISTS (SELECT [actual_state] FROM sys.database_query_store_options WHERE [actual_state] IN (1,2))
BEGIN
IF EXISTS (SELECT plan_id FROM sys.query_store_plan WHERE engine_version = ''14.0.3008.27'')
BEGIN
DROP TABLE IF EXISTS #tmpclearPlans;
SELECT plan_id, query_id, 0 AS [IsDone]
INTO #tmpclearPlans
FROM sys.query_store_plan WHERE engine_version = ''14.0.3008.27''
WHILE (SELECT COUNT(plan_id) FROM #tmpclearPlans WHERE [IsDone] = 0) > 0
BEGIN
SELECT TOP 1 @clearPlan = plan_id, @clearQry = query_id FROM #tmpclearPlans WHERE [IsDone] = 0
EXECUTE sys.sp_query_store_unforce_plan @clearQry, @clearPlan;
EXECUTE sys.sp_query_store_remove_plan @clearPlan;
UPDATE #tmpclearPlans
SET [IsDone] = 1
WHERE plan_id = @clearPlan AND query_id = @clearQry
END;
PRINT ''- Cleared possibly affected plans in database [' + @userDB + ']''
END
ELSE
BEGIN
PRINT ''- No affected plans in database [' + @userDB + ']''
END
END
ELSE
BEGIN
PRINT ''- Query Store not enabled in database [' + @userDB + ']''
END')
UPDATE #tmpUserDBs
SET [IsDone] = 1
WHERE [database_id] = DB_ID(@userDB)
END
How to obtain and install the update
Method 1: Microsoft Update
This update is available through Windows Update. When you turn on automatic updating, this update will be downloaded and installed automatically. For more information about how to turn on automatic updating, see Windows Update: FAQ.
Method 2: Microsoft Update Catalog
To get the standalone package for this update, go to the Microsoft Update Catalog website.
Method 3: Microsoft Download Center
The following file is available for download from the Microsoft Download Center:
Download the package now Release Date: July 9, 2019
For more information about how to download Microsoft support files, click the following article number to go to the article in the Microsoft Knowledge Base:
How to obtain Microsoft support files from online services
Microsoft scanned this file for viruses by using the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help prevent any unauthorized changes to it.
Method 4: For SQL Server 2017 on Linux platforms and containers
For information on obtaining and installing this update on Linux Operating Systems or Docker Containers, see:
-
Configure repositories for installing and upgrading SQL Server on Linux
-
Official images for Microsoft SQL Server on Linux for Docker Engine
Important: If you install a language pack after you install this update, you must reinstall this update. Therefore, we recommend that you install any language packs that you need before you install this update. For more information, see Add language packs to Windows.
More information
Prerequisites
To apply this update, you must have SQL Server 2017 or any SQL Server 2017 CU release through SQL Server 2017 CU15 installed.
Security update deployment information
For deployment information about this update, see security update deployment information: July 9, 2019.
File hash information
File name |
SHA1 hash |
SHA256 hash |
---|---|---|
SQLServer2017-KB4505225-x64.exe |
19C9CC25E7F118598C50DD016577B2DBFD6DFE93 |
F42170725D58019F9A90B89A63C10AA9AE3612E61E5ED120849502DA12634A55 |
File information
The English (United States) version of this software update installs files that have the attributes that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). The dates and times for these files on your local computer are displayed in your local time together with your current daylight saving time (DST) bias. Additionally, the dates and times may change when you perform certain operations on the files.
File name |
File version |
File size |
Date |
Time |
Platform |
---|---|---|---|---|---|
Setup.exe |
2017.140.3192.2 |
119,888 |
15-Jun-2019 |
03:32 |
x64 |
Setup.exe.config |
Not Applicable |
344 |
18-Aug-2017 |
12:41 |
Not Applicable |
Sqlsetupbootstrapper.dll |
2017.140.3192.2 |
273,184 |
15-Jun-2019 |
03:32 |
x64 |
Finish.rtf |
Not Applicable |
40,427 |
04-Aug-2017 |
17:54 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
50,561 |
15-Jun-2019 |
03:23 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
37,940 |
15-Jun-2019 |
03:23 |
Not Applicable |
Update_license.rtf |
Not Applicable |
124,685 |
15-Jun-2019 |
03:23 |
Not Applicable |
Finish.rtf |
Not Applicable |
40,425 |
04-Aug-2017 |
17:54 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
44,183 |
15-Jun-2019 |
03:31 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
33,216 |
15-Jun-2019 |
03:31 |
Not Applicable |
Update_license.rtf |
Not Applicable |
123,965 |
15-Jun-2019 |
03:34 |
Not Applicable |
Mediainfo.xml |
Not Applicable |
1,120 |
15-Jun-2019 |
06:15 |
Not Applicable |
Finish.rtf |
Not Applicable |
38,372 |
04-Aug-2017 |
17:50 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
45,402 |
15-Jun-2019 |
03:25 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
911 |
15-Jun-2019 |
03:25 |
Not Applicable |
Update_license.rtf |
Not Applicable |
64,233 |
15-Jun-2019 |
03:25 |
Not Applicable |
Masterdataservicesloc.msi |
Not Applicable |
9,080,832 |
15-Jun-2019 |
06:29 |
Not Applicable |
Sqlbrowser.msp |
Not Applicable |
5,140,480 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sqlsupport.msi |
Not Applicable |
19,951,616 |
15-Jun-2019 |
06:30 |
Not Applicable |
Msodbcsql.msi |
Not Applicable |
4,296,704 |
15-Jun-2019 |
06:33 |
Not Applicable |
Sqllocaldb.msi |
Not Applicable |
48,484,352 |
15-Jun-2019 |
06:29 |
Not Applicable |
Sqlwriter.msp |
Not Applicable |
2,232,320 |
15-Jun-2019 |
06:28 |
Not Applicable |
Tsqllanguageservice.msi |
Not Applicable |
3,366,912 |
15-Jun-2019 |
06:28 |
Not Applicable |
Finish.rtf |
Not Applicable |
40,429 |
04-Aug-2017 |
17:54 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
43,682 |
15-Jun-2019 |
03:20 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
33,582 |
15-Jun-2019 |
03:20 |
Not Applicable |
Update_license.rtf |
Not Applicable |
123,629 |
15-Jun-2019 |
03:20 |
Not Applicable |
Finish.rtf |
Not Applicable |
40,427 |
04-Aug-2017 |
17:54 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
40,862 |
15-Jun-2019 |
03:34 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
33,141 |
15-Jun-2019 |
03:34 |
Not Applicable |
Update_license.rtf |
Not Applicable |
123,682 |
15-Jun-2019 |
03:34 |
Not Applicable |
Finish.rtf |
Not Applicable |
40,425 |
04-Aug-2017 |
17:54 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
52,334 |
15-Jun-2019 |
03:22 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
37,434 |
15-Jun-2019 |
03:22 |
Not Applicable |
Update_license.rtf |
Not Applicable |
128,775 |
15-Jun-2019 |
03:22 |
Not Applicable |
Finish.rtf |
Not Applicable |
40,425 |
04-Aug-2017 |
17:54 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
57,942 |
15-Jun-2019 |
03:16 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
47,219 |
15-Jun-2019 |
03:16 |
Not Applicable |
Update_license.rtf |
Not Applicable |
146,899 |
15-Jun-2019 |
03:16 |
Not Applicable |
Finish.rtf |
Not Applicable |
40,423 |
04-Aug-2017 |
17:54 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
43,688 |
15-Jun-2019 |
03:31 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
33,584 |
15-Jun-2019 |
03:31 |
Not Applicable |
Update_license.rtf |
Not Applicable |
124,124 |
15-Jun-2019 |
03:31 |
Not Applicable |
Finish.rtf |
Not Applicable |
40,423 |
04-Aug-2017 |
17:54 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
46,669 |
15-Jun-2019 |
03:14 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
36,232 |
15-Jun-2019 |
03:14 |
Not Applicable |
Update_license.rtf |
Not Applicable |
126,361 |
15-Jun-2019 |
03:14 |
Not Applicable |
Finish.rtf |
Not Applicable |
40,427 |
04-Aug-2017 |
17:54 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
48,793 |
15-Jun-2019 |
03:20 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
37,540 |
15-Jun-2019 |
03:20 |
Not Applicable |
Update_license.rtf |
Not Applicable |
124,998 |
15-Jun-2019 |
03:20 |
Not Applicable |
Finish.rtf |
Not Applicable |
40,427 |
04-Aug-2017 |
17:54 |
Not Applicable |
Pythonlicense.rtf |
Not Applicable |
43,446 |
15-Jun-2019 |
03:14 |
Not Applicable |
Ropenlicense.rtf |
Not Applicable |
33,275 |
15-Jun-2019 |
03:14 |
Not Applicable |
Update_license.rtf |
Not Applicable |
124,584 |
15-Jun-2019 |
03:14 |
Not Applicable |
Setup.rll |
2017.140.3192.2 |
25,168 |
15-Jun-2019 |
03:29 |
Not Applicable |
Addnode.xml |
Not Applicable |
10,653 |
04-Aug-2017 |
19:44 |
Not Applicable |
Completeclusterwizard.xml |
Not Applicable |
11,319 |
04-Aug-2017 |
19:44 |
Not Applicable |
Completeimagewizard.xml |
Not Applicable |
14,731 |
04-Aug-2017 |
19:44 |
Not Applicable |
Componentupdate.xml |
Not Applicable |
3,061 |
04-Aug-2017 |
19:44 |
Not Applicable |
Configuration.uicfg |
Not Applicable |
6,927 |
04-Aug-2017 |
19:44 |
Not Applicable |
Editionupgradewizard.xml |
Not Applicable |
5,673 |
04-Aug-2017 |
19:44 |
Not Applicable |
Fixsqlregistrykey_x64.exe |
14.0.1000.169 |
48,312 |
22-Aug-2017 |
16:37 |
x64 |
Fixsqlregistrykey_x64.exe.config |
Not Applicable |
344 |
18-Aug-2017 |
12:41 |
Not Applicable |
Fixsqlregistrykey_x86.exe |
14.0.1000.169 |
48,824 |
22-Aug-2017 |
16:43 |
x86 |
Fixsqlregistrykey_x86.exe.config |
Not Applicable |
344 |
18-Aug-2017 |
12:41 |
Not Applicable |
Fusioncheck.dll |
2017.140.3192.2 |
104,016 |
15-Jun-2019 |
03:30 |
x64 |
Installclusterwizard.xml |
Not Applicable |
18,002 |
04-Aug-2017 |
19:44 |
Not Applicable |
Installwizard.xml |
Not Applicable |
19,498 |
04-Aug-2017 |
19:44 |
Not Applicable |
Instapi140.dll |
2017.140.3192.2 |
70,736 |
15-Jun-2019 |
03:32 |
x64 |
Landingpage.exe |
14.0.3192.2 |
442,144 |
15-Jun-2019 |
03:30 |
x64 |
Landingpage.exe.config |
Not Applicable |
344 |
18-Aug-2017 |
12:41 |
Not Applicable |
Microsoft.analysisservices.adomdclient.dll |
14.0.249.3 |
1,088,800 |
15-Jun-2019 |
03:30 |
x86 |
Microsoft.analysisservices.core.dll |
14.0.249.3 |
1,381,448 |
15-Jun-2019 |
03:30 |
x86 |
Microsoft.analysisservices.dll |
14.0.1.439 |
711,864 |
18-Aug-2017 |
09:33 |
x86 |
Microsoft.analysisservices.spclient.interfaces.dll |
14.0.1.439 |
32,952 |
18-Aug-2017 |
09:33 |
x86 |
Microsoft.analysisservices.tabular.dll |
14.0.1.439 |
984,248 |
18-Aug-2017 |
09:33 |
x86 |
Microsoft.analysisservices.tabular.json.dll |
14.0.1.439 |
520,888 |
18-Aug-2017 |
09:33 |
x86 |
Microsoft.diagnostics.tracing.eventsource.dll |
1.1.26.0 |
167,728 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.netenterpriseservers.exceptionmessagebox.dll |
14.0.1000.169 |
137,904 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sql.chainer.package.dll |
14.0.3192.2 |
42,792 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sql.chainer.package.xmlserializers.dll |
14.0.3192.2 |
70,736 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sql.chainer.packagedata.dll |
14.0.3192.2 |
153,672 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sql.chainer.product.dll |
14.0.3192.2 |
375,880 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sql.chainer.product.xmlserializers.dll |
14.0.3192.2 |
70,216 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.dll |
14.0.3192.2 |
113,232 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.xmlserializers.dll |
14.0.3192.2 |
85,584 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.dll |
14.0.3192.2 |
409,672 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.xmlserializers.dll |
14.0.3192.2 |
206,928 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.chainer.workflowdata.dll |
14.0.3192.2 |
824,912 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.chainer.workflowdata.xmlserializers.dll |
14.0.3192.2 |
406,096 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.agentextension.dll |
14.0.3192.2 |
134,456 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.asextension.dll |
14.0.3192.2 |
408,144 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.astelemetryextension.dll |
14.0.1000.169 |
72,888 |
22-Aug-2017 |
17:27 |
x64 |
Microsoft.sqlserver.configuration.bootstrapextension.dll |
14.0.3192.2 |
76,872 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.xmlserializers.dll |
14.0.3192.2 |
31,816 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.cluster.dll |
14.0.3192.2 |
704,080 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.cluster.xmlserializers.dll |
14.0.3192.2 |
343,120 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.configextension.dll |
14.0.3192.2 |
87,120 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.configextension.xmlserializers.dll |
14.0.3192.2 |
43,600 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.dll |
14.0.17041.0 |
170,232 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.dll |
14.0.1000.169 |
79,032 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dll |
14.0.3192.2 |
278,088 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.dll |
14.0.17041.0 |
70,904 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.dll |
14.0.17041.0 |
321,784 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.dll |
14.0.3192.2 |
86,608 |
15-Jun-2019 |
03:32 |
x64 |
Microsoft.sqlserver.configuration.fulltext_configextension.dll |
14.0.3192.2 |
80,976 |
15-Jun-2019 |
03:32 |
x64 |
Microsoft.sqlserver.configuration.impy_configextension.dll |
14.0.3192.2 |
41,552 |
15-Jun-2019 |
03:32 |
x64 |
Microsoft.sqlserver.configuration.imr_configextension.dll |
14.0.3192.2 |
41,552 |
15-Jun-2019 |
03:32 |
x64 |
Microsoft.sqlserver.configuration.installwizard.dll |
14.0.3192.2 |
1,793,616 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.dll |
14.0.3192.2 |
76,368 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.xmlserializers.dll |
14.0.3192.2 |
66,640 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.dll |
14.0.3192.2 |
79,136 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.istelemetryconfigextension.dll |
14.0.1000.169 |
41,656 |
22-Aug-2017 |
17:21 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.dll |
14.0.1000.169 |
75,448 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.dll |
14.0.3192.2 |
46,368 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.mdsconfigextension.dll |
14.0.3192.2 |
28,240 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.msiextension.dll |
14.0.3192.2 |
460,576 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.msiextension.xmlserializers.dll |
14.0.3192.2 |
197,408 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.dll |
14.0.3192.2 |
185,120 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.dll |
14.0.3192.2 |
51,000 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.dll |
14.0.3192.2 |
50,976 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.rsextension.dll |
14.0.3192.2 |
380,488 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.dll |
14.0.3192.2 |
100,424 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.xmlserializers.dll |
14.0.3192.2 |
44,104 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.dll |
14.0.1000.169 |
35,512 |
22-Aug-2017 |
17:24 |
x64 |
Microsoft.sqlserver.configuration.sco.dll |
14.0.3192.2 |
2,093,136 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.sco.xmlserializers.dll |
14.0.3192.2 |
130,640 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.scoextension.dll |
14.0.1000.169 |
236,728 |
22-Aug-2017 |
16:37 |
x86 |
Microsoft.sqlserver.configuration.setupextension.dll |
14.0.3192.2 |
1,208,912 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.setupextension.xmlserializers.dll |
14.0.3192.2 |
448,080 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.sfc.dll |
14.0.17041.0 |
531,192 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.slpextension.dll |
14.0.3192.2 |
64,800 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.dll |
14.0.1000.169 |
232,120 |
22-Aug-2017 |
16:30 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.xmlserializers.dll |
14.0.1000.169 |
76,984 |
22-Aug-2017 |
16:30 |
x86 |
Microsoft.sqlserver.configuration.smo.dll |
14.0.17041.0 |
4,181,752 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.dll |
14.0.3192.2 |
41,552 |
15-Jun-2019 |
03:32 |
x64 |
Microsoft.sqlserver.configuration.smr_configextension.dll |
14.0.3192.2 |
41,040 |
15-Jun-2019 |
03:32 |
x64 |
Microsoft.sqlserver.configuration.sniserverconfigext.dll |
2017.140.3192.2 |
298,576 |
15-Jun-2019 |
03:32 |
x64 |
Microsoft.sqlserver.configuration.sqlbrowserextension.dll |
14.0.3192.2 |
140,880 |
15-Jun-2019 |
03:32 |
x64 |
Microsoft.sqlserver.configuration.sqlconfigbase.dll |
14.0.3192.2 |
71,464 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.xmlserializers.dll |
14.0.3192.2 |
34,592 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.dll |
14.0.17041.0 |
1,478,904 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.dll |
2017.140.3192.2 |
745,552 |
15-Jun-2019 |
03:32 |
x64 |
Microsoft.sqlserver.configuration.ssisextension.dll |
14.0.3192.2 |
80,672 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.sstring.dll |
14.0.1000.169 |
33,464 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.configuration.telemetryconfigextension.dll |
14.0.1000.169 |
71,864 |
22-Aug-2017 |
17:21 |
x64 |
Microsoft.sqlserver.configuration.telemetryconfigextension.resources.dll |
14.0.1000.169 |
23,736 |
22-Aug-2017 |
17:20 |
x86 |
Microsoft.sqlserver.configuration.uiextension.dll |
14.0.3192.2 |
112,416 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.uiextension.xmlserializers.dll |
14.0.3192.2 |
58,144 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.dll |
14.0.1000.169 |
33,976 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.dll |
14.0.3192.2 |
185,120 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.xmlserializers.dll |
14.0.3192.2 |
65,824 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.wmiinterop.dll |
14.0.1000.169 |
329,400 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.configuration.xmlserializers.dll |
14.0.3192.2 |
160,544 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.dll |
14.0.1000.169 |
31,928 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.customcontrols.dll |
14.0.1000.169 |
44,728 |
22-Aug-2017 |
16:03 |
x86 |
Microsoft.sqlserver.datawarehouse.workloaddeployment.dll |
13.0.9124.22 |
699,976 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.deployment.dll |
14.0.1000.169 |
251,576 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.deployment.xmlserializers.dll |
14.0.1000.169 |
33,464 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.diagnostics.configuration.strace.dll |
14.0.1000.169 |
129,208 |
22-Aug-2017 |
16:41 |
x86 |
Microsoft.sqlserver.discovery.dll |
14.0.3192.2 |
220,960 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.discovery.xmlserializers.dll |
14.0.3192.2 |
220,744 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.instapi.dll |
14.0.1000.169 |
46,264 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.interop.firewallapi.dll |
14.0.0.0 |
38,584 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.interop.taskschd.dll |
14.0.0.0 |
52,920 |
22-Aug-2017 |
16:40 |
x86 |
Microsoft.sqlserver.interop.wuapilib.dll |
14.0.0.0 |
93,368 |
22-Aug-2017 |
16:37 |
x86 |
Microsoft.sqlserver.management.controls.dll |
14.0.17041.0 |
394,488 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.dll |
14.0.3192.2 |
101,968 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.xmlserializers.dll |
14.0.3192.2 |
73,808 |
15-Jun-2019 |
03:32 |
x86 |
Microsoft.sqlserver.usagetracking.dll |
2017.140.1000.169 |
54,456 |
22-Aug-2017 |
16:40 |
x64 |
Msvcp120.dll |
12.0.40649.5 |
660,128 |
15-Jun-2019 |
03:32 |
x64 |
Msvcr120.dll |
12.0.40649.5 |
963,744 |
15-Jun-2019 |
03:32 |
x64 |
Newtonsoft.json.dll |
6.0.8.18111 |
513,424 |
15-Jun-2019 |
03:12 |
x86 |
Package.xsd |
Not Applicable |
8,832 |
04-Aug-2017 |
18:00 |
Not Applicable |
Patchwizard.xml |
Not Applicable |
6,057 |
15-Jun-2019 |
03:35 |
Not Applicable |
Pidgenx.dll |
15.0.169.500 |
1,475,160 |
04-Aug-2017 |
17:50 |
x64 |
Pidprivateconfigobjectmaps.xml |
Not Applicable |
93,374 |
04-Aug-2017 |
17:50 |
Not Applicable |
Prepareclusterwizard.xml |
Not Applicable |
12,299 |
04-Aug-2017 |
19:44 |
Not Applicable |
Prepareimagewizard.xml |
Not Applicable |
8,246 |
04-Aug-2017 |
19:44 |
Not Applicable |
Removenode.xml |
Not Applicable |
4,946 |
04-Aug-2017 |
19:44 |
Not Applicable |
Removepatchwizard.xml |
Not Applicable |
5,680 |
15-Jun-2019 |
03:35 |
Not Applicable |
Repairwizard.xml |
Not Applicable |
5,423 |
04-Aug-2017 |
19:44 |
Not Applicable |
Rsetup.exe |
9.2.0.58 |
194,944 |
15-Jun-2019 |
03:32 |
x86 |
Runrulesui.xml |
Not Applicable |
1,403 |
04-Aug-2017 |
19:44 |
Not Applicable |
Scenarioengine.exe |
14.0.3192.2 |
67,872 |
15-Jun-2019 |
03:32 |
x64 |
Scenarioengine.exe.config |
Not Applicable |
344 |
18-Aug-2017 |
12:41 |
Not Applicable |
Shellobjects.dll |
1.0.0.0 |
135,352 |
22-Aug-2017 |
16:35 |
x86 |
Sqlboot.dll |
2017.140.3192.2 |
196,168 |
15-Jun-2019 |
03:32 |
x64 |
Sqlcab.dll |
2017.140.3192.2 |
151,624 |
15-Jun-2019 |
03:32 |
x64 |
Sqlconf.dll |
2017.140.3192.2 |
60,200 |
15-Jun-2019 |
03:32 |
x64 |
Sqlmu.dll |
2017.140.3192.2 |
104,232 |
15-Jun-2019 |
03:32 |
x64 |
Sqlprocesssub.dll |
2017.140.3192.2 |
113,744 |
15-Jun-2019 |
03:32 |
x64 |
Sqlsccn.dll |
2017.140.3192.2 |
102,480 |
15-Jun-2019 |
03:32 |
x64 |
Uninstallwizard.xml |
Not Applicable |
4,648 |
04-Aug-2017 |
19:44 |
Not Applicable |
Upgradewizard.xml |
Not Applicable |
14,573 |
04-Aug-2017 |
19:44 |
Not Applicable |
Landingpage.resources.dll |
14.0.3192.2 |
83,536 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.netenterpriseservers.exceptionmessagebox.resources.dll |
14.0.1000.169 |
89,784 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sql.chainer.package.resources.dll |
14.0.3192.2 |
28,448 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sql.chainer.product.resources.dll |
14.0.3192.2 |
355,408 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.resources.dll |
14.0.3192.2 |
41,040 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.resources.dll |
14.0.3192.2 |
47,184 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.chainer.setup.resources.dll |
14.0.3192.2 |
23,840 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.agentextension.resources.dll |
14.0.3192.2 |
36,128 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.asextension.resources.dll |
14.0.3192.2 |
76,880 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.resources.dll |
14.0.3192.2 |
32,840 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.cluster.resources.dll |
14.0.3192.2 |
175,184 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.configextension.resources.dll |
14.0.3192.2 |
24,656 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.resources.dll |
14.0.17041.0 |
26,360 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.resources.dll |
14.0.1000.169 |
27,320 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.resources.dll |
14.0.17041.0 |
24,824 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.resources.dll |
14.0.17041.0 |
39,672 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.resources.dll |
14.0.3192.2 |
27,728 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.fulltext_configextension.resources.dll |
14.0.3192.2 |
26,192 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.impy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.imr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.installwizard.resources.dll |
14.0.3192.2 |
1,089,616 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.resources.dll |
14.0.1000.169 |
26,808 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.resources.dll |
14.0.1000.169 |
25,784 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.msiextension.resources.dll |
14.0.3192.2 |
79,944 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.resources.dll |
14.0.3192.2 |
50,976 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.resources.dll |
14.0.3192.2 |
23,328 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.resources.dll |
14.0.3192.2 |
70,432 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.rsextension.resources.dll |
14.0.3192.2 |
68,176 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.resources.dll |
14.0.3192.2 |
37,960 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:24 |
x86 |
Microsoft.sqlserver.configuration.sco.resources.dll |
14.0.3192.2 |
1,006,672 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.scoextension.resources.dll |
14.0.1000.169 |
60,088 |
22-Aug-2017 |
16:36 |
x86 |
Microsoft.sqlserver.configuration.setupextension.resources.dll |
14.0.3192.2 |
328,784 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.sfc.resources.dll |
14.0.17041.0 |
158,456 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.slpextension.resources.dll |
14.0.3192.2 |
27,936 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.resources.dll |
14.0.3192.2 |
40,224 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.smo.resources.dll |
14.0.17041.0 |
867,064 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.smr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.sniserverconfigext.resources.dll |
2017.140.1000.169 |
36,536 |
22-Aug-2017 |
17:21 |
x86 |
Microsoft.sqlserver.configuration.sqlbrowserextension.resources.dll |
14.0.3192.2 |
44,112 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.resources.dll |
14.0.3192.2 |
24,360 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.resources.dll |
14.0.17041.0 |
867,064 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.resources.dll |
2017.140.3192.2 |
158,800 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.ssisextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.uiextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.resources.dll |
14.0.3192.2 |
62,752 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.deployment.resources.dll |
14.0.1000.169 |
21,168 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.discovery.resources.dll |
14.0.3192.2 |
89,672 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.management.controls.resources.dll |
14.0.17041.0 |
85,752 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.resources.dll |
14.0.3192.2 |
33,360 |
15-Jun-2019 |
03:17 |
x86 |
Landingpage.resources.dll |
14.0.3192.2 |
83,536 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.netenterpriseservers.exceptionmessagebox.resources.dll |
14.0.1000.169 |
89,784 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sql.chainer.package.resources.dll |
14.0.3192.2 |
28,240 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sql.chainer.product.resources.dll |
14.0.3192.2 |
355,400 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.resources.dll |
14.0.3192.2 |
40,520 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.resources.dll |
14.0.3192.2 |
46,664 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.chainer.setup.resources.dll |
14.0.3192.2 |
23,864 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.agentextension.resources.dll |
14.0.3192.2 |
36,128 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.asextension.resources.dll |
14.0.3192.2 |
77,392 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.resources.dll |
14.0.3192.2 |
32,840 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.cluster.resources.dll |
14.0.3192.2 |
175,176 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.configextension.resources.dll |
14.0.3192.2 |
24,144 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.resources.dll |
14.0.17041.0 |
25,848 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.resources.dll |
14.0.1000.169 |
27,320 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.resources.dll |
14.0.17041.0 |
24,824 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.resources.dll |
14.0.17041.0 |
39,160 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.resources.dll |
14.0.3192.2 |
27,216 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.fulltext_configextension.resources.dll |
14.0.3192.2 |
26,704 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.impy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.imr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.installwizard.resources.dll |
14.0.3192.2 |
1,093,408 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.resources.dll |
14.0.1000.169 |
27,320 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.resources.dll |
14.0.1000.169 |
25,784 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.msiextension.resources.dll |
14.0.3192.2 |
80,160 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.resources.dll |
14.0.3192.2 |
50,976 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.resources.dll |
14.0.3192.2 |
23,328 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.resources.dll |
14.0.3192.2 |
71,456 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.rsextension.resources.dll |
14.0.3192.2 |
67,664 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.resources.dll |
14.0.3192.2 |
37,960 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.resources.dll |
14.0.1000.169 |
22,192 |
22-Aug-2017 |
17:24 |
x86 |
Microsoft.sqlserver.configuration.sco.resources.dll |
14.0.3192.2 |
989,776 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.scoextension.resources.dll |
14.0.1000.169 |
59,056 |
22-Aug-2017 |
16:36 |
x86 |
Microsoft.sqlserver.configuration.setupextension.resources.dll |
14.0.3192.2 |
329,288 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.sfc.resources.dll |
14.0.17041.0 |
157,944 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.slpextension.resources.dll |
14.0.3192.2 |
27,936 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.resources.dll |
14.0.3192.2 |
41,248 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.smo.resources.dll |
14.0.17041.0 |
872,696 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.smr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.sniserverconfigext.resources.dll |
2017.140.1000.169 |
36,536 |
22-Aug-2017 |
17:20 |
x86 |
Microsoft.sqlserver.configuration.sqlbrowserextension.resources.dll |
14.0.3192.2 |
44,112 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.resources.dll |
14.0.3192.2 |
24,360 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.resources.dll |
14.0.17041.0 |
866,552 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.resources.dll |
2017.140.3192.2 |
159,312 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.ssisextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.uiextension.resources.dll |
14.0.3192.2 |
27,936 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.resources.dll |
14.0.3192.2 |
63,264 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.deployment.resources.dll |
14.0.1000.169 |
21,176 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.discovery.resources.dll |
14.0.3192.2 |
89,160 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.management.controls.resources.dll |
14.0.17041.0 |
85,752 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.resources.dll |
14.0.3192.2 |
32,848 |
15-Jun-2019 |
03:35 |
x86 |
Landingpage.resources.dll |
14.0.3192.2 |
84,264 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.netenterpriseservers.exceptionmessagebox.resources.dll |
14.0.1000.169 |
89,784 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sql.chainer.package.resources.dll |
14.0.3192.2 |
28,240 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sql.chainer.product.resources.dll |
14.0.3192.2 |
355,408 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.resources.dll |
14.0.3192.2 |
41,040 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.resources.dll |
14.0.3192.2 |
47,688 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.chainer.setup.resources.dll |
14.0.3192.2 |
24,352 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.agentextension.resources.dll |
14.0.3192.2 |
36,640 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.asextension.resources.dll |
14.0.3192.2 |
77,904 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.resources.dll |
14.0.3192.2 |
33,352 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.cluster.resources.dll |
14.0.3192.2 |
178,768 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.configextension.resources.dll |
14.0.3192.2 |
24,656 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.resources.dll |
14.0.17041.0 |
26,360 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.resources.dll |
14.0.1000.169 |
27,320 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.resources.dll |
14.0.17041.0 |
24,824 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.resources.dll |
14.0.17041.0 |
40,184 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.resources.dll |
14.0.3192.2 |
27,728 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.fulltext_configextension.resources.dll |
14.0.3192.2 |
27,216 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.impy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.imr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.installwizard.resources.dll |
14.0.3192.2 |
1,093,712 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.resources.dll |
14.0.1000.169 |
26,808 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.resources.dll |
14.0.1000.169 |
25,784 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.msiextension.resources.dll |
14.0.3192.2 |
80,968 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.resources.dll |
14.0.3192.2 |
50,976 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.resources.dll |
14.0.3192.2 |
23,352 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.resources.dll |
14.0.3192.2 |
71,992 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.rsextension.resources.dll |
14.0.3192.2 |
68,688 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.resources.dll |
14.0.3192.2 |
38,472 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:24 |
x86 |
Microsoft.sqlserver.configuration.sco.resources.dll |
14.0.3192.2 |
912,976 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.scoextension.resources.dll |
14.0.1000.169 |
61,112 |
22-Aug-2017 |
16:36 |
x86 |
Microsoft.sqlserver.configuration.setupextension.resources.dll |
14.0.3192.2 |
333,392 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.sfc.resources.dll |
14.0.17041.0 |
158,456 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.slpextension.resources.dll |
14.0.3192.2 |
27,936 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.resources.dll |
14.0.3192.2 |
41,784 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.smo.resources.dll |
14.0.17041.0 |
878,840 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.smr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.sniserverconfigext.resources.dll |
2017.140.1000.169 |
36,536 |
22-Aug-2017 |
17:20 |
x86 |
Microsoft.sqlserver.configuration.sqlbrowserextension.resources.dll |
14.0.3192.2 |
44,624 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.resources.dll |
14.0.3192.2 |
24,872 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.resources.dll |
14.0.17041.0 |
867,064 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.resources.dll |
2017.140.3192.2 |
160,848 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.ssisextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.uiextension.resources.dll |
14.0.3192.2 |
27,936 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.resources.dll |
14.0.1000.169 |
22,192 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.resources.dll |
14.0.3192.2 |
63,264 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.deployment.resources.dll |
14.0.1000.169 |
21,176 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.discovery.resources.dll |
14.0.3192.2 |
89,888 |
15-Jun-2019 |
03:24 |
x86 |
Microsoft.sqlserver.management.controls.resources.dll |
14.0.17041.0 |
85,752 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.resources.dll |
14.0.3192.2 |
33,360 |
15-Jun-2019 |
03:24 |
x86 |
Landingpage.resources.dll |
14.0.3192.2 |
83,744 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.netenterpriseservers.exceptionmessagebox.resources.dll |
14.0.1000.169 |
89,784 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sql.chainer.package.resources.dll |
14.0.3192.2 |
28,240 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sql.chainer.product.resources.dll |
14.0.3192.2 |
355,408 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.resources.dll |
14.0.3192.2 |
40,520 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.resources.dll |
14.0.3192.2 |
46,664 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.chainer.setup.resources.dll |
14.0.3192.2 |
23,840 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.agentextension.resources.dll |
14.0.3192.2 |
35,616 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.asextension.resources.dll |
14.0.3192.2 |
76,368 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.resources.dll |
14.0.3192.2 |
32,840 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.cluster.resources.dll |
14.0.3192.2 |
172,616 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.configextension.resources.dll |
14.0.3192.2 |
24,144 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.resources.dll |
14.0.17041.0 |
26,360 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.resources.dll |
14.0.1000.169 |
27,320 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.resources.dll |
14.0.17041.0 |
24,824 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.resources.dll |
14.0.17041.0 |
39,672 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.resources.dll |
14.0.3192.2 |
27,216 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.fulltext_configextension.resources.dll |
14.0.3192.2 |
26,704 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.impy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.imr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.installwizard.resources.dll |
14.0.3192.2 |
1,089,104 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.resources.dll |
14.0.1000.169 |
27,320 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.resources.dll |
14.0.1000.169 |
25,784 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.msiextension.resources.dll |
14.0.3192.2 |
79,944 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.resources.dll |
14.0.3192.2 |
51,488 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.resources.dll |
14.0.3192.2 |
26,936 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.resources.dll |
14.0.3192.2 |
23,328 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.resources.dll |
14.0.3192.2 |
70,944 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.rsextension.resources.dll |
14.0.3192.2 |
67,152 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.resources.dll |
14.0.3192.2 |
37,960 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.resources.dll |
14.0.1000.169 |
22,192 |
22-Aug-2017 |
17:24 |
x86 |
Microsoft.sqlserver.configuration.sco.resources.dll |
14.0.3192.2 |
1,001,040 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.scoextension.resources.dll |
14.0.1000.169 |
60,088 |
22-Aug-2017 |
16:36 |
x86 |
Microsoft.sqlserver.configuration.setupextension.resources.dll |
14.0.3192.2 |
327,248 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.sfc.resources.dll |
14.0.17041.0 |
157,944 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.slpextension.resources.dll |
14.0.3192.2 |
27,936 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.resources.dll |
14.0.3192.2 |
41,248 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.smo.resources.dll |
14.0.17041.0 |
840,952 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.smr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.sniserverconfigext.resources.dll |
2017.140.1000.169 |
36,536 |
22-Aug-2017 |
17:20 |
x86 |
Microsoft.sqlserver.configuration.sqlbrowserextension.resources.dll |
14.0.3192.2 |
44,112 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.resources.dll |
14.0.3192.2 |
24,376 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.resources.dll |
14.0.17041.0 |
866,552 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.resources.dll |
2017.140.3192.2 |
157,776 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.ssisextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.uiextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.resources.dll |
14.0.1000.169 |
22,192 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.resources.dll |
14.0.3192.2 |
62,776 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.deployment.resources.dll |
14.0.1000.169 |
21,176 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.discovery.resources.dll |
14.0.3192.2 |
89,160 |
15-Jun-2019 |
03:35 |
x86 |
Microsoft.sqlserver.management.controls.resources.dll |
14.0.17041.0 |
85,752 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.resources.dll |
14.0.3192.2 |
32,848 |
15-Jun-2019 |
03:35 |
x86 |
Landingpage.resources.dll |
14.0.3192.2 |
85,792 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.netenterpriseservers.exceptionmessagebox.resources.dll |
14.0.1000.169 |
89,784 |
22-Aug-2017 |
15:57 |
x86 |
Microsoft.sql.chainer.package.resources.dll |
14.0.3192.2 |
28,240 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sql.chainer.product.resources.dll |
14.0.3192.2 |
355,624 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.resources.dll |
14.0.3192.2 |
41,552 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.resources.dll |
14.0.3192.2 |
48,720 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.chainer.setup.resources.dll |
14.0.3192.2 |
24,352 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.agentextension.resources.dll |
14.0.3192.2 |
38,688 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.asextension.resources.dll |
14.0.3192.2 |
81,488 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.resources.dll |
14.0.3192.2 |
34,888 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.cluster.resources.dll |
14.0.3192.2 |
191,568 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.configextension.resources.dll |
14.0.3192.2 |
24,656 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.resources.dll |
14.0.17041.0 |
36,600 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.resources.dll |
14.0.1000.169 |
27,832 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.resources.dll |
14.0.17041.0 |
25,336 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.resources.dll |
14.0.17041.0 |
41,720 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.resources.dll |
14.0.3192.2 |
27,728 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.fulltext_configextension.resources.dll |
14.0.3192.2 |
26,704 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.impy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.imr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.installwizard.resources.dll |
14.0.3192.2 |
1,101,904 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.resources.dll |
14.0.1000.169 |
27,320 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.resources.dll |
14.0.1000.169 |
26,296 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.resources.dll |
14.0.3192.2 |
26,904 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.msiextension.resources.dll |
14.0.3192.2 |
84,040 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.resources.dll |
14.0.3192.2 |
52,512 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.resources.dll |
14.0.3192.2 |
23,328 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.resources.dll |
14.0.3192.2 |
75,848 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.rsextension.resources.dll |
14.0.3192.2 |
72,272 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.resources.dll |
14.0.3192.2 |
38,472 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:24 |
x86 |
Microsoft.sqlserver.configuration.sco.resources.dll |
14.0.3192.2 |
965,200 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.scoextension.resources.dll |
14.0.1000.169 |
62,648 |
22-Aug-2017 |
16:36 |
x86 |
Microsoft.sqlserver.configuration.setupextension.resources.dll |
14.0.3192.2 |
347,216 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.sfc.resources.dll |
14.0.17041.0 |
160,504 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.slpextension.resources.dll |
14.0.3192.2 |
27,936 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.resources.dll |
14.0.3192.2 |
44,320 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.smo.resources.dll |
14.0.17041.0 |
909,048 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.smr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.sniserverconfigext.resources.dll |
2017.140.1000.169 |
27,824 |
22-Aug-2017 |
17:20 |
x86 |
Microsoft.sqlserver.configuration.sqlbrowserextension.resources.dll |
14.0.3192.2 |
46,160 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.resources.dll |
14.0.3192.2 |
24,864 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.resources.dll |
14.0.17041.0 |
868,088 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.resources.dll |
2017.140.3192.2 |
166,480 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.ssisextension.resources.dll |
14.0.3192.2 |
27,936 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.uiextension.resources.dll |
14.0.3192.2 |
28,448 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.resources.dll |
14.0.1000.169 |
22,712 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.resources.dll |
14.0.3192.2 |
63,264 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.resources.dll |
14.0.1000.169 |
21,688 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.deployment.resources.dll |
14.0.1000.169 |
21,176 |
22-Aug-2017 |
15:57 |
x86 |
Microsoft.sqlserver.discovery.resources.dll |
14.0.3192.2 |
89,672 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.management.controls.resources.dll |
14.0.17041.0 |
85,752 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.resources.dll |
14.0.3192.2 |
33,872 |
15-Jun-2019 |
03:21 |
x86 |
Landingpage.resources.dll |
14.0.3192.2 |
83,744 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.netenterpriseservers.exceptionmessagebox.resources.dll |
14.0.1000.169 |
89,784 |
22-Aug-2017 |
15:57 |
x86 |
Microsoft.sql.chainer.package.resources.dll |
14.0.3192.2 |
28,240 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sql.chainer.product.resources.dll |
14.0.3192.2 |
355,408 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.resources.dll |
14.0.3192.2 |
41,248 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.resources.dll |
14.0.3192.2 |
47,184 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.chainer.setup.resources.dll |
14.0.3192.2 |
23,840 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.agentextension.resources.dll |
14.0.3192.2 |
36,640 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.asextension.resources.dll |
14.0.3192.2 |
77,392 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.resources.dll |
14.0.3192.2 |
32,840 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.cluster.resources.dll |
14.0.3192.2 |
179,792 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.configextension.resources.dll |
14.0.3192.2 |
24,656 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.resources.dll |
14.0.17041.0 |
26,360 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.resources.dll |
14.0.1000.169 |
27,320 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.resources.dll |
14.0.17041.0 |
25,336 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.resources.dll |
14.0.17041.0 |
39,672 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.resources.dll |
14.0.3192.2 |
27,216 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.fulltext_configextension.resources.dll |
14.0.3192.2 |
26,192 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.impy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.imr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.installwizard.resources.dll |
14.0.3192.2 |
1,089,312 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.resources.dll |
14.0.1000.169 |
26,808 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.resources.dll |
14.0.1000.169 |
25,784 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.msiextension.resources.dll |
14.0.3192.2 |
79,432 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.resources.dll |
14.0.3192.2 |
50,976 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.resources.dll |
14.0.3192.2 |
23,328 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.resources.dll |
14.0.3192.2 |
71,456 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.rsextension.resources.dll |
14.0.3192.2 |
67,656 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.resources.dll |
14.0.3192.2 |
37,960 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:24 |
x86 |
Microsoft.sqlserver.configuration.sco.resources.dll |
14.0.3192.2 |
868,432 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.scoextension.resources.dll |
14.0.1000.169 |
60,600 |
22-Aug-2017 |
16:36 |
x86 |
Microsoft.sqlserver.configuration.setupextension.resources.dll |
14.0.3192.2 |
326,736 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.sfc.resources.dll |
14.0.17041.0 |
158,968 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.slpextension.resources.dll |
14.0.3192.2 |
27,936 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.resources.dll |
14.0.3192.2 |
41,272 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.smo.resources.dll |
14.0.17041.0 |
866,040 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.smr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.sniserverconfigext.resources.dll |
2017.140.1000.169 |
27,320 |
22-Aug-2017 |
17:20 |
x86 |
Microsoft.sqlserver.configuration.sqlbrowserextension.resources.dll |
14.0.3192.2 |
44,104 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.resources.dll |
14.0.3192.2 |
24,360 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.resources.dll |
14.0.17041.0 |
867,064 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.resources.dll |
2017.140.3192.2 |
159,824 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.ssisextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.uiextension.resources.dll |
14.0.3192.2 |
27,960 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.resources.dll |
14.0.3192.2 |
63,264 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.resources.dll |
14.0.1000.169 |
21,688 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.deployment.resources.dll |
14.0.1000.169 |
21,176 |
22-Aug-2017 |
15:57 |
x86 |
Microsoft.sqlserver.discovery.resources.dll |
14.0.3192.2 |
89,888 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.management.controls.resources.dll |
14.0.17041.0 |
85,752 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.resources.dll |
14.0.3192.2 |
32,848 |
15-Jun-2019 |
03:13 |
x86 |
Landingpage.resources.dll |
14.0.3192.2 |
83,528 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.netenterpriseservers.exceptionmessagebox.resources.dll |
14.0.1000.169 |
89,776 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sql.chainer.package.resources.dll |
14.0.3192.2 |
28,240 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sql.chainer.product.resources.dll |
14.0.3192.2 |
355,400 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.resources.dll |
14.0.3192.2 |
40,736 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.resources.dll |
14.0.3192.2 |
46,672 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.chainer.setup.resources.dll |
14.0.3192.2 |
23,840 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.agentextension.resources.dll |
14.0.3192.2 |
35,616 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.asextension.resources.dll |
14.0.3192.2 |
76,368 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.resources.dll |
14.0.3192.2 |
32,840 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.cluster.resources.dll |
14.0.3192.2 |
172,104 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.configextension.resources.dll |
14.0.3192.2 |
24,656 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.resources.dll |
14.0.17041.0 |
25,848 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.resources.dll |
14.0.1000.169 |
27,320 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.resources.dll |
14.0.17041.0 |
24,824 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.resources.dll |
14.0.17041.0 |
38,648 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.resources.dll |
14.0.3192.2 |
27,216 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.fulltext_configextension.resources.dll |
14.0.3192.2 |
26,704 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.impy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.imr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.installwizard.resources.dll |
14.0.3192.2 |
1,089,312 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.resources.dll |
14.0.1000.169 |
26,808 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.resources.dll |
14.0.1000.169 |
25,784 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.msiextension.resources.dll |
14.0.3192.2 |
78,920 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.resources.dll |
14.0.3192.2 |
50,976 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.resources.dll |
14.0.3192.2 |
23,328 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.resources.dll |
14.0.3192.2 |
69,920 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.rsextension.resources.dll |
14.0.3192.2 |
67,664 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.resources.dll |
14.0.3192.2 |
37,960 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.resources.dll |
14.0.1000.169 |
22,192 |
22-Aug-2017 |
17:24 |
x86 |
Microsoft.sqlserver.configuration.sco.resources.dll |
14.0.3192.2 |
935,504 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.scoextension.resources.dll |
14.0.1000.169 |
58,032 |
22-Aug-2017 |
16:36 |
x86 |
Microsoft.sqlserver.configuration.setupextension.resources.dll |
14.0.3192.2 |
324,176 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.sfc.resources.dll |
14.0.17041.0 |
157,432 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.slpextension.resources.dll |
14.0.3192.2 |
27,936 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.resources.dll |
14.0.3192.2 |
40,224 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.smo.resources.dll |
14.0.17041.0 |
853,240 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.smr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.sniserverconfigext.resources.dll |
2017.140.1000.169 |
36,536 |
22-Aug-2017 |
17:21 |
x86 |
Microsoft.sqlserver.configuration.sqlbrowserextension.resources.dll |
14.0.3192.2 |
43,600 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.resources.dll |
14.0.3192.2 |
24,360 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.resources.dll |
14.0.17041.0 |
866,552 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.resources.dll |
2017.140.3192.2 |
157,776 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.ssisextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.uiextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.resources.dll |
14.0.3192.2 |
62,752 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.deployment.resources.dll |
14.0.1000.169 |
21,176 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.discovery.resources.dll |
14.0.3192.2 |
89,160 |
15-Jun-2019 |
03:17 |
x86 |
Microsoft.sqlserver.management.controls.resources.dll |
14.0.17041.0 |
85,752 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.resources.dll |
14.0.3192.2 |
32,848 |
15-Jun-2019 |
03:17 |
x86 |
Landingpage.resources.dll |
14.0.3192.2 |
88,144 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.netenterpriseservers.exceptionmessagebox.resources.dll |
14.0.1000.169 |
89,784 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sql.chainer.package.resources.dll |
14.0.3192.2 |
28,240 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sql.chainer.product.resources.dll |
14.0.3192.2 |
355,408 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.resources.dll |
14.0.3192.2 |
43,808 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.resources.dll |
14.0.3192.2 |
53,328 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.chainer.setup.resources.dll |
14.0.3192.2 |
25,384 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.agentextension.resources.dll |
14.0.3192.2 |
40,224 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.asextension.resources.dll |
14.0.3192.2 |
86,608 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.resources.dll |
14.0.3192.2 |
37,960 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.cluster.resources.dll |
14.0.3192.2 |
203,856 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.configextension.resources.dll |
14.0.3192.2 |
26,192 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.resources.dll |
14.0.17041.0 |
28,408 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.resources.dll |
14.0.1000.169 |
28,856 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.resources.dll |
14.0.17041.0 |
26,360 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.resources.dll |
14.0.17041.0 |
45,304 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.resources.dll |
14.0.3192.2 |
29,256 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.fulltext_configextension.resources.dll |
14.0.3192.2 |
28,240 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.impy_configextension.resources.dll |
14.0.3192.2 |
22,608 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.imr_configextension.resources.dll |
14.0.3192.2 |
22,608 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.installwizard.resources.dll |
14.0.3192.2 |
1,121,872 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.resources.dll |
14.0.1000.169 |
27,832 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.resources.dll |
14.0.1000.169 |
26,808 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.msiextension.resources.dll |
14.0.3192.2 |
90,696 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.resources.dll |
14.0.3192.2 |
54,560 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.resources.dll |
14.0.3192.2 |
23,328 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.resources.dll |
14.0.3192.2 |
83,744 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.rsextension.resources.dll |
14.0.3192.2 |
80,976 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.resources.dll |
14.0.3192.2 |
40,008 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:24 |
x86 |
Microsoft.sqlserver.configuration.sco.resources.dll |
14.0.3192.2 |
1,264,720 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.scoextension.resources.dll |
14.0.1000.169 |
66,232 |
22-Aug-2017 |
16:36 |
x86 |
Microsoft.sqlserver.configuration.setupextension.resources.dll |
14.0.3192.2 |
375,888 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.sfc.resources.dll |
14.0.17041.0 |
163,576 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.slpextension.resources.dll |
14.0.3192.2 |
28,448 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.resources.dll |
14.0.3192.2 |
48,440 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.smo.resources.dll |
14.0.17041.0 |
1,092,344 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.resources.dll |
14.0.3192.2 |
22,608 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.smr_configextension.resources.dll |
14.0.3192.2 |
22,608 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.sniserverconfigext.resources.dll |
2017.140.1000.169 |
28,848 |
22-Aug-2017 |
17:20 |
x86 |
Microsoft.sqlserver.configuration.sqlbrowserextension.resources.dll |
14.0.3192.2 |
50,256 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.resources.dll |
14.0.3192.2 |
25,896 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.resources.dll |
14.0.17041.0 |
869,624 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.resources.dll |
2017.140.3192.2 |
176,720 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.ssisextension.resources.dll |
14.0.3192.2 |
28,448 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.uiextension.resources.dll |
14.0.3192.2 |
29,472 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.resources.dll |
14.0.1000.169 |
22,712 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.resources.dll |
14.0.3192.2 |
63,776 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.deployment.resources.dll |
14.0.1000.169 |
21,176 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.discovery.resources.dll |
14.0.3192.2 |
89,888 |
15-Jun-2019 |
03:12 |
x86 |
Microsoft.sqlserver.management.controls.resources.dll |
14.0.17041.0 |
85,752 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.resources.dll |
14.0.3192.2 |
35,408 |
15-Jun-2019 |
03:13 |
x86 |
Conn_info.msp |
Not Applicable |
1,392,640 |
15-Jun-2019 |
06:28 |
Not Applicable |
Masterdataservices.msi |
Not Applicable |
26,972,160 |
15-Jun-2019 |
06:29 |
Not Applicable |
Masterdataservicesexceladdin.msi |
Not Applicable |
3,276,800 |
15-Jun-2019 |
06:28 |
Not Applicable |
Rsfx.msi |
Not Applicable |
2,297,856 |
15-Jun-2019 |
06:31 |
Not Applicable |
Smo.msp |
Not Applicable |
2,940,928 |
15-Jun-2019 |
06:28 |
Not Applicable |
Smo_extensions.msp |
Not Applicable |
1,871,872 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_as.msp |
Not Applicable |
107,532,288 |
15-Jun-2019 |
06:29 |
Not Applicable |
Sql_batchparser.msp |
Not Applicable |
1,482,752 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_common_core.msp |
Not Applicable |
5,345,280 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_dmf.msp |
Not Applicable |
1,470,464 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_dqc.msp |
Not Applicable |
1,875,968 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_dq_common.msp |
Not Applicable |
1,437,696 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_dreplay_client.msp |
Not Applicable |
1,810,432 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_dreplay_controller.msp |
Not Applicable |
1,839,104 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_engine_core_inst.msp |
Not Applicable |
81,440,768 |
15-Jun-2019 |
06:29 |
Not Applicable |
Sql_engine_core_shared.msp |
Not Applicable |
14,589,952 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_extensibility.msp |
Not Applicable |
2,052,096 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_fulltext.msp |
Not Applicable |
1,699,840 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_inst_mpy.msp |
Not Applicable |
1,323,008 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_inst_mr.msp |
Not Applicable |
1,323,008 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_is.msp |
Not Applicable |
26,968,064 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_is_worker.msp |
Not Applicable |
1,372,160 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_polybase_core_inst.msp |
Not Applicable |
185,212,928 |
15-Jun-2019 |
06:45 |
Not Applicable |
Sql_shared_mpy.msp |
Not Applicable |
1,323,008 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_shared_mr.msp |
Not Applicable |
1,323,008 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_tools_extensions.msp |
Not Applicable |
14,786,560 |
15-Jun-2019 |
06:28 |
Not Applicable |
Sql_xevent.msp |
Not Applicable |
1,593,344 |
15-Jun-2019 |
06:28 |
Not Applicable |
Microsoft.netenterpriseservers.exceptionmessagebox.resources.dll |
14.0.1000.169 |
89,784 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.resources.dll |
14.0.17041.0 |
25,336 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sfc.resources.dll |
14.0.17041.0 |
155,896 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.smo.resources.dll |
14.0.17041.0 |
756,984 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sniserverconfigext.resources.dll |
2017.140.1000.169 |
26,296 |
22-Aug-2017 |
17:21 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.resources.dll |
14.0.17041.0 |
865,528 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.management.controls.resources.dll |
14.0.17041.0 |
85,752 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.netenterpriseservers.exceptionmessagebox.resources.dll |
14.0.1000.169 |
89,784 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.configuration.connectioninfo.resources.dll |
14.0.17041.0 |
25,336 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sfc.resources.dll |
14.0.17041.0 |
155,896 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.smo.resources.dll |
14.0.17041.0 |
764,152 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.sniserverconfigext.resources.dll |
2017.140.1000.169 |
26,288 |
22-Aug-2017 |
17:20 |
x86 |
Microsoft.sqlserver.configuration.sqlenum.resources.dll |
14.0.17041.0 |
865,528 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.management.controls.resources.dll |
14.0.17041.0 |
85,752 |
04-Aug-2017 |
17:50 |
x86 |
Landingpage.resources.dll |
14.0.3192.2 |
81,696 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sql.chainer.package.resources.dll |
14.0.3192.2 |
28,240 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sql.chainer.product.resources.dll |
14.0.3192.2 |
355,400 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.resources.dll |
14.0.3192.2 |
38,984 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.resources.dll |
14.0.3192.2 |
44,320 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.chainer.setup.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.agentextension.resources.dll |
14.0.3192.2 |
34,080 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.asextension.resources.dll |
14.0.3192.2 |
72,272 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.resources.dll |
14.0.3192.2 |
31,304 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.cluster.resources.dll |
14.0.3192.2 |
161,864 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.configextension.resources.dll |
14.0.3192.2 |
23,632 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.resources.dll |
14.0.1000.169 |
26,808 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.resources.dll |
14.0.17041.0 |
24,312 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.resources.dll |
14.0.17041.0 |
36,600 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.resources.dll |
14.0.3192.2 |
26,192 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.fulltext_configextension.resources.dll |
14.0.3192.2 |
25,680 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.impy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.imr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.installwizard.resources.dll |
14.0.3192.2 |
1,076,304 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.resources.dll |
14.0.1000.169 |
26,296 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.resources.dll |
14.0.1000.169 |
25,272 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.msiextension.resources.dll |
14.0.3192.2 |
74,824 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.resources.dll |
14.0.3192.2 |
49,440 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.resources.dll |
14.0.3192.2 |
23,328 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.resources.dll |
14.0.3192.2 |
64,800 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.rsextension.resources.dll |
14.0.3192.2 |
61,520 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.resources.dll |
14.0.3192.2 |
36,936 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:24 |
x86 |
Microsoft.sqlserver.configuration.sco.resources.dll |
14.0.3192.2 |
777,296 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.scoextension.resources.dll |
14.0.1000.169 |
55,984 |
22-Aug-2017 |
16:36 |
x86 |
Microsoft.sqlserver.configuration.setupextension.resources.dll |
14.0.3192.2 |
304,720 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.slpextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.resources.dll |
14.0.3192.2 |
37,664 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.smr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.sqlbrowserextension.resources.dll |
14.0.3192.2 |
41,552 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.resources.dll |
14.0.3192.2 |
23,840 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.resources.dll |
2017.140.3192.2 |
149,584 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.ssisextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.uiextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:25 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.resources.dll |
14.0.3192.2 |
62,752 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.resources.dll |
14.0.1000.169 |
21,688 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.deployment.resources.dll |
14.0.1000.169 |
21,176 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.discovery.resources.dll |
14.0.3192.2 |
89,160 |
15-Jun-2019 |
03:21 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.resources.dll |
14.0.3192.2 |
32,336 |
15-Jun-2019 |
03:21 |
x86 |
Landingpage.resources.dll |
14.0.3192.2 |
81,704 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sql.chainer.package.resources.dll |
14.0.3192.2 |
28,456 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sql.chainer.product.resources.dll |
14.0.3192.2 |
355,408 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.chainer.extensioncommon.resources.dll |
14.0.3192.2 |
39,504 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.chainer.infrastructure.resources.dll |
14.0.3192.2 |
43,808 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.chainer.setup.resources.dll |
14.0.3192.2 |
23,328 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.agentextension.resources.dll |
14.0.3192.2 |
34,080 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.asextension.resources.dll |
14.0.3192.2 |
72,784 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.bootstrapextension.resources.dll |
14.0.3192.2 |
31,304 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.cluster.resources.dll |
14.0.3192.2 |
162,376 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.configextension.resources.dll |
14.0.3192.2 |
23,632 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.distributedreplayextension.resources.dll |
14.0.1000.169 |
26,808 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.dmf.common.resources.dll |
14.0.17041.0 |
24,312 |
04-Aug-2017 |
17:50 |
x86 |
Microsoft.sqlserver.configuration.dmf.resources.dll |
14.0.17041.0 |
36,600 |
04-Aug-2017 |
17:51 |
x86 |
Microsoft.sqlserver.configuration.extensibility_configextension.resources.dll |
14.0.3192.2 |
26,192 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.fulltext_configextension.resources.dll |
14.0.3192.2 |
25,680 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.impy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.imr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.installwizard.resources.dll |
14.0.3192.2 |
1,077,840 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.installwizardframework.resources.dll |
14.0.3192.2 |
23,120 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.ismasterextension.resources.dll |
14.0.1000.169 |
26,296 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.isworkerextension.resources.dll |
14.0.1000.169 |
25,272 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.configuration.managementtoolsextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.msiextension.resources.dll |
14.0.3192.2 |
75,336 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.polybaseconfigextension.resources.dll |
14.0.3192.2 |
49,440 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.powershellextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.repl_configextension.resources.dll |
14.0.3192.2 |
23,328 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.resources.dll |
14.0.3192.2 |
65,312 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.rsextension.resources.dll |
14.0.3192.2 |
61,520 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.rulesengineextension.resources.dll |
14.0.3192.2 |
36,936 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.saa_configextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:24 |
x86 |
Microsoft.sqlserver.configuration.sco.resources.dll |
14.0.3192.2 |
769,616 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.scoextension.resources.dll |
14.0.1000.169 |
55,480 |
22-Aug-2017 |
16:36 |
x86 |
Microsoft.sqlserver.configuration.setupextension.resources.dll |
14.0.3192.2 |
305,736 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.slpextension.resources.dll |
14.0.3192.2 |
27,424 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.smartsetupextension.resources.dll |
14.0.3192.2 |
37,672 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.smpy_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.smr_configextension.resources.dll |
14.0.3192.2 |
22,096 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.sqlbrowserextension.resources.dll |
14.0.3192.2 |
41,552 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.sqlconfigbase.resources.dll |
14.0.3192.2 |
23,848 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.sqlserver_configextension.resources.dll |
2017.140.3192.2 |
150,096 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.ssisextension.resources.dll |
14.0.3192.2 |
27,448 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.uiextension.resources.dll |
14.0.3192.2 |
26,912 |
15-Jun-2019 |
03:28 |
x86 |
Microsoft.sqlserver.configuration.utilityextension.resources.dll |
14.0.1000.169 |
22,200 |
22-Aug-2017 |
17:06 |
x86 |
Microsoft.sqlserver.configuration.wizardframework.resources.dll |
14.0.3192.2 |
62,752 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.configuration.xtp.configextension.resources.dll |
14.0.1000.169 |
21,688 |
22-Aug-2017 |
17:14 |
x86 |
Microsoft.sqlserver.deployment.resources.dll |
14.0.1000.169 |
21,168 |
22-Aug-2017 |
15:58 |
x86 |
Microsoft.sqlserver.discovery.resources.dll |
14.0.3192.2 |
89,160 |
15-Jun-2019 |
03:13 |
x86 |
Microsoft.sqlserver.setup.chainer.workflow.resources.dll |
14.0.3192.2 |
32,336 |
15-Jun-2019 |
03:13 |
x86 |
How to get help and support for this security update
Help for installing updates: Protect yourself online Help for protecting your Windows-based computer from viruses and malware: Microsoft Security Local support according to your country: International Support