dsccommunity / SqlServerDsc

This module contains DSC resources for deployment and configuration of Microsoft SQL Server.
MIT License
360 stars 224 forks source link

Azure DSC Extension - MSFT_SqlSetup failed to execute Set-TargetResource functionality with error message: System.Exception: Test-TargetResource returned false after calling Set-TargetResource. #1280

Closed oyb1n-zz closed 4 years ago

oyb1n-zz commented 5 years ago

Hi, I've tried to search to find some similar problems, to no avail. We are running ARM templates to deploy our machines, with the DSC extension.

I'm using SqlServerDSC to install SQL Server 2012 Standard, SP3 CU5 and SQL Server 2016 Enterpris, SP2 CU4 on two different servers. I get this error on both machines:

MSFT_SqlSetup
failed to execute Set-TargetResource functionality with error message: System.Exception: Test-TargetResource returned false after calling Set-TargetResource.

It seems the dsc resource is unable to pick up the features installed.

However, the strange thing is that my first run-through will always get this error or time out (seems the error doesn't always stop the deployment). When i re-run the deployment, it runs for about 4 minutes, and will return OK (first deployment will use about 1 1/2 hours). And SQLserver is usable without errors.

SQL 2016:

"features": {
      "type": "string",
      "defaultvalue": "SQLENGINE,REPLICATION,CONN,BC"

SQL 2012

"features": {
      "type": "string",
      "defaultvalue": "SQLENGINE,REPLICATION,CONN,BC,SSMS,ADV_SSMS, BOL"

Same config script:

WindowsFeature NetFramework45Core
        {
            Name = "NET-Framework-45-Core"
            Ensure = "Present"
        }

        Log ParamLog
        {
            Message = "Running SQLInstall. PackagePath = $PackagePath"
        }

        SqlSetup SQLServerSetup
        {
                        SourcePath = $PackagePath
                        SourceCredential = $FileShareCreds
            SQLSvcAccount = $SQLServiceCreds
                        AgtSvcAccount = $SQLAgentCreds
            SAPWd = $SQLSAAccountCreds

            InstanceName =  $SQLInstanceName
            InstanceDir = $SQLInstanceDir
                        SecurityMode =  $SecurityMode
                        SQLSysAdminAccounts =  @($SQLSysAdminAccounts)
            UpdateSource = $UpdateSource
                    InstallSharedDir = $InstallSharedDir
                        InstallSharedWOWDir = $InstallSharedWOWDir
            Features = "$Features"
            UpdateEnabled =  $UpdateEnabled
            DependsOn = "[WindowsFeature]NetFramework45Core"
        }

            #Special SQL Configuration for SPDB Servers.
            if($nodename -eq 'spdb01')
            {
                SQLServerConfiguration ConfigureShowAdvancedOptions
                {
                    ServerName   = $env:ComputerName
                    InstanceName = $SQLInstanceName
                    OptionName   = "show advanced options"
                    OptionValue  = 1
                    DependsOn    = "[SqlSetup]SQLServerSetup"
                }

                SQLServerMaxDop ConfigureMaxDOP
                {

                    ServerName   = $env:ComputerName
                    InstanceName = $SQLInstanceName
                    MaxDop       = 1
                    DependsOn    = "[SqlSetup]SQLServerSetup"

                }
            }

        #Change of SQL Default Port.
        SQLServerNetwork ConfigSQLDefaultPort
        {
            InstanceName = $SQLInstanceName
            ProtocolName = 'Tcp'
            IsEnabled = $true
            TCPDynamicPort = $false
            TCPPort = $SQLInstancePort
            RestartService = $true
            DependsOn = "[SqlSetup]SQLServerSetup"
        }

        SQLServerConfiguration ConfigureMaxTextReplSize
        {
            ServerName   = $env:ComputerName
            InstanceName = $SQLInstanceName
        OptionName   = "max text repl size (B)"
            OptionValue  = -1
            DependsOn    = "[SqlSetup]SQLServerSetup"
        }

    SQLServerConfiguration ConfigureClrEnabled
        {
            ServerName   = $env:ComputerName
            InstanceName = $SQLInstanceName
        OptionName   = "clr enabled"
            OptionValue  = 1
            DependsOn    = "[SqlSetup]SQLServerSetup"
        }

**First deployment** 

From the dsc log:

VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Database Engine feature.
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Database Engine feature not detected.
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Full-text feature.
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Full-text feature not detected.
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Reporting Services feature.
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Reporting Services feature not detected.
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Analysis Services feature.
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Analysis Services feature not detected.
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Integration Services feature.
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Integration Services feature not detected.
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Documentation Components feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-14 08:14:54Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Documentation Components feature not detected.
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Connectivity Tools feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Connectivity Tools feature not 
detected.
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Connectivity Backwards 
Compatibility Tools feature (HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Connectivity Backwards Compatibility 
Tools feature not detected.
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Tools SDK feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Tools SDK feature not detected.
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Master Data Services (MDS) feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] 'Master Data Services (MDS) feature not 
detected.'
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Features found:
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]: LCM:  [ End    Set    
  ]  [[SqlSetup]SQLServerSetup]  in 983.3530 seconds.
VERBOSE: [2019-02-14 08:14:55Z] [ERROR] PowerShell DSC resource MSFT_SqlSetup  
failed to execute Set-TargetResource functionality with error message: 
System.Exception: Test-TargetResource returned false after calling 
Set-TargetResource. 

From the summary.txt (Boostrap Setup/logs)

  Configuration file:            C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190214_095400\ConfigurationFile.ini
Overall summary:
  Final result:                  Passed
  Exit code (Decimal):           0
  Start time:                    2019-02-14 09:57:38
  End time:                      2019-02-14 10:05:18
  Requested action:              Install

Machine Properties:
  Machine name:                  at24-sbdb01
  Machine processor count:       8
  OS version:                    Microsoft Windows Server 2016 Datacenter (10.0.14393)
  OS service pack:               
  OS region:                     United States
  OS language:                   English (United States)
  OS architecture:               x64
  Process architecture:          64 Bit
  OS clustered:                  No

Product features discovered:
  Product              Instance             Instance ID                    Feature                                  Language             Edition              Version         Clustered  Configured

Package properties:
  Description:                   Microsoft SQL Server 2016 
  ProductName:                   SQL Server 2016
  Type:                          RTM
  Version:                       13
  Installation location:         C:\windows\TEMP\2016\x64\setup\
  Installation edition:          Enterprise

  Slipstream:                    True
  SP Level                       1
  Patch Level:                   13.1.4451.0

Product Update Status:
  Success: KB 3182545, KB 4040714

Product Updates Selected for Installation:
  Title:                         Microsoft SQL Server 2016  with SP1
  Knowledge Based Article:       KB 3182545
  Version:                       13.1.4001.0
  Architecture:                  x64
  Language:                      1033

  Title:                         SQL Server update
  Knowledge Based Article:       KB 4040714
  Version:                       13.1.4451.0
  Architecture:                  x64
  Language:                      All

  Update Source:                 Slipstream

User Input Settings:
  ACTION:                        Install
  ADDCURRENTUSERASSQLADMIN:      false
  AGTSVCACCOUNT:                 ai-test\ai-at24-sqlagent_sa
  AGTSVCPASSWORD:                *****
  AGTSVCSTARTUPTYPE:             Automatic
  ASBACKUPDIR:                   Backup
  ASCOLLATION:                   Latin1_General_CI_AS
  ASCONFIGDIR:                   Config
  ASDATADIR:                     Data
  ASLOGDIR:                      Log
  ASPROVIDERMSOLAP:              1
  ASSERVERMODE:                  MULTIDIMENSIONAL
  ASSVCACCOUNT:                  <empty>
  ASSVCPASSWORD:                 <empty>
  ASSVCSTARTUPTYPE:              Automatic
  ASSYSADMINACCOUNTS:            <empty>
  ASTELSVCACCT:                  <empty>
  ASTELSVCPASSWORD:              <empty>
  ASTELSVCSTARTUPTYPE:           0
  ASTEMPDIR:                     Temp
  BROWSERSVCSTARTUPTYPE:         Disabled
  CLTCTLRNAME:                   <empty>
  CLTRESULTDIR:                  <empty>
  CLTSTARTUPTYPE:                0
  CLTSVCACCOUNT:                 <empty>
  CLTSVCPASSWORD:                <empty>
  CLTWORKINGDIR:                 <empty>
  COMMFABRICENCRYPTION:          0
  COMMFABRICNETWORKLEVEL:        0
  COMMFABRICPORT:                0
  CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190214_095400\ConfigurationFile.ini
  CTLRSTARTUPTYPE:               0
  CTLRSVCACCOUNT:                <empty>
  CTLRSVCPASSWORD:               <empty>
  CTLRUSERS:                     <empty>
  ENABLERANU:                    false
  ENU:                           true
  EXTSVCACCOUNT:                 <empty>
  EXTSVCPASSWORD:                <empty>
  FEATURES:                      SQLENGINE, REPLICATION, CONN, BC
  FILESTREAMLEVEL:               0
  FILESTREAMSHARENAME:           <empty>
  FTSVCACCOUNT:                  <empty>
  FTSVCPASSWORD:                 <empty>
  HELP:                          false
  IACCEPTROPENLICENSETERMS:      false
  IACCEPTSQLSERVERLICENSETERMS:  true
  INDICATEPROGRESS:              false
  INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
  INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
  INSTALLSQLDATADIR:             <empty>
  INSTANCEDIR:                   C:\AltinnSQL\MSSQL
  INSTANCEID:                    MSSQLSERVER
  INSTANCENAME:                  MSSQLSERVER
  ISSVCACCOUNT:                  NT AUTHORITY\Network Service
  ISSVCPASSWORD:                 <empty>
  ISSVCSTARTUPTYPE:              Automatic
  ISTELSVCACCT:                  <empty>
  ISTELSVCPASSWORD:              <empty>
  ISTELSVCSTARTUPTYPE:           0
  MATRIXCMBRICKCOMMPORT:         0
  MATRIXCMSERVERNAME:            <empty>
  MATRIXNAME:                    <empty>
  MRCACHEDIRECTORY:              
  NPENABLED:                     0
  PBDMSSVCACCOUNT:               <empty>
  PBDMSSVCPASSWORD:              <empty>
  PBDMSSVCSTARTUPTYPE:           0
  PBENGSVCACCOUNT:               <empty>
  PBENGSVCPASSWORD:              <empty>
  PBENGSVCSTARTUPTYPE:           0
  PBPORTRANGE:                   <empty>
  PBSCALEOUT:                    false
  PID:                           *****
  QUIET:                         true
  QUIETSIMPLE:                   false
  ROLE:                          
  RSINSTALLMODE:                 DefaultNativeMode
  RSSHPINSTALLMODE:              DefaultSharePointMode
  RSSVCACCOUNT:                  <empty>
  RSSVCPASSWORD:                 <empty>
  RSSVCSTARTUPTYPE:              Automatic
  SAPWD:                         *****
  SECURITYMODE:                  SQL
  SQLBACKUPDIR:                  <empty>
  SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
  SQLSVCACCOUNT:                 ai-test\ai-at24-sqlserv_sa
  SQLSVCINSTANTFILEINIT:         false
  SQLSVCPASSWORD:                *****
  SQLSVCSTARTUPTYPE:             Automatic
  SQLSYSADMINACCOUNTS:           BUILTIN\Administrators
  SQLTELSVCACCT:                 NT Service\SQLTELEMETRY
  SQLTELSVCPASSWORD:             <empty>
  SQLTELSVCSTARTUPTYPE:          Automatic
  SQLTEMPDBDIR:                  <empty>
  SQLTEMPDBFILECOUNT:            8
  SQLTEMPDBFILEGROWTH:           64
  SQLTEMPDBFILESIZE:             8
  SQLTEMPDBLOGDIR:               <empty>
  SQLTEMPDBLOGFILEGROWTH:        64
  SQLTEMPDBLOGFILESIZE:          8
  SQLUSERDBDIR:                  <empty>
  SQLUSERDBLOGDIR:               <empty>
  SUPPRESSPRIVACYSTATEMENTNOTICE: false
  TCPENABLED:                    1
  UIMODE:                        Normal
  UpdateEnabled:                 true
  UpdateSource:                  Slipstream
  USEMICROSOFTUPDATE:            false
  X86:                           false

Detailed results:
  Feature:                       Client Tools Connectivity
  Status:                        Passed

  Feature:                       Client Tools Backwards Compatibility
  Status:                        Passed

  Feature:                       Database Engine Services
  Status:                        Passed

  Feature:                       SQL Server Replication
  Status:                        Passed

  Feature:                       SQL Browser
  Status:                        Passed

  Feature:                       SQL Writer
  Status:                        Passed

Rules with failures:

Global rules:

Scenario specific rules:

Rules report file:               C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190214_095400\SystemConfigurationCheck_Report.htm

Feature report:

Product | Instance | Instance ID | Feature | Language | Language | Version | Clustered | Configured
-- | -- | -- | -- | -- | -- | -- | -- | --
Microsoft SQL Server 2016 | MSSQLSERVER | MSSQL13.MSSQLSERVER | Database Engine Services | 1033 | Enterprise Edition | 13.1.4451.0 | No | Yes
Microsoft SQL Server 2016 | MSSQLSERVER | MSSQL13.MSSQLSERVER | SQL Server Replication | 1033 | Enterprise Edition | 13.1.4451.0 | No | Yes
Microsoft SQL Server 2016 |   |   | Client Tools Connectivity | 1033 |   | 13.0.14500.10 | No | Yes
Microsoft SQL Server 2016 |   |   | Client Tools Backwards Compatibility | 1033 |   | 13.0.14500.10 | No | Yes

Second run-through dsc log:

VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Database Engine feature.
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Database Engine feature detected.
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Perform operation 'Query CimInstances' with 
following parameters, ''queryExpression' = SELECT * FROM Win32_Service WHERE 
Name = 'MSSQLSERVER','queryDialect' = WQL,'namespaceName' = root\cimv2'.
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Operation 'Query CimInstances' complete.
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Perform operation 'Query CimInstances' with 
following parameters, ''queryExpression' = SELECT * FROM Win32_Service WHERE 
Name = 'SQLSERVERAGENT','queryDialect' = WQL,'namespaceName' = root\cimv2'.
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Operation 'Query CimInstances' complete.
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting replication feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\MSSQL13.MSSQLSERVER\ConfigurationState).
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Replication feature detected.
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Data Quality Client feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Data Quality Client feature not detected.
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Data Services Client feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\DQ\*).
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Data Quality Services feature not detected.
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Information: PowerShell module SqlServer not 
found, trying to use older SQLPS module.
VERBOSE: [2019-02-14 07:00:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Importing PowerShell module 'SQLPS' with 
version '1.0' from path 'C:\Program Files (x86)\Microsoft SQL 
Server\130\Tools\PowerShell\Modules\SQLPS\SQLPS.psd1'.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Connected to SQL instance 'at25-sbdb01'.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Clustered instance not detected.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Full-text feature.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Full-text feature not detected.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Reporting Services feature.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Reporting Services feature not detected.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Analysis Services feature.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Analysis Services feature not detected.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Integration Services feature.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Integration Services feature not detected.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Documentation Components feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Documentation Components feature detected.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Connectivity Tools feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Connectivity Tools feature detected.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Connectivity Backwards 
Compatibility Tools feature (HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Connectivity Backwards Compatibility 
Tools feature detected.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Tools SDK feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Tools SDK feature not detected.
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Master Data Services (MDS) feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] 'Master Data Services (MDS) feature not 
detected.'
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Features found: 
SQLENGINE,REPLICATION,BOL,CONN,BC
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[SqlSetup]SQLServerSetup]  in 2.5000 seconds.
**VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Skip   Set** 

Summary.txt:

Overall summary:
  Final result:                  Passed
  Exit code (Decimal):           0
  Start time:                    2019-02-13 10:52:55
  End time:                      2019-02-13 11:00:23
  Requested action:              Install

Machine Properties:
  Machine name:                  at25-sbdb01
  Machine processor count:       8
  OS version:                    Microsoft Windows Server 2016 Datacenter (10.0.14393)
  OS service pack:               
  OS region:                     United States
  OS language:                   English (United States)
  OS architecture:               x64
  Process architecture:          64 Bit
  OS clustered:                  No

Product features discovered:
  Product              Instance             Instance ID                    Feature                                  Language             Edition              Version         Clustered  Configured

Package properties:
  Description:                   Microsoft SQL Server 2016 
  ProductName:                   SQL Server 2016
  Type:                          RTM
  Version:                       13
  Installation location:         C:\windows\TEMP\2016\x64\setup\
  Installation edition:          Enterprise

  Slipstream:                    True
  SP Level                       1
  Patch Level:                   13.1.4451.0

Product Update Status:
  Success: KB 3182545, KB 4040714

Product Updates Selected for Installation:
  Title:                         Microsoft SQL Server 2016  with SP1
  Knowledge Based Article:       KB 3182545
  Version:                       13.1.4001.0
  Architecture:                  x64
  Language:                      1033

  Title:                         SQL Server update
  Knowledge Based Article:       KB 4040714
  Version:                       13.1.4451.0
  Architecture:                  x64
  Language:                      All

  Update Source:                 Slipstream

User Input Settings:
  ACTION:                        Install
  ADDCURRENTUSERASSQLADMIN:      false
  AGTSVCACCOUNT:                 ai-test\ai-at25-sqlagent_sa
  AGTSVCPASSWORD:                *****
  AGTSVCSTARTUPTYPE:             Automatic
  ASBACKUPDIR:                   Backup
  ASCOLLATION:                   Latin1_General_CI_AS
  ASCONFIGDIR:                   Config
  ASDATADIR:                     Data
  ASLOGDIR:                      Log
  ASPROVIDERMSOLAP:              1
  ASSERVERMODE:                  MULTIDIMENSIONAL
  ASSVCACCOUNT:                  <empty>
  ASSVCPASSWORD:                 <empty>
  ASSVCSTARTUPTYPE:              Automatic
  ASSYSADMINACCOUNTS:            <empty>
  ASTELSVCACCT:                  <empty>
  ASTELSVCPASSWORD:              <empty>
  ASTELSVCSTARTUPTYPE:           0
  ASTEMPDIR:                     Temp
  BROWSERSVCSTARTUPTYPE:         Disabled
  CLTCTLRNAME:                   <empty>
  CLTRESULTDIR:                  <empty>
  CLTSTARTUPTYPE:                0
  CLTSVCACCOUNT:                 <empty>
  CLTSVCPASSWORD:                <empty>
  CLTWORKINGDIR:                 <empty>
  COMMFABRICENCRYPTION:          0
  COMMFABRICNETWORKLEVEL:        0
  COMMFABRICPORT:                0
  CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190213_104928\ConfigurationFile.ini
  CTLRSTARTUPTYPE:               0
  CTLRSVCACCOUNT:                <empty>
  CTLRSVCPASSWORD:               <empty>
  CTLRUSERS:                     <empty>
  ENABLERANU:                    false
  ENU:                           true
  EXTSVCACCOUNT:                 <empty>
  EXTSVCPASSWORD:                <empty>
  FEATURES:                      SQLENGINE, REPLICATION, CONN, BC, BOL
  FILESTREAMLEVEL:               0
  FILESTREAMSHARENAME:           <empty>
  FTSVCACCOUNT:                  <empty>
  FTSVCPASSWORD:                 <empty>
  HELP:                          false
  IACCEPTROPENLICENSETERMS:      false
  IACCEPTSQLSERVERLICENSETERMS:  true
  INDICATEPROGRESS:              false
  INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
  INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
  INSTALLSQLDATADIR:             <empty>
  INSTANCEDIR:                   C:\AltinnSQL\MSSQL
  INSTANCEID:                    MSSQLSERVER
  INSTANCENAME:                  MSSQLSERVER
  ISSVCACCOUNT:                  NT AUTHORITY\Network Service
  ISSVCPASSWORD:                 <empty>
  ISSVCSTARTUPTYPE:              Automatic
  ISTELSVCACCT:                  <empty>
  ISTELSVCPASSWORD:              <empty>
  ISTELSVCSTARTUPTYPE:           0
  MATRIXCMBRICKCOMMPORT:         0
  MATRIXCMSERVERNAME:            <empty>
  MATRIXNAME:                    <empty>
  MRCACHEDIRECTORY:              
  NPENABLED:                     0
  PBDMSSVCACCOUNT:               <empty>
  PBDMSSVCPASSWORD:              <empty>
  PBDMSSVCSTARTUPTYPE:           0
  PBENGSVCACCOUNT:               <empty>
  PBENGSVCPASSWORD:              <empty>
  PBENGSVCSTARTUPTYPE:           0
  PBPORTRANGE:                   <empty>
  PBSCALEOUT:                    false
  PID:                           *****
  QUIET:                         true
  QUIETSIMPLE:                   false
  ROLE:                          
  RSINSTALLMODE:                 DefaultNativeMode
  RSSHPINSTALLMODE:              DefaultSharePointMode
  RSSVCACCOUNT:                  <empty>
  RSSVCPASSWORD:                 <empty>
  RSSVCSTARTUPTYPE:              Automatic
  SAPWD:                         *****
  SECURITYMODE:                  SQL
  SQLBACKUPDIR:                  <empty>
  SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
  SQLSVCACCOUNT:                 ai-test\ai-at25-sqlserv_sa
  SQLSVCINSTANTFILEINIT:         false
  SQLSVCPASSWORD:                *****
  SQLSVCSTARTUPTYPE:             Automatic
  SQLSYSADMINACCOUNTS:           BUILTIN\Administrators
  SQLTELSVCACCT:                 NT Service\SQLTELEMETRY
  SQLTELSVCPASSWORD:             <empty>
  SQLTELSVCSTARTUPTYPE:          Automatic
  SQLTEMPDBDIR:                  <empty>
  SQLTEMPDBFILECOUNT:            8
  SQLTEMPDBFILEGROWTH:           64
  SQLTEMPDBFILESIZE:             8
  SQLTEMPDBLOGDIR:               <empty>
  SQLTEMPDBLOGFILEGROWTH:        64
  SQLTEMPDBLOGFILESIZE:          8
  SQLUSERDBDIR:                  <empty>
  SQLUSERDBLOGDIR:               <empty>
  SUPPRESSPRIVACYSTATEMENTNOTICE: false
  TCPENABLED:                    1
  UIMODE:                        Normal
  UpdateEnabled:                 true
  UpdateSource:                  Slipstream
  USEMICROSOFTUPDATE:            false
  X86:                           false

  Configuration file:            C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190213_104928\ConfigurationFile.ini

Detailed results:
  Feature:                       Client Tools Connectivity
  Status:                        Passed

  Feature:                       Client Tools Backwards Compatibility
  Status:                        Passed

  Feature:                       Database Engine Services
  Status:                        Passed

  Feature:                       SQL Server Replication
  Status:                        Passed

  Feature:                       SQL Browser
  Status:                        Passed

  Feature:                       Documentation Components
  Status:                        Passed

  Feature:                       SQL Writer
  Status:                        Passed

Rules with failures:

Global rules:

Scenario specific rules:

Rules report file:               C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190213_104928\SystemConfigurationCheck_Report.htm
``
Feature report: 
Product Instance Instance ID Feature Language Language Version Clustered Configured
Microsoft SQL Server 2016 MSSQLSERVER MSSQL13.MSSQLSERVER Database Engine Services 1033 Enterprise Edition 13.1.4451.0 No Yes
Microsoft SQL Server 2016 MSSQLSERVER MSSQL13.MSSQLSERVER SQL Server Replication 1033 Enterprise Edition 13.1.4451.0 No Yes
Microsoft SQL Server 2016     Client Tools Connectivity 1033   13.0.14500.10 No Yes
Microsoft SQL Server 2016     Client Tools Backwards Compatibility 1033   13.0.14500.10 No Yes


> So it seems to me that the features are installed, but the dsc cannot find them. Am I right here? And if so, why can't it find them on the first run-through? 
johlju commented 5 years ago

This is strange, I have not seen this, and this does work in our integration test and should be no different running it in Azure DSC extension as far as I know.

It seems the resource does not see the features installed on the first run.

VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Features found:
VERBOSE: [2019-02-14 08:14:55Z] [VERBOSE] [at24-sbdb01]: LCM:  [ End    Set    
  ]  [[SqlSetup]SQLServerSetup]  in 983.3530 seconds.

on the second run they are found


VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Features found: 
SQLENGINE,REPLICATION,BOL,CONN,BC
VERBOSE: [2019-02-14 07:00:10Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[SqlSetup]SQLServerSetup]  in 2.5000 seconds.

It's like Get-Service does not return the installed services on the first run. How can that be? 🤔 Is it cached somehow from the initial Test-pass before running Set?

https://github.com/PowerShell/SqlServerDsc/blob/155b7abf26f9ab1656411be6c1b7de7018c5dd66/DSCResources/MSFT_SqlSetup/MSFT_SqlSetup.psm1#L119-L124

johlju commented 5 years ago

On the first run the Get-, Test- and Set-functions are called this way

  1. Test
    1. Get (<- does it get cached here)
  2. Set
    1. Test
      1. Get
johlju commented 5 years ago

Could you add a Write-Verbose that outputs all the services after this line?

https://github.com/PowerShell/SqlServerDsc/blob/155b7abf26f9ab1656411be6c1b7de7018c5dd66/DSCResources/MSFT_SqlSetup/MSFT_SqlSetup.psm1#L119

Could you run again and see if the services are not there on the first run, but they are on the second run?

SQL Server is installed correctly on the first run as seen in the summary.txt, they just not showing up in the Get-Service for some reason.

oyb1n-zz commented 5 years ago

Hi @johlju , thanks for the feedback.

I'm having some difficulty getting the verbose to work. Added:


$services = Get-Service -Verbose
    Write-Output -Message "Services found:" $services
    Write-Verbose -Message ($script:localizedData.Services -f $services)

Do I need to use something like? Write-Verbose -Message ($script:localizedData.UsingPath -f $pathToSetupExecutable)

johlju commented 5 years ago

Something like this should do it I think

$services = Get-Service
$services | % { Write-Verbose -Message "Service: $($_.Name)" -Verbose }
oyb1n-zz commented 5 years ago

Thanks!

It worked now, here's the new log:


VERBOSE: [2019-02-19 06:52:17Z] Extension request for sequence number 0 
attempting to acquire lock.0 file
VERBOSE: [2019-02-19 06:52:17Z] Extension request for sequence number 0 
attempting to acquire lock file
VERBOSE: [2019-02-19 06:52:17Z] File lock does not exist: begin processing
VERBOSE: [2019-02-19 06:52:17Z] Starting DSC Extension ...
VERBOSE: [2019-02-19 06:52:17Z] Getting handler execution status 
HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status ...
VERBOSE: [2019-02-19 06:52:18Z] Updating execution status 
(HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status)
VERBOSE: [2019-02-19 06:52:18Z] Transitioning to DataValidation state ...
VERBOSE: [2019-02-19 06:52:18Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 06:52:18Z] Retrieving system information ...
VERBOSE: [2019-02-19 06:52:25Z]     OS Version : 10.0
VERBOSE: [2019-02-19 06:52:25Z]     Server OS  : True
VERBOSE: [2019-02-19 06:52:25Z]     64-bit OS  : True
VERBOSE: [2019-02-19 06:52:25Z]     PS Version : 5.1.14393.2791
VERBOSE: [2019-02-19 06:52:25Z] Validating user provided settings for the DSC 
Extension Handler ...
VERBOSE: [2019-02-19 06:52:25Z] Reading handler settings from 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\RuntimeSettings\0.setting
s
VERBOSE: [2019-02-19 06:52:25Z] Found protected settings on Azure VM. 
Decrypting.
VERBOSE: [2019-02-19 06:52:31Z] Updating user preference for Data Collection 
......
VERBOSE: [2019-02-19 06:52:31Z] Updating configuration 
(HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Configuration)
VERBOSE: [2019-02-19 06:52:31Z] Writing initial configuration to 
HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Configuration
VERBOSE: [2019-02-19 06:52:31Z] Get DSC Extension Handler install status  ...
VERBOSE: [2019-02-19 06:52:31Z]  Status: NotInstalled
VERBOSE: [2019-02-19 06:52:31Z] Updating execution status 
(HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status)
VERBOSE: [2019-02-19 06:52:31Z] Transitioning to DownloadHotfixes state ...
VERBOSE: [2019-02-19 06:52:31Z] Getting handler execution status 
HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status ...
VERBOSE: [2019-02-19 06:52:31Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 06:52:31Z] Downloading wmf hotfixes (if any) required for 
the DSC Extension install ...
VERBOSE: [2019-02-19 06:52:37Z] Retrieving WMF download information 
(WMF_5.1-Windows_10.0-x64)...
VERBOSE: [2019-02-19 06:52:37Z] Updating execution status 
(HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status)
VERBOSE: [2019-02-19 06:52:37Z] Transitioning to InstallExtension state ...
VERBOSE: [2019-02-19 06:52:37Z] Getting handler execution status 
HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status ...
VERBOSE: [2019-02-19 06:52:37Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 06:52:37Z] DSC Extension Install Status: NotInstalled
VERBOSE: [2019-02-19 06:52:37Z] Installing the DSC Extension...
VERBOSE: [2019-02-19 06:52:37Z] Setting install status to 'InProgress' 
(HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\InstallStatus)
VERBOSE: [2019-02-19 06:52:37Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 06:52:37Z] Test if WMF 5PP is installed on the machine 
...
VERBOSE: [2019-02-19 06:52:42Z] Retrieving WMF download information 
(WMF_5.0PP-Windows_10.0-x64)...
VERBOSE: [2019-02-19 06:52:48Z] Retrieving WMF download information 
(WMF_5.1-Windows_10.0-x64)...
VERBOSE: [2019-02-19 06:52:48Z] Enabling WINRM listeners...
VERBOSE: [2019-02-19 06:52:54Z] Configured LocalAccountTokenFilterPolicy to 
grant administrative rights remotely to local users. 

VERBOSE: [2019-02-19 06:52:54Z] The DSC Extension was installed successfully
VERBOSE: [2019-02-19 06:52:54Z] Setting install status to 'Installed' 
(HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\InstallStatus)
VERBOSE: [2019-02-19 06:52:54Z] Initializing handler metadata ...
VERBOSE: [2019-02-19 06:52:59Z] AgentID is FDCF95FA-3412-11E9-A80E-000D3A2CB987
 ...
VERBOSE: [2019-02-19 06:52:59Z] VMUUId is FA6D1415-1869-483F-AA8E-47E6FE333BB3 
...
VERBOSE: [2019-02-19 06:52:59Z] Azure Resource ID is  ...
VERBOSE: [2019-02-19 06:52:59Z] Loading VM agent telemetry assemblies ...
VERBOSE: [2019-02-19 06:53:00Z] [MDS Telemetry] Invoking [Install][End] event 
for telemetry.[Status]: Success [Message]: {

    "WindowsEditionId":  "ServerDatacenter",

    "ConfigScript":  "SQLInstall.ps1",

    "VMUUID":  "FA6D1415-1869-483F-AA8E-47E6FE333BB3",

    "AzureEnvironment":  "AzureCloud",

    "Cloud":  "Azure",

    "ConfigUrl":  
"https://stagec02ef3abff2c4c068e3.blob.core.windows.net/at25-stageartifacts/DSC
/SQLInstall.zip",

    "ConfigName":  "SQLInstall",

    "WmfVersion":  "5.1"

}
VERBOSE: [2019-02-19 06:53:00Z] Updating execution status 
(HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status)
VERBOSE: [2019-02-19 06:53:00Z] Transitioning to ProcessConfiguration state 
...
VERBOSE: [2019-02-19 06:53:00Z] Getting handler execution status 
HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status ...
VERBOSE: [2019-02-19 06:53:00Z] Getting handler execution status 
HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status ...
VERBOSE: [2019-02-19 06:53:00Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 06:53:00Z] Applying DSC configuration:
VERBOSE: [2019-02-19 06:53:00Z]     Sequence Number:              0
VERBOSE: [2019-02-19 06:53:00Z]     Configuration URL:            
https://stagec02ef3abff2c4c068e3.blob.core.windows.net/at25-stageartifacts/DSC/
SQLInstall.zip?sv=2017-07-29&sr=c&sig=Odkooyxra%2FLSH9V984M9xJZHnlTBxlLqCwW0edq
Tyek%3D&se=2019-02-20T06%3A44%3A14Z&sp=r
VERBOSE: [2019-02-19 06:53:00Z]     Configuration Script:         
SQLInstall.ps1
VERBOSE: [2019-02-19 06:53:00Z]     Configuration Function:       SQLInstall
VERBOSE: [2019-02-19 06:53:00Z] Creating Working directory: 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\bin\..\DSCWork\SQLInstall
.0
VERBOSE: [2019-02-19 06:53:00Z] Downloading configuration package
VERBOSE: [2019-02-19 06:53:00Z] Downloading 
https://stagec02ef3abff2c4c068e3.blob.core.windows.net/at25-stageartifacts/DSC/
SQLInstall.zip to 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\bin\..\DSCWork\SQLInstall
.0\SQLInstall.zip
VERBOSE: [2019-02-19 06:53:04Z] Extracting SQLInstall.zip
VERBOSE: [2019-02-19 06:53:16Z] Installing custom DSC resource modules to 
C:\Program Files\WindowsPowerShell\Modules
VERBOSE: [2019-02-19 06:53:16Z] Installing custom DSC resource module 
SqlServerDsc
VERBOSE: [2019-02-19 06:53:16Z] Copying 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\DSCWork\SQLInstall.0\SqlS
erverDsc to C:\Program Files\WindowsPowerShell\Modules\SqlServerDsc ...
VERBOSE: [2019-02-19 06:53:17Z] Installing custom DSC resource module 
ComputerManagementDsc
VERBOSE: [2019-02-19 06:53:17Z] Copying 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\DSCWork\SQLInstall.0\Comp
uterManagementDsc to C:\Program 
Files\WindowsPowerShell\Modules\ComputerManagementDsc ...
VERBOSE: [2019-02-19 06:53:17Z] Installing custom DSC resource module cChoco
VERBOSE: [2019-02-19 06:53:17Z] Copying 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\DSCWork\SQLInstall.0\cCho
co to C:\Program Files\WindowsPowerShell\Modules\cChoco ...
VERBOSE: [2019-02-19 06:53:17Z] Installing custom DSC resource module 
OctopusDSC
VERBOSE: [2019-02-19 06:53:17Z] Copying 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\DSCWork\SQLInstall.0\Octo
pusDSC to C:\Program Files\WindowsPowerShell\Modules\OctopusDSC ...
VERBOSE: [2019-02-19 06:53:17Z] Installing custom DSC resource module Octoposh
VERBOSE: [2019-02-19 06:53:17Z] Copying 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\DSCWork\SQLInstall.0\Octo
posh to C:\Program Files\WindowsPowerShell\Modules\Octoposh ...
VERBOSE: [2019-02-19 06:53:17Z] Looking for the definition of the configuration
 function.
VERBOSE: [2019-02-19 06:53:17Z] Executing 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\bin\..\DSCWork\SQLInstall
.0\SQLInstall.ps1
VERBOSE: [2019-02-19 06:53:18Z] Preparing configuration arguments and 
configuration data.
VERBOSE: [2019-02-19 06:53:19Z] Created encryption certificate 
68BB86ABC37F581F146C53EA35CC5CE351D4275D
VERBOSE: [2019-02-19 06:53:19Z] Adding encryption certificate 
68BB86ABC37F581F146C53EA35CC5CE351D4275D to the configuration data
VERBOSE: [2019-02-19 06:53:19Z] Creating MOF files.
VERBOSE: [2019-02-19 06:53:19Z] Executing the configuration function to 
generate the MOF files.
WARNING: It is not recommended to use domain credential for node 'localhost'. 
In order to suppress the warning, you can add a property named 
'PSDscAllowDomainUser' with a value of $true to your DSC configuration data for
 node 'localhost'.
WARNING: The configuration 'SQLInstall' is loading one or more built-in 
resources without explicitly importing associated modules. Add 
Import-DscResource -ModuleName 'PSDesiredStateConfiguration' to your 
configuration to avoid this message.
VERBOSE: [2019-02-19 06:53:38Z] Meta configuration found. Injecting 
Thumbprint.
VERBOSE: [2019-02-19 06:53:38Z] CertificateID not present in existing meta 
configuration; inserting 68BB86ABC37F581F146C53EA35CC5CE351D4275D.
VERBOSE: [2019-02-19 06:53:38Z] Verifying metaconfiguration for reboot 
information...
VERBOSE: [2019-02-19 06:53:38Z] Backing up 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\DSCWork\SQLInstall.0\SQLI
nstall\localhost.meta.mof
VERBOSE: [2019-02-19 06:53:38Z] No match for RegistrationKey found in the meta 
mof file
VERBOSE: [2019-02-19 06:53:38Z] WMF 5 or newer, Injecting RebootNodeIfNeeded = 
False and ActionAfterReboot = "StopConfiguration"
VERBOSE: [2019-02-19 06:53:38Z] Executing Set-DscLocalConfigurationManager...
VERBOSE: [2019-02-19 06:53:42Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] Performing the operation 
"Start-DscConfiguration: SendMetaConfigurationApply" on target 
"MSFT_DSCLocalConfigurationManager".
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] Perform operation 'Invoke CimMethod' 
with following parameters, ''methodName' = 
SendMetaConfigurationApply,'className' = 
MSFT_DSCLocalConfigurationManager,'namespaceName' = 
root/Microsoft/Windows/DesiredStateConfiguration'.
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] An LCM method call arrived from 
computer at25-sbdb01 with user sid S-1-5-18.
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [MSFT_DSCMetaConfiguration]
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [MSFT_DSCMetaConfiguration]
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [MSFT_DSCMetaConfiguration]  in 0.0630 seconds.
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [MSFT_DSCMetaConfiguration]
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]    in  0.2030 seconds.
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] Operation 'Invoke CimMethod' 
complete.
VERBOSE: [2019-02-19 06:53:43Z] [VERBOSE] Set-DscLocalConfigurationManager 
finished in 0.331 seconds.
VERBOSE: [2019-02-19 06:53:44Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 06:53:44Z] Get-DscLocalConfigurationManager: 

ActionAfterReboot              : StopConfiguration

AgentId                        : FDCF95FA-3412-11E9-A80E-000D3A2CB987

AllowModuleOverWrite           : False

CertificateID                  : 68BB86ABC37F581F146C53EA35CC5CE351D4275D

ConfigurationDownloadManagers  : {}

ConfigurationID                : 

ConfigurationMode              : ApplyAndMonitor

ConfigurationModeFrequencyMins : 15

Credential                     : 

DebugMode                      : {NONE}

DownloadManagerCustomData      : 

DownloadManagerName            : 

LCMCompatibleVersions          : {1.0, 2.0}

LCMState                       : Idle

LCMStateDetail                 : 

LCMVersion                     : 2.0

StatusRetentionTimeInDays      : 10

SignatureValidationPolicy      : NONE

SignatureValidations           : {}

MaximumDownloadSizeMB          : 500

PartialConfigurations          : 

RebootNodeIfNeeded             : False

RefreshFrequencyMins           : 30

RefreshMode                    : PUSH

ReportManagers                 : {}

ResourceModuleManagers         : {}

PSComputerName                 : 

VERBOSE: [2019-02-19 06:53:44Z] Executing Start-DscConfiguration...
VERBOSE: [2019-02-19 06:53:44Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 06:53:45Z] [VERBOSE] Perform operation 'Invoke CimMethod' 
with following parameters, ''methodName' = SendConfigurationApply,'className' =
 MSFT_DSCLocalConfigurationManager,'namespaceName' = 
root/Microsoft/Windows/DesiredStateConfiguration'.
VERBOSE: [2019-02-19 06:53:45Z] [VERBOSE] An LCM method call arrived from 
computer at25-sbdb01 with user sid S-1-5-18.
VERBOSE: [2019-02-19 06:53:45Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[Log]OctopusTenticalDeployment]
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[Log]OctopusTenticalDeployment]
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[Log]OctopusTenticalDeployment]  in 0.0000 seconds.
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[Log]OctopusTenticalDeployment]
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[Log]OctopusTenticalDeployment] Running Deployment of Octopus Tentacle 
for http://acs-oct01.ai-test.altinn.cloud
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[Log]OctopusTenticalDeployment]  in 0.0000 seconds.
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[Log]OctopusTenticalDeployment]
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[cTentacleAgent]OctopusTentacle]
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[cTentacleAgent]OctopusTentacle]
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Checking if Tentacle is installed
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Tentacle present: False
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Checking for Windows Service: 
OctopusDeploy Tentacle
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Windows service: Not installed
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Ensure: Absent vs. Present = False
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[cTentacleAgent]OctopusTentacle]  in 0.1090 seconds.
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[cTentacleAgent]OctopusTentacle]
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Checking if Tentacle is installed
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Tentacle present: False
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Checking for Windows Service: 
OctopusDeploy Tentacle
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Windows service: Not installed
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Configuring Tentacle...
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Installing Tentacle...
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Beginning Tentacle installation
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Tentacle Home directory does not exist. 
Creating...
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Downloading Octopus Tentacle MSI from 
https://octopus.com/downloads/latest/OctopusTentacle64 to 
C:\Octopus\Tentacle.msi
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Checking to see if we have an installer 
at C:\Octopus\Tentacle.msi
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] No local installer found
VERBOSE: [2019-02-19 06:53:47Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Downloading 
https://octopus.com/downloads/latest/OctopusTentacle64 to 
C:\Octopus\Tentacle.msi
VERBOSE: [2019-02-19 06:53:48Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Installing MSI...
VERBOSE: [2019-02-19 06:53:48Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Log directory not found. Creating...
VERBOSE: [2019-02-19 06:53:51Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Tentacle MSI installer returned exit 
code 0
VERBOSE: [2019-02-19 06:53:51Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Open port 10933 on Windows Firewall
VERBOSE: [2019-02-19 06:53:54Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Ok.
VERBOSE: [2019-02-19 06:53:54Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Configuring and registering Tentacle
VERBOSE: [2019-02-19 06:53:54Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Tentacle configuration set as 
C:\Octopus\Tentacle\Tentacle.config
VERBOSE: [2019-02-19 06:53:55Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Creating empty configuration file: 
C:\Octopus\Tentacle\Tentacle.config
VERBOSE: [2019-02-19 06:53:55Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Saving instance: Tentacle
VERBOSE: [2019-02-19 06:53:55Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Setting home directory to: 
C:\Octopus\Tentacle
VERBOSE: [2019-02-19 06:53:56Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Home directory set to: C:\Octopus
VERBOSE: [2019-02-19 06:53:56Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] These changes require a restart of the 
Tentacle.
VERBOSE: [2019-02-19 06:53:57Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Application directory set to: 
C:\Applications
VERBOSE: [2019-02-19 06:53:57Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] These changes require a restart of the 
Tentacle.
VERBOSE: [2019-02-19 06:53:58Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] A new certificate has been generated and
 installed. Thumbprint:
VERBOSE: [2019-02-19 06:53:58Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] 
435507A7AEA8CB4C6DD4DA80441AB5617C95C11E
VERBOSE: [2019-02-19 06:53:58Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] These changes require a restart of the 
Tentacle.
VERBOSE: [2019-02-19 06:53:59Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Services listen port: 10933
VERBOSE: [2019-02-19 06:53:59Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] These changes require a restart of the 
Tentacle.
VERBOSE: [2019-02-19 06:53:59Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Adding Service identity to installation 
command
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Service installed
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Service reconfigured
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Granting log on as a service right to 
ai-test\ai-at25-deploy_sa
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] LookupAccountName result = True
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] IsValidSid: True
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] LookupAccountName domainName: AI-TEST
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Service credentials set
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Perform operation 'Enumerate 
CimInstances' with following parameters, ''namespaceName' = 
root\cimv2,'className' = win32_computersystem'.
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Operation 'Enumerate CimInstances' 
complete.
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Public host name: 
at25-sbdb01.ai-test.altinn.cloud
VERBOSE: [2019-02-19 06:54:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Registering with arguments: 
register-with --instance Tentacle --server 
http://acs-oct01.ai-test.altinn.cloud --name at25-sbdb01 --apiKey 
API-XZGPYULOXWCYF20KH8TGSTJZKG --force --console --comms-style TentaclePassive 
--publicHostName at25-sbdb01.ai-test.altinn.cloud --environment at25 --role 
sbdb
VERBOSE: [2019-02-19 06:54:01Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Registering the tentacle with the server
 at http://acs-oct01.ai-test.altinn.cloud/
VERBOSE: [2019-02-19 06:54:01Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Detected automation environment: 
NoneOrUnknown
VERBOSE: [2019-02-19 06:54:05Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Machine registered successfully
VERBOSE: [2019-02-19 06:54:05Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] These changes require a restart of the 
Tentacle.
VERBOSE: [2019-02-19 06:54:05Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Tentacle commands complete
VERBOSE: [2019-02-19 06:54:05Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Tentacle installed!
VERBOSE: [2019-02-19 06:54:05Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Starting OctopusDeploy Tentacle
VERBOSE: [2019-02-19 06:54:12Z] [VERBOSE] [at25-sbdb01]:                       
     [[cTentacleAgent]OctopusTentacle] Finished
VERBOSE: [2019-02-19 06:54:12Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[cTentacleAgent]OctopusTentacle]  in 24.7040 seconds.
VERBOSE: [2019-02-19 06:54:12Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[cTentacleAgent]OctopusTentacle]
VERBOSE: [2019-02-19 06:54:12Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[Service]OctopusServiceRunning]
VERBOSE: [2019-02-19 06:54:12Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[Service]OctopusServiceRunning]
VERBOSE: [2019-02-19 06:54:12Z] [VERBOSE] [at25-sbdb01]:                       
     [[Service]OctopusServiceRunning] Perform operation 'Query CimInstances' 
with following parameters, ''queryExpression' = SELECT * FROM Win32_Service 
WHERE Name='OctopusDeploy Tentacle','queryDialect' = WQL,'namespaceName' = 
root\cimv2'.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[Service]OctopusServiceRunning] Operation 'Query CimInstances' complete.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[Service]OctopusServiceRunning]  in 2.9840 seconds.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Skip   Set    
  ]  [[Service]OctopusServiceRunning]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[Service]OctopusServiceRunning]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[Registry]DisableWindowsFirewallDomain]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[Registry]DisableWindowsFirewallDomain]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[Registry]DisableWindowsFirewallDomain] Registry key value 
'HKLM:\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy
\DomainProfile\EnableFirewall' of type 'Dword' does not contain data '0'
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[Registry]DisableWindowsFirewallDomain]  in 0.2810 seconds.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[Registry]DisableWindowsFirewallDomain]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[Registry]DisableWindowsFirewallDomain] (SET) Set registry key value 
'HKLM:\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy
\DomainProfile\EnableFirewall' to '0' of type 'Dword'
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[Registry]DisableWindowsFirewallDomain]  in 0.0630 seconds.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[Registry]DisableWindowsFirewallDomain]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[Registry]DisableWindowsFirewallPublic]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[Registry]DisableWindowsFirewallPublic]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[Registry]DisableWindowsFirewallPublic] Registry key value 
'HKLM:\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy
\PublicProfile\EnableFirewall' of type 'Dword' does not contain data '0'
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[Registry]DisableWindowsFirewallPublic]  in 0.0470 seconds.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[Registry]DisableWindowsFirewallPublic]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[Registry]DisableWindowsFirewallPublic] (SET) Set registry key value 
'HKLM:\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy
\PublicProfile\EnableFirewall' to '0' of type 'Dword'
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[Registry]DisableWindowsFirewallPublic]  in 0.0310 seconds.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[Registry]DisableWindowsFirewallPublic]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[Registry]DisableWindowsFirewallStandard]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[Registry]DisableWindowsFirewallStandard]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[Registry]DisableWindowsFirewallStandard] Registry key value 
'HKLM:\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy
\Standardprofile\EnableFirewall' of type 'Dword' does not contain data '0'
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[Registry]DisableWindowsFirewallStandard]  in 0.0470 seconds.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[Registry]DisableWindowsFirewallStandard]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[Registry]DisableWindowsFirewallStandard] (SET) Set registry key value 
'HKLM:\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy
\Standardprofile\EnableFirewall' to '0' of type 'Dword'
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[Registry]DisableWindowsFirewallStandard]  in 0.0150 seconds.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[Registry]DisableWindowsFirewallStandard]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[File]CreateTempFolder]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[File]CreateTempFolder]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CreateTempFolder] The system cannot find the file specified.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CreateTempFolder] The related file/directory is: C:\Temp.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[File]CreateTempFolder]  in 0.0940 seconds.
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[File]CreateTempFolder]
VERBOSE: [2019-02-19 06:54:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CreateTempFolder] The system cannot find the file specified.
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CreateTempFolder] The related file/directory is: C:\Temp.
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[File]CreateTempFolder]  in 0.0000 seconds.
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[File]CreateTempFolder]
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[File]FileStreamFolder]
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[File]FileStreamFolder]
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]FileStreamFolder] The system cannot find the file specified.
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]FileStreamFolder] The related file/directory is: C:\FS.
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[File]FileStreamFolder]  in 0.0150 seconds.
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[File]FileStreamFolder]
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]FileStreamFolder] The system cannot find the file specified.
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]FileStreamFolder] The related file/directory is: C:\FS.
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[File]FileStreamFolder]  in 0.0000 seconds.
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[File]FileStreamFolder]
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[cChocoInstaller]InstallChocolatey]
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[cChocoInstaller]InstallChocolatey]
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Test-TargetResource
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Test-ChocoInstalled
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Env:Path contains: 
C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\Win
dowsPowerShell\v1.0\
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Test-Command choco
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] choco does NOT exist
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] NO - Choco is not Installed
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Choco is not installed, calling set
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[cChocoInstaller]InstallChocolatey]  in 0.0630 seconds.
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[cChocoInstaller]InstallChocolatey]
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Start Set-TargetResource
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Performing the operation "Download 
and Install" on target "Chocolatey".
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Install-Chocolatey
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] [ChocoInstaller] Creating C:\Program 
Files\Chocolatey
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Setting ChocolateyInstall environment
 variables
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Env:ChocolateyInstall has C:\Program 
Files\Chocolatey
VERBOSE: [2019-02-19 06:54:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Downloading 
https://chocolatey.org/install.ps1 to C:\Program Files\Chocolatey\install.ps1
VERBOSE: [2019-02-19 06:54:19Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Loading module from path 
'C:\windows\TEMP\chocolatey\chocInstall\tools\chocolateysetup.psm1'.
VERBOSE: [2019-02-19 06:54:19Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Importing function 
'Initialize-Chocolatey'.
VERBOSE: [2019-02-19 06:54:21Z] [WARNING] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Failure attempting to let Explorer 
know about updated environment settings.
  The system cannot find the path specified
VERBOSE: [2019-02-19 06:54:23Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Adding Choco to path
VERBOSE: [2019-02-19 06:54:23Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Env:Path has 
C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\Win
dowsPowerShell\v1.0\;C:\Program Files\Chocolatey\bin;
VERBOSE: [2019-02-19 06:54:24Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoInstaller]InstallChocolatey] Finish InstallChoco
VERBOSE: [2019-02-19 06:54:24Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[cChocoInstaller]InstallChocolatey]  in 8.5470 seconds.
VERBOSE: [2019-02-19 06:54:24Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[cChocoInstaller]InstallChocolatey]
VERBOSE: [2019-02-19 06:54:24Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17]
VERBOSE: [2019-02-19 06:54:24Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17]
VERBOSE: [2019-02-19 06:54:24Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17] Start 
Test-TargetResource
VERBOSE: [2019-02-19 06:54:24Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17] Start 
IsPackageInstalled microsoft-build-tools
VERBOSE: [2019-02-19 06:54:25Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17] Start 
IsPackageInstalled microsoft-build-tools
VERBOSE: [2019-02-19 06:54:26Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17]  in 2.0000 
seconds.
VERBOSE: [2019-02-19 06:54:26Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17]
VERBOSE: [2019-02-19 06:54:26Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17] Start 
Set-TargetResource
VERBOSE: [2019-02-19 06:54:26Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17] Start 
IsPackageInstalled microsoft-build-tools
VERBOSE: [2019-02-19 06:54:27Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17] Start 
IsPackageInstalled microsoft-build-tools
VERBOSE: [2019-02-19 06:54:28Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17] Install 
command: 'choco install microsoft-build-tools -y'
VERBOSE: [2019-02-19 06:56:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17] Package 
output Chocolatey v0.10.11 Installing the following packages: 
microsoft-build-tools By installing you accept licenses for the packages.  
Progress: Downloading visualstudio2017buildtools 15.9.4.0... 8% Progress: 
Downloading visualstudio2017buildtools 15.9.4.0... 25% Progress: Downloading 
visualstudio2017buildtools 15.9.4.0... 43% Progress: Downloading 
visualstudio2017buildtools 15.9.4.0... 60% Progress: Downloading 
visualstudio2017buildtools 15.9.4.0... 78% Progress: Downloading 
visualstudio2017buildtools 15.9.4.0... 95% Progress: Downloading 
visualstudio2017buildtools 15.9.4.0... 100%  Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 1% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 3% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 5% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 7% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 9% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 11% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 13% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 15% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 17% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 19% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 21% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 23% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 25% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 27% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 29% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 32% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 34% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 36% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 38% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 40% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 42% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 44% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 46% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 48% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 50% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 52% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 54% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 56% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 58% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 60% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 62% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 65% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 67% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 69% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 71% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 73% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 75% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 77% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 79% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 81% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 83% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 89% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 90% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 96% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 96% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 98% Progress: Downloading 
chocolatey-visualstudio.extension 1.7.1... 100%  Progress: Downloading 
KB2919355 1.0.20160915... 13% Progress: Downloading KB2919355 1.0.20160915... 
41% Progress: Downloading KB2919355 1.0.20160915... 70% Progress: Downloading 
KB2919355 1.0.20160915... 98% Progress: Downloading KB2919355 1.0.20160915... 
100%  Progress: Downloading KB2919442 1.0.20160915... 14% Progress: Downloading
 KB2919442 1.0.20160915... 45% Progress: Downloading KB2919442 1.0.20160915... 
75% Progress: Downloading KB2919442 1.0.20160915... 100%  Progress: Downloading
 KB2999226 1.0.20181019... 10% Progress: Downloading KB2999226 1.0.20181019... 
31% Progress: Downloading KB2999226 1.0.20181019... 52% Progress: Downloading 
KB2999226 1.0.20181019... 73% Progress: Downloading KB2999226 1.0.20181019... 
94% Progress: Downloading KB2999226 1.0.20181019... 100%  Progress: Downloading
 chocolatey-windowsupdate.extension 1.0.3... 2% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 7% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 12% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 17% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 23% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 28% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 33% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 38% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 43% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 48% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 54% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 59% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 64% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 69% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 74% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 79% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 85% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 90% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 95% Progress: Downloading 
chocolatey-windowsupdate.extension 1.0.3... 100%  Progress: Downloading 
dotnet4.6.2 4.6.01590.20170129... 13% Progress: Downloading dotnet4.6.2 
4.6.01590.20170129... 42% Progress: Downloading dotnet4.6.2 
4.6.01590.20170129... 71% Progress: Downloading dotnet4.6.2 
4.6.01590.20170129... 99% Progress: Downloading dotnet4.6.2 
4.6.01590.20170129... 100%  Progress: Downloading visualstudio2017-installer 
1.0.2... 16% Progress: Downloading visualstudio2017-installer 1.0.2... 50% 
Progress: Downloading visualstudio2017-installer 1.0.2... 83% Progress: 
Downloading visualstudio2017-installer 1.0.2... 100%  Progress: Downloading 
microsoft-build-tools 15.0.26320.2... 21% Progress: Downloading 
microsoft-build-tools 15.0.26320.2... 65% Progress: Downloading 
microsoft-build-tools 15.0.26320.2... 100%  chocolatey-visualstudio.extension 
v1.7.1 [Approved] chocolatey-visualstudio.extension package files install 
completed. Performing other installation steps.  Installed/updated 
chocolatey-visualstudio extensions.  The install of 
chocolatey-visualstudio.extension was successful.   Software installed to 
'C:\Program Files\Chocolatey\extensions\chocolatey-visualstudio'  KB2919442 
v1.0.20160915 [Approved] kb2919442 package files install completed. Performing 
other installation steps. Skipping installation because this hotfix only 
applies to Windows 8.1 and Windows Server 2012 R2.  The install of kb2919442 
was successful.   Software install location not explicitly set, could be in 
package or   default install location if installer.  KB2919355 v1.0.20160915 
[Approved] kb2919355 package files install completed. Performing other 
installation steps. Skipping installation because this hotfix only applies to 
Windows 8.1 and Windows Server 2012 R2.  The install of kb2919355 was 
successful.   Software install location not explicitly set, could be in package
 or   default install location if installer.  
chocolatey-windowsupdate.extension v1.0.3 [Approved] 
chocolatey-windowsupdate.extension package files install completed. Performing 
other installation steps.  Installed/updated chocolatey-windowsupdate 
extensions.  The install of chocolatey-windowsupdate.extension was successful. 
  Software installed to 'C:\Program 
Files\Chocolatey\extensions\chocolatey-windowsupdate'  KB2999226 v1.0.20181019 
[Approved] kb2999226 package files install completed. Performing other 
installation steps. Skipping installation because update KB2999226 does not 
apply to this operating system (Microsoft Windows Server 2016 Datacenter).  The
 install of kb2999226 was successful.   Software install location not 
explicitly set, could be in package or   default install location if installer.
  dotnet4.6.2 v4.6.01590.20170129 [Approved] dotnet4.6.2 package files install 
completed. Performing other installation steps. Microsoft .NET Framework 4.6.2 
or later is already installed.  The install of dotnet4.6.2 was successful.   
Software install location not explicitly set, could be in package or   default 
install location if installer.  visualstudio2017-installer v1.0.2 [Approved] 
visualstudio2017-installer package files install completed. Performing other 
installation steps.  The install of visualstudio2017-installer was successful. 
  Software install location not explicitly set, could be in package or   
default install location if installer.  visualstudio2017buildtools v15.9.4.0 
[Approved] visualstudio2017buildtools package files install completed. 
Performing other installation steps. Downloading channel manifest    from 
'https://aka.ms/vs/15/release/channel'  Progress: 100% - Completed download of 
C:\windows\TEMP\chocolatey\chocolatey-visualstudio.extension\ChannelManifest_81
725945.man (69.37 KB). Download of ChannelManifest_81725945.man (69.37 KB) 
completed. Downloading catalog manifest    from 
'https://download.visualstudio.microsoft.com/download/pr/5de43bc5-48cc-4f6c-918
1-184d248194c1/842e720ee04168b4f3bb84bd880fc05d/visualstudio.vsman'  Progress: 
1% - Saving 112 KB of 7.83 MB Progress: 3% - Saving 255.99 KB of 7.83 MB 
Progress: 4% - Saving 400 KB of 7.83 MB Progress: 6% - Saving 559.99 KB of 7.83
 MB Progress: 8% - Saving 719.98 KB of 7.83 MB Progress: 10% - Saving 879.97 KB
 of 7.83 MB Progress: 12% - Saving 1.02 MB of 7.83 MB Progress: 14% - Saving 
1.17 MB of 7.83 MB Progress: 16% - Saving 1.33 MB of 7.83 MB Progress: 18% - 
Saving 1.48 MB of 7.83 MB Progress: 20% - Saving 1.64 MB of 7.83 MB Progress: 
22% - Saving 1.8 MB of 7.83 MB Progress: 24% - Saving 1.95 MB of 7.83 MB 
Progress: 26% - Saving 2.11 MB of 7.83 MB Progress: 28% - Saving 2.27 MB of 
7.83 MB Progress: 30% - Saving 2.42 MB of 7.83 MB Progress: 32% - Saving 2.58 
MB of 7.83 MB Progress: 34% - Saving 2.73 MB of 7.83 MB Progress: 36% - Saving 
2.89 MB of 7.83 MB Progress: 38% - Saving 3.05 MB of 7.83 MB Progress: 40% - 
Saving 3.2 MB of 7.83 MB Progress: 42% - Saving 3.36 MB of 7.83 MB Progress: 
44% - Saving 3.52 MB of 7.83 MB Progress: 46% - Saving 3.67 MB of 7.83 MB 
Progress: 48% - Saving 3.83 MB of 7.83 MB Progress: 50% - Saving 3.98 MB of 
7.83 MB Progress: 52% - Saving 4.14 MB of 7.83 MB Progress: 54% - Saving 4.3 MB
 of 7.83 MB Progress: 56% - Saving 4.45 MB of 7.83 MB Progress: 58% - Saving 
4.61 MB of 7.83 MB Progress: 60% - Saving 4.77 MB of 7.83 MB Progress: 62% - 
Saving 4.92 MB of 7.83 MB Progress: 64% - Saving 5.08 MB of 7.83 MB Progress: 
66% - Saving 5.23 MB of 7.83 MB Progress: 68% - Saving 5.39 MB of 7.83 MB 
Progress: 70% - Saving 5.55 MB of 7.83 MB Progress: 72% - Saving 5.7 MB of 7.83
 MB Progress: 74% - Saving 5.86 MB of 7.83 MB Progress: 76% - Saving 5.98 MB of
 7.83 MB Progress: 77% - Saving 6.11 MB of 7.83 MB Progress: 79% - Saving 6.23 
MB of 7.83 MB Progress: 81% - Saving 6.36 MB of 7.83 MB Progress: 82% - Saving 
6.5 MB of 7.83 MB Progress: 84% - Saving 6.66 MB of 7.83 MB Progress: 86% - 
Saving 6.78 MB of 7.83 MB Progress: 88% - Saving 6.94 MB of 7.83 MB Progress: 
90% - Saving 7.08 MB of 7.83 MB Progress: 92% - Saving 7.23 MB of 7.83 MB 
Progress: 94% - Saving 7.37 MB of 7.83 MB Progress: 96% - Saving 7.53 MB of 
7.83 MB Progress: 98% - Saving 7.69 MB of 7.83 MB Progress: 100% - Saving 7.83 
MB of 7.83 MB Progress: 100% - Completed download of 
C:\windows\TEMP\chocolatey\chocolatey-visualstudio.extension\Catalog_-113239232
0.man (7.83 MB). Download of Catalog_-1132392320.man (7.83 MB) completed. 
Downloading Visual Studio Installer    from 
'https://download.visualstudio.microsoft.com/download/pr/a46d2db7-bd7b-43ee-bd7
b-12624297e4ec/11b9c9bd44ec2b475f6da3d1802b3d00/vs_buildtools.exe'  Progress: 
11% - Saving 143.99 KB of 1.22 MB Progress: 23% - Saving 288 KB of 1.22 MB 
Progress: 35% - Saving 447.99 KB of 1.22 MB Progress: 48% - Saving 607.98 KB of
 1.22 MB Progress: 61% - Saving 767.97 KB of 1.22 MB Progress: 74% - Saving 
927.96 KB of 1.22 MB Progress: 86% - Saving 1.06 MB of 1.22 MB Progress: 99% - 
Saving 1.22 MB of 1.22 MB Progress: 100% - Completed download of 
C:\windows\TEMP\chocolatey\Visual Studio Installer\15.9.4.0\vs_buildtools.exe 
(1.22 MB). Download of vs_buildtools.exe (1.22 MB) completed. Hashes match. 
Installing Visual Studio Installer...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\2052
\help.html... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1028
\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1046
\help.html... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1042
\help.html...    Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1029
\help.html... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1036
\help.html...   Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\3082
\help.html... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1040
\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1031
\help.html... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1045
\help.html...   Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1055
\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1041
\help.html...   Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1049
\help.html... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\HelpFile\1033
\help.html... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\vs_setup_boot
strapper.exe...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\Microsoft.Dia
gnostics.Tracing.EventSource.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\Microsoft.Vis
ualStudio.RemoteControl.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\Microsoft.Vis
ualStudio.Setup.Common.dll...   Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\Microsoft.Vis
ualStudio.Setup.Configuration.Interop.dll... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\Microsoft.Vis
ualStudio.Setup.dll... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\Microsoft.Vis
ualStudio.Setup.Download.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\Microsoft.Vis
ualStudio.Setup.Engine.dll...   Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\Microsoft.Vis
ualStudio.Telemetry.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\Microsoft.Vis
ualStudio.Utilities.Internal.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\Newtonsoft.Js
on.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\zh-Hans\vs_se
tup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\zh-Hant\vs_se
tup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\es\vs_setup_b
ootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\pt-BR\vs_setu
p_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\cs\vs_setup_b
ootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\tr\vs_setup_b
ootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\de\vs_setup_b
ootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\fr\vs_setup_b
ootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\it\vs_setup_b
ootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\pl\vs_setup_b
ootstrapper.resources.dll...    Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\ko\vs_setup_b
ootstrapper.resources.dll...   Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\ru\vs_setup_b
ootstrapper.resources.dll... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\ja\vs_setup_b
ootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\vs_setup_boot
strapper.config...   Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\detection.jso
n... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\vs_setup_boot
strapper.json... Preparing: 
C:\windows\TEMP\chocolatey\20d4620c91f5e25a53\vs_bootstrapper_d15\vs_setup_boot
strapper.exe.config...   Visual Studio Installer has been installed. 
Downloading visualstudio2017buildtools    from 
'https://download.visualstudio.microsoft.com/download/pr/a46d2db7-bd7b-43ee-bd7
b-12624297e4ec/11b9c9bd44ec2b475f6da3d1802b3d00/vs_buildtools.exe'  Progress: 
12% - Saving 159.99 KB of 1.22 MB Progress: 24% - Saving 303.99 KB of 1.22 MB 
Progress: 37% - Saving 463.98 KB of 1.22 MB Progress: 49% - Saving 623.97 KB of
 1.22 MB Progress: 62% - Saving 783.96 KB of 1.22 MB Progress: 75% - Saving 
943.95 KB of 1.22 MB Progress: 86% - Saving 1.06 MB of 1.22 MB Progress: 99% - 
Saving 1.22 MB of 1.22 MB Progress: 100% - Completed download of 
C:\windows\TEMP\chocolatey\visualstudio2017buildtools\15.9.4.0\vs_buildtools.ex
e (1.22 MB). Download of vs_buildtools.exe (1.22 MB) completed. Hashes match. 
Installing visualstudio2017buildtools...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1028\help.html... Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\2052\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1055\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1046\help.html...   Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1042\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1029\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1036\help.html...   Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\3082\help.html... Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1031\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1045\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1033\help.html...   Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1041\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1049\help.html... Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Hel
pFile\1040\help.html...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\vs_
setup_bootstrapper.exe...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Mic
rosoft.Diagnostics.Tracing.EventSource.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Mic
rosoft.VisualStudio.RemoteControl.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Mic
rosoft.VisualStudio.Setup.Common.dll...   Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Mic
rosoft.VisualStudio.Setup.Configuration.Interop.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Mic
rosoft.VisualStudio.Setup.Download.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Mic
rosoft.VisualStudio.Setup.Engine.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Mic
rosoft.VisualStudio.Telemetry.dll... Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Mic
rosoft.VisualStudio.Setup.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\Mic
rosoft.VisualStudio.Utilities.Internal.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\New
tonsoft.Json.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\zh-
Hans\vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\zh-
Hant\vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\es\
vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\pt-
BR\vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\cs\
vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\tr\
vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\de\
vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\fr\
vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\it\
vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\pl\
vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\ko\
vs_setup_bootstrapper.resources.dll...   Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\ja\
vs_setup_bootstrapper.resources.dll... Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\ru\
vs_setup_bootstrapper.resources.dll...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\vs_
setup_bootstrapper.config...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\vs_
setup_bootstrapper.exe.config...  Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\det
ection.json...   Preparing: 
C:\windows\TEMP\chocolatey\7d5d76e3363828af881924ef951a\vs_bootstrapper_d15\vs_
setup_bootstrapper.json... visualstudio2017buildtools has been installed.   
visualstudio2017buildtools may be able to be automatically uninstalled.  The 
install of visualstudio2017buildtools was successful.   Software installed to 
'"C:\Program Files (x86)\Microsoft Visual Studio\Installer"'  
microsoft-build-tools v15.0.26320.2 [Approved] microsoft-build-tools package 
files install completed. Performing other installation steps.  The install of 
microsoft-build-tools was successful.   Software install location not 
explicitly set, could be in package or   default install location if installer.
  Chocolatey installed 9/9 packages.   See the log for details (C:\Program 
Files\Chocolatey\logs\chocolatey.log).  Installed:  - 
visualstudio2017buildtools v15.9.4.0  - kb2919355 v1.0.20160915  - 
visualstudio2017-installer v1.0.2  - kb2999226 v1.0.20181019  - 
chocolatey-visualstudio.extension v1.7.1  - kb2919442 v1.0.20160915  - 
microsoft-build-tools v15.0.26320.2  - dotnet4.6.2 v4.6.01590.20170129  - 
chocolatey-windowsupdate.extension v1.0.3
VERBOSE: [2019-02-19 06:56:34Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 06:56:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17]  in 
127.6380 seconds.
VERBOSE: [2019-02-19 06:56:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[cChocoPackageInstaller]InstallMSBuildToolsForVisualStudio17]
VERBOSE: [2019-02-19 06:56:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[cChocoPackageInstaller]InstallSSDT]
VERBOSE: [2019-02-19 06:56:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[cChocoPackageInstaller]InstallSSDT]
VERBOSE: [2019-02-19 06:56:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallSSDT] Start Test-TargetResource
VERBOSE: [2019-02-19 06:56:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallSSDT] Start IsPackageInstalled ssdt17
VERBOSE: [2019-02-19 06:56:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallSSDT] Start IsPackageInstalled ssdt17
VERBOSE: [2019-02-19 06:56:36Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[cChocoPackageInstaller]InstallSSDT]  in 2.6100 seconds.
VERBOSE: [2019-02-19 06:56:36Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[cChocoPackageInstaller]InstallSSDT]
VERBOSE: [2019-02-19 06:56:36Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallSSDT] Start Set-TargetResource
VERBOSE: [2019-02-19 06:56:36Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallSSDT] Start IsPackageInstalled ssdt17
VERBOSE: [2019-02-19 06:56:37Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallSSDT] Start IsPackageInstalled ssdt17
VERBOSE: [2019-02-19 06:56:38Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallSSDT] Install command: 'choco install 
ssdt17 -y'
VERBOSE: [2019-02-19 06:57:07Z] [VERBOSE] [at25-sbdb01]:                       
     [[cChocoPackageInstaller]InstallSSDT] Package output Chocolatey v0.10.11 
Installing the following packages: ssdt17 By installing you accept licenses for
 the packages.  Progress: Downloading ssdt17 14.0.16186.0... 16% Progress: 
Downloading ssdt17 14.0.16186.0... 51% Progress: Downloading ssdt17 
14.0.16186.0... 86% Progress: Downloading ssdt17 14.0.16186.0... 100%  ssdt17 
v14.0.16186.0 [Approved] ssdt17 package files install completed. Performing 
other installation steps. Downloading ssdt17    from 
'https://go.microsoft.com/fwlink/?linkid=2052454'  Progress: 7% - Saving 125.94
 KB of 1.55 MB Progress: 16% - Saving 265.12 KB of 1.55 MB Progress: 25% - 
Saving 404.3 KB of 1.55 MB Progress: 34% - Saving 543.48 KB of 1.55 MB 
Progress: 43% - Saving 682.66 KB of 1.55 MB Progress: 51% - Saving 821.84 KB of
 1.55 MB Progress: 60% - Saving 961.02 KB of 1.55 MB Progress: 69% - Saving 
1.07 MB of 1.55 MB Progress: 78% - Saving 1.21 MB of 1.55 MB Progress: 86% - 
Saving 1.35 MB of 1.55 MB Progress: 95% - Saving 1.48 MB of 1.55 MB Progress: 
100% - Completed download of 
C:\windows\TEMP\chocolatey\ssdt17\14.0.16186.0\SSDT-Setup-ENU.exe (1.55 MB). 
Download of SSDT-Setup-ENU.exe (1.55 MB) completed. Hashes match. Installing 
ssdt17... ssdt17 has been installed.   ssdt17 can be automatically uninstalled.
  The install of ssdt17 was successful.   Software installed as 'exe', install 
location is likely default.  Chocolatey installed 1/1 packages.   See the log 
for details (C:\Program Files\Chocolatey\logs\chocolatey.log).
VERBOSE: [2019-02-19 06:57:07Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[cChocoPackageInstaller]InstallSSDT]  in 30.8940 seconds.
VERBOSE: [2019-02-19 06:57:07Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[cChocoPackageInstaller]InstallSSDT]
VERBOSE: [2019-02-19 06:57:07Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[File]CopySSDT]
VERBOSE: [2019-02-19 06:57:07Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[File]CopySSDT]
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySSDT] Building file list from cache.
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[File]CopySSDT]  in 0.4370 seconds.
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[File]CopySSDT]
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySSDT] Building file list from cache.
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySSDT] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SSDT
\SSDT\Microsoft.Data.Tools.Schema.SqlTasks.targets to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\MSBuild\Microsoft\VisualStudio\v15.0\SSDT\Microsoft.Data
.Tools.Schema.SqlTasks.targets.
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[File]CopySSDT]  in 0.4060 seconds.
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[File]CopySSDT]
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[File]CopySQLDBL]
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[File]CopySQLDBL]
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] The system cannot find the path specified.
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] The related file/directory is: C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft.
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Building file list from cache.
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[File]CopySQLDBL]  in 0.2970 seconds.
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[File]CopySQLDBL]
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] The system cannot find the path specified.
VERBOSE: [2019-02-19 06:57:08Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] The related file/directory is: C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft.
VERBOSE: [2019-02-19 06:57:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Building file list from cache.
VERBOSE: [2019-02-19 06:57:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\1033\Microsoft.VisualStudio.Data.Tools.SqlCLRIntellisenseHostingEngineU
I.dll to C:\Program Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\1033\Microsoft.Vi
sualStudio.Data.Tools.SqlCLRIntellisenseHostingEngineUI.dll.
VERBOSE: [2019-02-19 06:57:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\1033\DacUnpackResources.dll to C:\Program Files (x86)\Microsoft
 Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\1033\DacU
npackResources.dll.
VERBOSE: [2019-02-19 06:57:09Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\dacunpack.exe to C:\Program Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\dacunpack
.exe.
VERBOSE: [2019-02-19 06:57:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Extensions\Readme.txt to C:\Program Files (x86)\Microsoft 
Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Extension
s\Readme.txt.
VERBOSE: [2019-02-19 06:57:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.Data.Tools.Components.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.Data.Tools.Components.dll.
VERBOSE: [2019-02-19 06:57:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.Data.Tools.Contracts.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.Data.Tools.Contracts.dll.
VERBOSE: [2019-02-19 06:57:10Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.Data.Tools.Schema.Sql.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.Data.Tools.Schema.Sql.dll.
VERBOSE: [2019-02-19 06:57:12Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.Data.Tools.Schema.Tasks.Sql.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.Data.Tools.Schema.Tasks.Sql.dll.
VERBOSE: [2019-02-19 06:57:12Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.Data.Tools.Schema.Utilities.Sql.dll to C:\Program 
Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.Data.Tools.Schema.Utilities.Sql.dll.
VERBOSE: [2019-02-19 06:57:13Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.Data.Tools.Utilities.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.Data.Tools.Utilities.dll.
VERBOSE: [2019-02-19 06:57:13Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.SqlServer.ConnectionInfo.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.SqlServer.ConnectionInfo.dll.
VERBOSE: [2019-02-19 06:57:13Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.SqlServer.Dac.dll to C:\Program Files (x86)\Microsoft
 Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.SqlServer.Dac.dll.
VERBOSE: [2019-02-19 06:57:14Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.SqlServer.Dac.Extensions.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.SqlServer.Dac.Extensions.dll.
VERBOSE: [2019-02-19 06:57:14Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.SqlServer.Dac.Extensions.xml to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.SqlServer.Dac.Extensions.xml.
VERBOSE: [2019-02-19 06:57:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.SqlServer.Dac.xml to C:\Program Files (x86)\Microsoft
 Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.SqlServer.Dac.xml.
VERBOSE: [2019-02-19 06:57:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.SqlServer.SqlClrProvider.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.SqlServer.SqlClrProvider.dll.
VERBOSE: [2019-02-19 06:57:15Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\Microsoft.SqlServer.TransactSql.ScriptDom.dll to C:\Program 
Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\Microsoft
.SqlServer.TransactSql.ScriptDom.dll.
VERBOSE: [2019-02-19 06:57:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\sqlpackage.exe to C:\Program Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\sqlpackag
e.exe.
VERBOSE: [2019-02-19 06:57:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\130\sqlpackage.exe.config to C:\Program Files (x86)\Microsoft 
Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130\sqlpackag
e.exe.config.
VERBOSE: [2019-02-19 06:57:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\1033\DacUnpackResources.dll to C:\Program Files (x86)\Microsoft
 Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\1033\DacU
npackResources.dll.
VERBOSE: [2019-02-19 06:57:16Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\dacunpack.exe to C:\Program Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\dacunpack
.exe.
VERBOSE: [2019-02-19 06:57:17Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Extensions\Readme.txt to C:\Program Files (x86)\Microsoft 
Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Extension
s\Readme.txt.
VERBOSE: [2019-02-19 06:57:17Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.Data.Tools.Components.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.Data.Tools.Components.dll.
VERBOSE: [2019-02-19 06:57:17Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.Data.Tools.Contracts.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.Data.Tools.Contracts.dll.
VERBOSE: [2019-02-19 06:57:17Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.Data.Tools.Schema.Sql.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.Data.Tools.Schema.Sql.dll.
VERBOSE: [2019-02-19 06:57:19Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.Data.Tools.Schema.Tasks.Sql.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.Data.Tools.Schema.Tasks.Sql.dll.
VERBOSE: [2019-02-19 06:57:19Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.Data.Tools.Schema.Utilities.Sql.dll to C:\Program 
Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.Data.Tools.Schema.Utilities.Sql.dll.
VERBOSE: [2019-02-19 06:57:20Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.Data.Tools.Utilities.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.Data.Tools.Utilities.dll.
VERBOSE: [2019-02-19 06:57:21Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.SqlServer.ConnectionInfo.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.SqlServer.ConnectionInfo.dll.
VERBOSE: [2019-02-19 06:57:21Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.SqlServer.Dac.dll to C:\Program Files (x86)\Microsoft
 Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.SqlServer.Dac.dll.
VERBOSE: [2019-02-19 06:57:22Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.SqlServer.Dac.Extensions.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.SqlServer.Dac.Extensions.dll.
VERBOSE: [2019-02-19 06:57:22Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.SqlServer.Dac.Extensions.xml to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.SqlServer.Dac.Extensions.xml.
VERBOSE: [2019-02-19 06:57:23Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.SqlServer.Dac.xml to C:\Program Files (x86)\Microsoft
 Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.SqlServer.Dac.xml.
VERBOSE: [2019-02-19 06:57:23Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.SqlServer.SqlClrProvider.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.SqlServer.SqlClrProvider.dll.
VERBOSE: [2019-02-19 06:57:23Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\Microsoft.SqlServer.TransactSql.ScriptDom.dll to C:\Program 
Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\Microsoft
.SqlServer.TransactSql.ScriptDom.dll.
VERBOSE: [2019-02-19 06:57:24Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\sqlpackage.exe to C:\Program Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\sqlpackag
e.exe.
VERBOSE: [2019-02-19 06:57:24Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\140\sqlpackage.exe.config to C:\Program Files (x86)\Microsoft 
Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\140\sqlpackag
e.exe.config.
VERBOSE: [2019-02-19 06:57:24Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\dacunpack.exe to C:\Program Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\dacunpack
.exe.
VERBOSE: [2019-02-19 06:57:24Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.Data.Tools.Components.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.Data.Tools.Components.dll.
VERBOSE: [2019-02-19 06:57:24Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.Data.Tools.Contracts.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.Data.Tools.Contracts.dll.
VERBOSE: [2019-02-19 06:57:25Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.Data.Tools.Schema.Sql.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.Data.Tools.Schema.Sql.dll.
VERBOSE: [2019-02-19 06:57:26Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.Data.Tools.Schema.Tasks.Sql.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.Data.Tools.Schema.Tasks.Sql.dll.
VERBOSE: [2019-02-19 06:57:26Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.Data.Tools.Schema.Utilities.Sql.dll to C:\Program 
Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.Data.Tools.Schema.Utilities.Sql.dll.
VERBOSE: [2019-02-19 06:57:27Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.Data.Tools.Utilities.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.Data.Tools.Utilities.dll.
VERBOSE: [2019-02-19 06:57:27Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.SqlServer.ConnectionInfo.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.SqlServer.ConnectionInfo.dll.
VERBOSE: [2019-02-19 06:57:27Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.SqlServer.Dac.dll to C:\Program Files (x86)\Microsoft
 Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.SqlServer.Dac.dll.
VERBOSE: [2019-02-19 06:57:28Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.SqlServer.Dac.Extensions.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.SqlServer.Dac.Extensions.dll.
VERBOSE: [2019-02-19 06:57:28Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.SqlServer.Dac.Extensions.xml to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.SqlServer.Dac.Extensions.xml.
VERBOSE: [2019-02-19 06:57:28Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.SqlServer.Dac.xml to C:\Program Files (x86)\Microsoft
 Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.SqlServer.Dac.xml.
VERBOSE: [2019-02-19 06:57:29Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.SqlServer.SqlClrProvider.dll to C:\Program Files 
(x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.SqlServer.SqlClrProvider.dll.
VERBOSE: [2019-02-19 06:57:29Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\Microsoft.SqlServer.TransactSql.ScriptDom.dll to C:\Program 
Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\Microsoft
.SqlServer.TransactSql.ScriptDom.dll.
VERBOSE: [2019-02-19 06:57:29Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\sqlpackage.exe to C:\Program Files (x86)\Microsoft Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\sqlpackag
e.exe.
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]:                       
     [[File]CopySQLDBL] Copying file 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\vsbuildtools\SQLD
B\SQLDB\DAC\150\sqlpackage.exe.config to C:\Program Files (x86)\Microsoft 
Visual 
Studio\2017\BuildTools\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\150\sqlpackag
e.exe.config.
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[File]CopySQLDBL]  in 21.4870 seconds.
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[File]CopySQLDBL]
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[Registry]RegistryEnableLongPaths]
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[Registry]RegistryEnableLongPaths]
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]:                       
     [[Registry]RegistryEnableLongPaths] Registry key value 
'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem\LongPathsEnabled' of type 
'Dword' does not contain data '1'
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[Registry]RegistryEnableLongPaths]  in 0.0470 seconds.
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[Registry]RegistryEnableLongPaths]
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]:                       
     [[Registry]RegistryEnableLongPaths] (SET) Set registry key value 
'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem\LongPathsEnabled' to '1' of 
type 'Dword'
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[Registry]RegistryEnableLongPaths]  in 0.0630 seconds.
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[Registry]RegistryEnableLongPaths]
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[WindowsFeature]NetFramework45Core]
VERBOSE: [2019-02-19 06:57:30Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[WindowsFeature]NetFramework45Core]
VERBOSE: [2019-02-19 06:57:31Z] [VERBOSE] [at25-sbdb01]:                       
     [[WindowsFeature]NetFramework45Core] The operation 'Get-WindowsFeature' 
started: NET-Framework-45-Core
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]:                       
     [[WindowsFeature]NetFramework45Core] The operation 'Get-WindowsFeature' 
succeeded: NET-Framework-45-Core
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[WindowsFeature]NetFramework45Core]  in 1.9690 seconds.
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Skip   Set    
  ]  [[WindowsFeature]NetFramework45Core]
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[WindowsFeature]NetFramework45Core]
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[Log]ParamLog]
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[Log]ParamLog]
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[Log]ParamLog]  in 0.0000 seconds.
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[Log]ParamLog]
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]:                       
     [[Log]ParamLog] Running SQLInstall. PackagePath = 
\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\sql\2016
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[Log]ParamLog]  in 0.0000 seconds.
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [[Log]ParamLog]
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [[SqlSetup]SQLServerSetup]
VERBOSE: [2019-02-19 06:57:32Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Test   
  ]  [[SqlSetup]SQLServerSetup]
VERBOSE: [2019-02-19 06:57:33Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Using path 
'\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\sql\2016\setup.e
xe'.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AJRouter
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ALG
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppIDSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Appinfo
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppMgmt
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppReadiness
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppVClient
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppXSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AudioEndpointBuilder
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Audiosrv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AxInstSV
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BDESVC
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BFE
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BITS
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BrokerInfrastructure
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: bthserv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CDPSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CertPropSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ClipSVC
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: COMSysApp
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CoreMessagingRegistrar
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CryptSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CscService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DcomLaunch
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DcpSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: defragsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DeviceAssociationService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DeviceInstall
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DevQueryBroker
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Dhcp
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: 
diagnosticshub.standardcollector.service
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DiagTrack
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DmEnrollmentSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: dmwappushservice
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Dnscache
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: dot3svc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DPS
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DsmSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DsSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Eaphost
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EFS
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: embeddedmode
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EntAppSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EventLog
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EventSystem
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: fdPHost
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: FDResPub
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: FontCache
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: FrameServer
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: gpsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: hidserv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: HvHost
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: icssvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: IKEEXT
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: iphlpsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: KeyIso
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: KPSSVC
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: KtmRm
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LanmanServer
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LanmanWorkstation
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: lfsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LicenseManager
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: lltdsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: lmhosts
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LSM
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MapsBroker
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MpsSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MSDTC
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MSiSCSI
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: msiserver
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NcaSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NcbService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Netlogon
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Netman
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: netprofm
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NetSetupSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NetTcpPortSharing
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NgcCtnrSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NgcSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NlaSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: nsi
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: OctopusDeploy Tentacle
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PcaSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PerfHost
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PhoneSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: pla
VERBOSE: [2019-02-19 06:57:34Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PlugPlay
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PolicyAgent
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Power
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PrintNotify
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ProfSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: QWAVE
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RasAuto
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RasMan
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RdAgent
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RemoteAccess
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RemoteRegistry
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RmSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RpcEptMapper
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RpcLocator
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RpcSs
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RSoPProv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: sacsvr
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SamSs
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SCardSvr
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ScDeviceEnum
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Schedule
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SCPolicySvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: seclogon
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SENS
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SensorDataService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SensorService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SensrSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SessionEnv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SharedAccess
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ShellHWDetection
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: smphost
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SNMPTRAP
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Spooler
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: sppsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SSDPSRV
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SstpSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: StateRepository
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: stisvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: StorSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: svsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: swprv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SysMain
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SystemEventsBroker
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TabletInputService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TapiSrv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TermService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Themes
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TieringEngineService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: tiledatamodelsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TimeBrokerSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TrkWks
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TrustedInstaller
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: tzautoupdate
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UALSVC
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UevAgentService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UI0Detect
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UmRdpService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: upnphost
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UserManager
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UsoSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: VaultSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vds
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicguestinterface
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicheartbeat
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmickvpexchange
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicrdv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicshutdown
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmictimesync
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicvmsession
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicvss
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: VSS
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: W32Time
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WalletService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WbioSrvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Wcmsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WdiServiceHost
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WdiSystemHost
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WdNisSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Wecsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WEPHOSTSVC
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wercplsupport
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WerSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WiaRpc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WinDefend
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WindowsAzureGuestAgent
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WindowsAzureNetAgentSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WindowsAzureTelemetryService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WinHttpAutoProxySvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Winmgmt
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WinRM
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wisvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wlidsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wmiApSrv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WPDBusEnum
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WpnService
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WSearch
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wuauserv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wudfsvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: XblAuthManager
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: XblGameSave
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Database Engine feature not detected.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Full-text feature.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Full-text feature not detected.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Reporting Services feature.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Reporting Services feature not detected.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Analysis Services feature.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Analysis Services feature not detected.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Integration Services feature.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Integration Services feature not detected.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Documentation Components feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Documentation Components feature not detected.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Connectivity Tools feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Connectivity Tools feature not 
detected.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Connectivity Backwards 
Compatibility Tools feature (HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Connectivity Backwards Compatibility 
Tools feature not detected.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Tools SDK feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Tools SDK feature not detected.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Master Data Services (MDS) feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] 'Master Data Services (MDS) feature not 
detected.'
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Features found:
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Test   
  ]  [[SqlSetup]SQLServerSetup]  in 2.0780 seconds.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [[SqlSetup]SQLServerSetup]
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Using path 
'\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\sql\2016\setup.e
xe'.
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AJRouter
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ALG
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppIDSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Appinfo
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppMgmt
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppReadiness
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppVClient
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppXSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AudioEndpointBuilder
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Audiosrv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AxInstSV
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BDESVC
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BFE
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BITS
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BrokerInfrastructure
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: bthserv
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CDPSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CertPropSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ClipSVC
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: COMSysApp
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CoreMessagingRegistrar
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CryptSvc
VERBOSE: [2019-02-19 06:57:34Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CscService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DcomLaunch
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DcpSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: defragsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DeviceAssociationService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DeviceInstall
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DevQueryBroker
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Dhcp
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: 
diagnosticshub.standardcollector.service
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DiagTrack
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DmEnrollmentSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: dmwappushservice
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Dnscache
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: dot3svc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DPS
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DsmSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DsSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Eaphost
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EFS
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: embeddedmode
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EntAppSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EventLog
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EventSystem
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: fdPHost
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: FDResPub
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: FontCache
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: FrameServer
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: gpsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: hidserv
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: HvHost
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: icssvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: IKEEXT
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: iphlpsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: KeyIso
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: KPSSVC
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: KtmRm
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LanmanServer
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LanmanWorkstation
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: lfsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LicenseManager
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: lltdsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: lmhosts
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LSM
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MapsBroker
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MpsSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MSDTC
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MSiSCSI
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: msiserver
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NcaSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NcbService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Netlogon
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Netman
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: netprofm
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NetSetupSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NetTcpPortSharing
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NgcCtnrSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NgcSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NlaSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: nsi
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: OctopusDeploy Tentacle
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PcaSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PerfHost
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PhoneSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: pla
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PlugPlay
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PolicyAgent
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Power
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PrintNotify
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ProfSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: QWAVE
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RasAuto
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RasMan
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RdAgent
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RemoteAccess
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RemoteRegistry
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RmSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RpcEptMapper
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RpcLocator
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RpcSs
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RSoPProv
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: sacsvr
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SamSs
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SCardSvr
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ScDeviceEnum
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Schedule
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SCPolicySvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: seclogon
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SENS
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SensorDataService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SensorService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SensrSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SessionEnv
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SharedAccess
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ShellHWDetection
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: smphost
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SNMPTRAP
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Spooler
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: sppsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SSDPSRV
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SstpSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: StateRepository
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: stisvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: StorSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: svsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: swprv
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SysMain
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SystemEventsBroker
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TabletInputService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TapiSrv
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TermService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Themes
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TieringEngineService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: tiledatamodelsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TimeBrokerSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TrkWks
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TrustedInstaller
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: tzautoupdate
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UALSVC
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UevAgentService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UI0Detect
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UmRdpService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: upnphost
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UserManager
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UsoSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: VaultSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vds
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicguestinterface
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicheartbeat
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmickvpexchange
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicrdv
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicshutdown
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmictimesync
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicvmsession
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicvss
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: VSS
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: W32Time
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WalletService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WbioSrvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Wcmsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WdiServiceHost
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WdiSystemHost
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WdNisSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Wecsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WEPHOSTSVC
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wercplsupport
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WerSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WiaRpc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WinDefend
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WindowsAzureGuestAgent
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WindowsAzureNetAgentSvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WindowsAzureTelemetryService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WinHttpAutoProxySvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Winmgmt
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WinRM
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wisvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wlidsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wmiApSrv
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WPDBusEnum
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WpnService
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WSearch
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wuauserv
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wudfsvc
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: XblAuthManager
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: XblGameSave
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Database Engine feature not detected.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Full-text feature.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Full-text feature not detected.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Reporting Services feature.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Reporting Services feature not detected.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Analysis Services feature.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Analysis Services feature not detected.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Integration Services feature.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Integration Services feature not detected.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Documentation Components feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Documentation Components feature not detected.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Connectivity Tools feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Connectivity Tools feature not 
detected.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Connectivity Backwards 
Compatibility Tools feature (HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Connectivity Backwards Compatibility 
Tools feature not detected.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Tools SDK feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Tools SDK feature not detected.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Master Data Services (MDS) feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] 'Master Data Services (MDS) feature not 
detected.'
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Robocopy is copying media from source 
'\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\sql\2016' to 
destination 
'C:\windows\system32\config\systemprofile\AppData\Local\Temp\2016'.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Robocopy is using unbuffered I/O.
VERBOSE: [2019-02-19 06:57:35Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Robocopy is started with the following 
arguments: 
"\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\sql\2016" 
"C:\windows\system32\config\systemprofile\AppData\Local\Temp\2016" /e /purge /J
 /njh /njs /ndl /nc /ns /nfl
VERBOSE: [2019-02-19 07:05:56Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Robocopy copied files successfully
VERBOSE: [2019-02-19 07:05:56Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 07:05:58Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Using path 
'C:\windows\system32\config\systemprofile\AppData\Local\Temp\2016\setup.exe'.
VERBOSE: [2019-02-19 07:05:58Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Starting setup using arguments: 
/ACTION="Install" /AGTSVCACCOUNT="ai-test\ai-at25-sqlagent_sa" 
/SQLSVCPASSWORD="********" /AGTSVCSTARTUPTYPE="Automatic" /QUIET="True" 
/SECURITYMODE="SQL" /INSTALLSHAREDWOWDIR="C:\Program Files (x86)\Microsoft SQL 
Server" /AGTSVCPASSWORD="********" /INSTANCENAME="MSSQLSERVER" 
/UPDATESOURCE=".\Updates" /INSTANCEDIR="C:\AltinnSQL\MSSQL" 
/SQLSYSADMINACCOUNTS="BUILTIN\Administrators" 
/SQLSVCACCOUNT="ai-test\ai-at25-sqlserv_sa" 
/IACCEPTSQLSERVERLICENSETERMS="True" 
/FEATURES=SQLENGINE,REPLICATION,CONN,BC,BOL /INSTALLSHAREDDIR="C:\Program 
Files\Microsoft SQL Server" /UPDATEENABLED="True" /SAPWD="********"
VERBOSE: [2019-02-19 07:05:59Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Started the process with id 1816 using the path
 'C:\windows\system32\config\systemprofile\AppData\Local\Temp\2016\setup.exe', 
and with a timeout value of 7200 seconds.
VERBOSE: [2019-02-19 07:06:00Z] [WARNING] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Setup exited with code '-1073741515'. Please 
see the 'Summary.txt' log file in the 'Setup Bootstrap\Log' folder.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Rebooting target node.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Using path 
'\\stagec02ef3abff2c4c068e3.file.core.windows.net\installfiles\sql\2016\setup.e
xe'.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AJRouter
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ALG
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppIDSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Appinfo
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppMgmt
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppReadiness
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppVClient
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AppXSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AudioEndpointBuilder
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Audiosrv
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: AxInstSV
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BDESVC
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BFE
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BITS
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: BrokerInfrastructure
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: bthserv
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CDPSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CertPropSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ClipSVC
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: COMSysApp
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CoreMessagingRegistrar
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CryptSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: CscService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DcomLaunch
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DcpSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: defragsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DeviceAssociationService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DeviceInstall
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DevQueryBroker
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Dhcp
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: 
diagnosticshub.standardcollector.service
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DiagTrack
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DmEnrollmentSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: dmwappushservice
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Dnscache
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: dot3svc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DPS
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DsmSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: DsSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Eaphost
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EFS
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: embeddedmode
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EntAppSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EventLog
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: EventSystem
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: fdPHost
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: FDResPub
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: FontCache
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: FrameServer
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: gpsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: hidserv
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: HvHost
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: icssvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: IKEEXT
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: iphlpsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: KeyIso
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: KPSSVC
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: KtmRm
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LanmanServer
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LanmanWorkstation
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: lfsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LicenseManager
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: lltdsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: lmhosts
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: LSM
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MapsBroker
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MpsSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MSDTC
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: MSiSCSI
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: msiserver
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NcaSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NcbService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Netlogon
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Netman
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: netprofm
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NetSetupSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NetTcpPortSharing
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NgcCtnrSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NgcSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: NlaSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: nsi
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: OctopusDeploy Tentacle
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PcaSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PerfHost
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PhoneSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: pla
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PlugPlay
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PolicyAgent
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Power
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: PrintNotify
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ProfSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: QWAVE
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RasAuto
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RasMan
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RdAgent
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RemoteAccess
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RemoteRegistry
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RmSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RpcEptMapper
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RpcLocator
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RpcSs
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: RSoPProv
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: sacsvr
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SamSs
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SCardSvr
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ScDeviceEnum
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Schedule
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SCPolicySvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: seclogon
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SENS
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SensorDataService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SensorService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SensrSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SessionEnv
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SharedAccess
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: ShellHWDetection
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: smphost
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SNMPTRAP
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Spooler
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: sppsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SSDPSRV
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SstpSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: StateRepository
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: stisvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: StorSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: svsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: swprv
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SysMain
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: SystemEventsBroker
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TabletInputService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TapiSrv
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TermService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Themes
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TieringEngineService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: tiledatamodelsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TimeBrokerSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TrkWks
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: TrustedInstaller
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: tzautoupdate
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UALSVC
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UevAgentService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UI0Detect
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UmRdpService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: upnphost
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UserManager
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: UsoSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: VaultSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vds
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicguestinterface
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicheartbeat
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmickvpexchange
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicrdv
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicshutdown
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmictimesync
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicvmsession
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: vmicvss
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: VSS
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: W32Time
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WalletService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WbioSrvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Wcmsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WdiServiceHost
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WdiSystemHost
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WdNisSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Wecsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WEPHOSTSVC
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wercplsupport
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WerSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WiaRpc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WinDefend
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WindowsAzureGuestAgent
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WindowsAzureNetAgentSvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WindowsAzureTelemetryService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WinHttpAutoProxySvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: Winmgmt
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WinRM
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wisvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wlidsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wmiApSrv
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WPDBusEnum
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WpnService
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: WSearch
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wuauserv
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: wudfsvc
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: XblAuthManager
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Service: XblGameSave
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Database Engine feature not detected.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Full-text feature.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Full-text feature not detected.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Reporting Services feature.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Reporting Services feature not detected.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Analysis Services feature.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Analysis Services feature not detected.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Integration Services feature.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Integration Services feature not detected.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Documentation Components feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Documentation Components feature not detected.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Connectivity Tools feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Connectivity Tools feature not 
detected.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Connectivity Backwards 
Compatibility Tools feature (HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Connectivity Backwards Compatibility 
Tools feature not detected.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Client Tools SDK feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL 
Server\130\Tools\Setup\Client_Components_Full).
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Client Tools SDK feature not detected.
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Detecting Master Data Services (MDS) feature 
(HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\130\ConfigurationState).
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] 'Master Data Services (MDS) feature not 
detected.'
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Features found:
VERBOSE: [2019-02-19 07:06:00Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[SqlSetup]SQLServerSetup]  in 506.2930 seconds.
VERBOSE: [2019-02-19 07:06:01Z] [ERROR] PowerShell DSC resource MSFT_SqlSetup  
failed to execute Set-TargetResource functionality with error message: 
System.Exception: Test-TargetResource returned false after calling 
Set-TargetResource. 
ERBOSE: [2019-02-19 07:14:31Z] [ERROR] The SendConfigurationApply function did
 not succeed.
VERBOSE: [2019-02-19 07:14:31Z] [VERBOSE] Operation 'Invoke CimMethod' 
complete.
VERBOSE: [2019-02-19 07:14:31Z] [VERBOSE] Time taken for configuration job to 
complete is 1241.807 seconds
VERBOSE: [2019-02-19 07:14:32Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 07:14:32Z] Updating execution status 
(HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status)
VERBOSE: [2019-02-19 07:14:32Z] LCM state is PendingConfiguration
VERBOSE: [2019-02-19 07:15:32Z] DSC configuration completed.
VERBOSE: [2019-02-19 07:15:32Z] Resetting metaconfiguration...
VERBOSE: [2019-02-19 07:15:32Z] Restoring 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\DSCWork\SQLInstall.0\SQLI
nstall\localhost.meta.mof.bk...
VERBOSE: [2019-02-19 07:15:32Z] Executing Set-DscLocalConfigurationManager...
VERBOSE: [2019-02-19 07:15:32Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 07:15:33Z] [VERBOSE] Performing the operation 
"Start-DscConfiguration: SendMetaConfigurationApply" on target 
"MSFT_DSCLocalConfigurationManager".
VERBOSE: [2019-02-19 07:15:33Z] [VERBOSE] Perform operation 'Invoke CimMethod' 
with following parameters, ''methodName' = 
SendMetaConfigurationApply,'className' = 
MSFT_DSCLocalConfigurationManager,'namespaceName' = 
root/Microsoft/Windows/DesiredStateConfiguration'.
VERBOSE: [2019-02-19 07:15:33Z] [VERBOSE] An LCM method call arrived from 
computer at25-sbdb01 with user sid S-1-5-18.
VERBOSE: [2019-02-19 07:15:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]
VERBOSE: [2019-02-19 07:15:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  
Resource ]  [MSFT_DSCMetaConfiguration]
VERBOSE: [2019-02-19 07:15:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ Start  Set    
  ]  [MSFT_DSCMetaConfiguration]
VERBOSE: [2019-02-19 07:15:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [MSFT_DSCMetaConfiguration]  in 0.0150 seconds.
VERBOSE: [2019-02-19 07:15:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    
Resource ]  [MSFT_DSCMetaConfiguration]
VERBOSE: [2019-02-19 07:15:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]
VERBOSE: [2019-02-19 07:15:34Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]    in  0.0780 seconds.
VERBOSE: [2019-02-19 07:15:34Z] [VERBOSE] Operation 'Invoke CimMethod' 
complete.
VERBOSE: [2019-02-19 07:15:34Z] [VERBOSE] Set-DscLocalConfigurationManager 
finished in 0.267 seconds.
VERBOSE: [2019-02-19 07:15:36Z] Settings handler status to 'transitioning' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 07:15:36Z] Get-DscLocalConfigurationManager: 

ActionAfterReboot              : ContinueConfiguration

AgentId                        : FDCF95FA-3412-11E9-A80E-000D3A2CB987

AllowModuleOverWrite           : False

CertificateID                  : 68BB86ABC37F581F146C53EA35CC5CE351D4275D

ConfigurationDownloadManagers  : {}

ConfigurationID                : 

ConfigurationMode              : ApplyAndMonitor

ConfigurationModeFrequencyMins : 15

Credential                     : 

DebugMode                      : {NONE}

DownloadManagerCustomData      : 

DownloadManagerName            : 

LCMCompatibleVersions          : {1.0, 2.0}

LCMState                       : PendingConfiguration

LCMStateDetail                 : 

LCMVersion                     : 2.0

StatusRetentionTimeInDays      : 10

SignatureValidationPolicy      : NONE

SignatureValidations           : {}

MaximumDownloadSizeMB          : 500

PartialConfigurations          : 

RebootNodeIfNeeded             : True

RefreshFrequencyMins           : 30

RefreshMode                    : PUSH

ReportManagers                 : {}

ResourceModuleManagers         : {}

PSComputerName                 : 

VERBOSE: [2019-02-19 07:15:36Z] Settings handler status to 'error' 
(C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\Status\0.status)
VERBOSE: [2019-02-19 07:15:36Z] [MDS Telemetry] Invoking [Configuration][End] 
event for telemetry.[Status]: Failure [Message]: {

    "WindowsEditionId":  "ServerDatacenter",

    "ConfigScript":  "SQLInstall.ps1",

    "VMUUID":  "FA6D1415-1869-483F-AA8E-47E6FE333BB3",

    "AzureEnvironment":  "AzureCloud",

    "Cloud":  "Azure",

    "ConfigUrl":  
"https://stagec02ef3abff2c4c068e3.blob.core.windows.net/at25-stageartifacts/DSC
/SQLInstall.zip",

    "ConfigName":  "SQLInstall",

    "WmfVersion":  "5.1",

    "ErrorID":  "8"

}
VERBOSE: [2019-02-19 07:15:36Z] Getting handler execution status 
HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status ...
VERBOSE: [2019-02-19 07:15:36Z] Updating execution status 
(HKLM:\SOFTWARE\Microsoft\Azure\DSC\2.76.0.0\Status)
VERBOSE: [2019-02-19 07:15:36Z] Transitioning to Completed state ...
VERBOSE: [2019-02-19 07:15:36Z] Removing file 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\bin\..\DSCWork\ExtensionH
andler.Lock.0.dsc
VERBOSE: [2019-02-19 07:15:36Z] Removing file 
C:\Packages\Plugins\Microsoft.Powershell.DSC\2.76.0.0\bin\..\DSCWork\ExtensionH
andler.Lock.dsc
johlju commented 5 years ago

This time it failed with an error code, when you run before it looked like it installed successfully. Can you please look what the Summary.txt file says, why it failed?

VERBOSE: [2019-02-19 07:06:00Z] [WARNING] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Setup exited with code '-1073741515'. Please see the 'Summary.txt' log file in the 'Setup Bootstrap\Log' folder.
oyb1n-zz commented 5 years ago

Hmmm.. Weirdly enough there are no errors in the summary.txt file:

Overall summary:
  Final result:                  Passed
  Exit code (Decimal):           0
  Start time:                    2019-02-19 08:35:03
  End time:                      2019-02-19 08:42:02
  Requested action:              Install

Machine Properties:
  Machine name:                  at25-sbdb01
  Machine processor count:       8
  OS version:                    Microsoft Windows Server 2016 Datacenter (10.0.14393)
  OS service pack:               
  OS region:                     United States
  OS language:                   English (United States)
  OS architecture:               x64
  Process architecture:          64 Bit
  OS clustered:                  No

Product features discovered:
  Product              Instance             Instance ID                    Feature                                  Language             Edition              Version         Clustered  Configured

Package properties:
  Description:                   Microsoft SQL Server 2016 
  ProductName:                   SQL Server 2016
  Type:                          RTM
  Version:                       13
  Installation location:         C:\windows\TEMP\2016\x64\setup\
  Installation edition:          Enterprise

  Slipstream:                    True
  SP Level                       1
  Patch Level:                   13.1.4451.0

Product Update Status:
  Success: KB 3182545, KB 4040714

Product Updates Selected for Installation:
  Title:                         Microsoft SQL Server 2016  with SP1
  Knowledge Based Article:       KB 3182545
  Version:                       13.1.4001.0
  Architecture:                  x64
  Language:                      1033

  Title:                         SQL Server update
  Knowledge Based Article:       KB 4040714
  Version:                       13.1.4451.0
  Architecture:                  x64
  Language:                      All

  Update Source:                 Slipstream

User Input Settings:
  ACTION:                        Install
  ADDCURRENTUSERASSQLADMIN:      false
  AGTSVCACCOUNT:                 ai-test\ai-at25-sqlagent_sa
  AGTSVCPASSWORD:                *****
  AGTSVCSTARTUPTYPE:             Automatic
  ASBACKUPDIR:                   Backup
  ASCOLLATION:                   Latin1_General_CI_AS
  ASCONFIGDIR:                   Config
  ASDATADIR:                     Data
  ASLOGDIR:                      Log
  ASPROVIDERMSOLAP:              1
  ASSERVERMODE:                  MULTIDIMENSIONAL
  ASSVCACCOUNT:                  <empty>
  ASSVCPASSWORD:                 <empty>
  ASSVCSTARTUPTYPE:              Automatic
  ASSYSADMINACCOUNTS:            <empty>
  ASTELSVCACCT:                  <empty>
  ASTELSVCPASSWORD:              <empty>
  ASTELSVCSTARTUPTYPE:           0
  ASTEMPDIR:                     Temp
  BROWSERSVCSTARTUPTYPE:         Disabled
  CLTCTLRNAME:                   <empty>
  CLTRESULTDIR:                  <empty>
  CLTSTARTUPTYPE:                0
  CLTSVCACCOUNT:                 <empty>
  CLTSVCPASSWORD:                <empty>
  CLTWORKINGDIR:                 <empty>
  COMMFABRICENCRYPTION:          0
  COMMFABRICNETWORKLEVEL:        0
  COMMFABRICPORT:                0
  CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190219_083153\ConfigurationFile.ini
  CTLRSTARTUPTYPE:               0
  CTLRSVCACCOUNT:                <empty>
  CTLRSVCPASSWORD:               <empty>
  CTLRUSERS:                     <empty>
  ENABLERANU:                    false
  ENU:                           true
  EXTSVCACCOUNT:                 <empty>
  EXTSVCPASSWORD:                <empty>
  FEATURES:                      SQLENGINE, REPLICATION, CONN, BC, BOL
  FILESTREAMLEVEL:               0
  FILESTREAMSHARENAME:           <empty>
  FTSVCACCOUNT:                  <empty>
  FTSVCPASSWORD:                 <empty>
  HELP:                          false
  IACCEPTROPENLICENSETERMS:      false
  IACCEPTSQLSERVERLICENSETERMS:  true
  INDICATEPROGRESS:              false
  INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
  INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
  INSTALLSQLDATADIR:             <empty>
  INSTANCEDIR:                   C:\AltinnSQL\MSSQL
  INSTANCEID:                    MSSQLSERVER
  INSTANCENAME:                  MSSQLSERVER
  ISSVCACCOUNT:                  NT AUTHORITY\Network Service
  ISSVCPASSWORD:                 <empty>
  ISSVCSTARTUPTYPE:              Automatic
  ISTELSVCACCT:                  <empty>
  ISTELSVCPASSWORD:              <empty>
  ISTELSVCSTARTUPTYPE:           0
  MATRIXCMBRICKCOMMPORT:         0
  MATRIXCMSERVERNAME:            <empty>
  MATRIXNAME:                    <empty>
  MRCACHEDIRECTORY:              
  NPENABLED:                     0
  PBDMSSVCACCOUNT:               <empty>
  PBDMSSVCPASSWORD:              <empty>
  PBDMSSVCSTARTUPTYPE:           0
  PBENGSVCACCOUNT:               <empty>
  PBENGSVCPASSWORD:              <empty>
  PBENGSVCSTARTUPTYPE:           0
  PBPORTRANGE:                   <empty>
  PBSCALEOUT:                    false
  PID:                           *****
  QUIET:                         true
  QUIETSIMPLE:                   false
  ROLE:                          
  RSINSTALLMODE:                 DefaultNativeMode
  RSSHPINSTALLMODE:              DefaultSharePointMode
  RSSVCACCOUNT:                  <empty>
  RSSVCPASSWORD:                 <empty>
  RSSVCSTARTUPTYPE:              Automatic
  SAPWD:                         *****
  SECURITYMODE:                  SQL
  SQLBACKUPDIR:                  <empty>
  SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
  SQLSVCACCOUNT:                 ai-test\ai-at25-sqlserv_sa
  SQLSVCINSTANTFILEINIT:         false
  SQLSVCPASSWORD:                *****
  SQLSVCSTARTUPTYPE:             Automatic
  SQLSYSADMINACCOUNTS:           BUILTIN\Administrators
  SQLTELSVCACCT:                 NT Service\SQLTELEMETRY
  SQLTELSVCPASSWORD:             <empty>
  SQLTELSVCSTARTUPTYPE:          Automatic
  SQLTEMPDBDIR:                  <empty>
  SQLTEMPDBFILECOUNT:            8
  SQLTEMPDBFILEGROWTH:           64
  SQLTEMPDBFILESIZE:             8
  SQLTEMPDBLOGDIR:               <empty>
  SQLTEMPDBLOGFILEGROWTH:        64
  SQLTEMPDBLOGFILESIZE:          8
  SQLUSERDBDIR:                  <empty>
  SQLUSERDBLOGDIR:               <empty>
  SUPPRESSPRIVACYSTATEMENTNOTICE: false
  TCPENABLED:                    1
  UIMODE:                        Normal
  UpdateEnabled:                 true
  UpdateSource:                  Slipstream
  USEMICROSOFTUPDATE:            false
  X86:                           false

  Configuration file:            C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190219_083153\ConfigurationFile.ini

Detailed results:
  Feature:                       Client Tools Connectivity
  Status:                        Passed

  Feature:                       Client Tools Backwards Compatibility
  Status:                        Passed

  Feature:                       Database Engine Services
  Status:                        Passed

  Feature:                       SQL Server Replication
  Status:                        Passed

  Feature:                       SQL Browser
  Status:                        Passed

  Feature:                       Documentation Components
  Status:                        Passed

  Feature:                       SQL Writer
  Status:                        Passed

Rules with failures:

Global rules:

Scenario specific rules:

Rules report file:               C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190219_083153\SystemConfigurationCheck_Report.htm

Checked the System Configuration check report, everything is either 'Not applicable' or 'passed'.

johlju commented 5 years ago

I think the configuration ran again automatically after you posted the initial log. So you see the summary.txt from a run that was successful.

The start time of the summary.txt is 2019-02-19 08:35:03. But the time stamp in the error log is 2019-02-19 07:06:00Z.

Can you run it again on a clean server and if it fails look at the summary.txt file?

oyb1n-zz commented 5 years ago

I believe it must be some time difference between the SQL log and the dsc extension log here. These are my outputs from build to an empty resource group / new server: Start: 2019-02-25T09:05:52.0532167Z ##[command]. 'D:\agent2\_work\61\s\DeployResourceGroup.ps1' -EnvironmentName at25 -UploadArtifacts

Stop: 2019-02-25T10:45:25.7784228Z 11:45:24 - At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details.

From the DSC log:

VERBOSE: [2019-02-25 09:36:52Z] [VERBOSE] [at25-sbdb01]:                       
     [[SqlSetup]SQLServerSetup] Features found:
VERBOSE: [2019-02-25 09:36:53Z] [VERBOSE] [at25-sbdb01]: LCM:  [ End    Set    
  ]  [[SqlSetup]SQLServerSetup]  in 1004.5190 seconds.
VERBOSE: [2019-02-25 09:36:53Z] [ERROR] PowerShell DSC resource MSFT_SqlSetup  
failed to execute Set-TargetResource functionality with error message: 
System.Exception: Test-TargetResource returned false after calling 
Set-TargetResource. 

VERBOSE: [2019-02-25 09:48:42Z] [MDS Telemetry] Invoking [Configuration][End] 
event for telemetry.[Status]: Failure [Message]: {    "ConfigName":  "SQLInstall",

    "WmfVersion":  "5.1",

    "ErrorID":  "8"

}

And the summary.txt:

Overall summary:
  Final result:                  Passed
  Exit code (Decimal):           0
  Start time:                    2019-02-25 11:22:00
  End time:                      2019-02-25 11:31:04
  Requested action:              Install

Machine Properties:
  Machine name:                  at25-sbdb01
  Machine processor count:       8
  OS version:                    Microsoft Windows Server 2016 Datacenter (10.0.14393)
  OS service pack:               
  OS region:                     United States
  OS language:                   English (United States)
  OS architecture:               x64
  Process architecture:          64 Bit
  OS clustered:                  No

Product features discovered:
  Product              Instance             Instance ID                    Feature                                  Language             Edition              Version         Clustered  Configured

Package properties:
  Description:                   Microsoft SQL Server 2016 
  ProductName:                   SQL Server 2016
  Type:                          RTM
  Version:                       13
  Installation location:         C:\windows\TEMP\2016\x64\setup\
  Installation edition:          Enterprise

  Slipstream:                    True
  SP Level                       1
  Patch Level:                   13.1.4451.0

Product Update Status:
  Success: KB 3182545, KB 4040714

Product Updates Selected for Installation:
  Title:                         Microsoft SQL Server 2016  with SP1
  Knowledge Based Article:       KB 3182545
  Version:                       13.1.4001.0
  Architecture:                  x64
  Language:                      1033

  Title:                         SQL Server update
  Knowledge Based Article:       KB 4040714
  Version:                       13.1.4451.0
  Architecture:                  x64
  Language:                      All

  Update Source:                 Slipstream

User Input Settings:
  ACTION:                        Install
  ADDCURRENTUSERASSQLADMIN:      false
  AGTSVCACCOUNT:                 ai-test\ai-at25-sqlagent_sa
  AGTSVCPASSWORD:                *****
  AGTSVCSTARTUPTYPE:             Automatic
  ASBACKUPDIR:                   Backup
  ASCOLLATION:                   Latin1_General_CI_AS
  ASCONFIGDIR:                   Config
  ASDATADIR:                     Data
  ASLOGDIR:                      Log
  ASPROVIDERMSOLAP:              1
  ASSERVERMODE:                  MULTIDIMENSIONAL
  ASSVCACCOUNT:                  <empty>
  ASSVCPASSWORD:                 <empty>
  ASSVCSTARTUPTYPE:              Automatic
  ASSYSADMINACCOUNTS:            <empty>
  ASTELSVCACCT:                  <empty>
  ASTELSVCPASSWORD:              <empty>
  ASTELSVCSTARTUPTYPE:           0
  ASTEMPDIR:                     Temp
  BROWSERSVCSTARTUPTYPE:         Disabled
  CLTCTLRNAME:                   <empty>
  CLTRESULTDIR:                  <empty>
  CLTSTARTUPTYPE:                0
  CLTSVCACCOUNT:                 <empty>
  CLTSVCPASSWORD:                <empty>
  CLTWORKINGDIR:                 <empty>
  COMMFABRICENCRYPTION:          0
  COMMFABRICNETWORKLEVEL:        0
  COMMFABRICPORT:                0
  CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190225_111739\ConfigurationFile.ini
  CTLRSTARTUPTYPE:               0
  CTLRSVCACCOUNT:                <empty>
  CTLRSVCPASSWORD:               <empty>
  CTLRUSERS:                     <empty>
  ENABLERANU:                    false
  ENU:                           true
  EXTSVCACCOUNT:                 <empty>
  EXTSVCPASSWORD:                <empty>
  FEATURES:                      SQLENGINE, REPLICATION, CONN, BC, BOL
  FILESTREAMLEVEL:               0
  FILESTREAMSHARENAME:           <empty>
  FTSVCACCOUNT:                  <empty>
  FTSVCPASSWORD:                 <empty>
  HELP:                          false
  IACCEPTROPENLICENSETERMS:      false
  IACCEPTSQLSERVERLICENSETERMS:  true
  INDICATEPROGRESS:              false
  INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
  INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
  INSTALLSQLDATADIR:             <empty>
  INSTANCEDIR:                   C:\AltinnSQL\MSSQL
  INSTANCEID:                    MSSQLSERVER
  INSTANCENAME:                  MSSQLSERVER
  ISSVCACCOUNT:                  NT AUTHORITY\Network Service
  ISSVCPASSWORD:                 <empty>
  ISSVCSTARTUPTYPE:              Automatic
  ISTELSVCACCT:                  <empty>
  ISTELSVCPASSWORD:              <empty>
  ISTELSVCSTARTUPTYPE:           0
  MATRIXCMBRICKCOMMPORT:         0
  MATRIXCMSERVERNAME:            <empty>
  MATRIXNAME:                    <empty>
  MRCACHEDIRECTORY:              
  NPENABLED:                     0
  PBDMSSVCACCOUNT:               <empty>
  PBDMSSVCPASSWORD:              <empty>
  PBDMSSVCSTARTUPTYPE:           0
  PBENGSVCACCOUNT:               <empty>
  PBENGSVCPASSWORD:              <empty>
  PBENGSVCSTARTUPTYPE:           0
  PBPORTRANGE:                   <empty>
  PBSCALEOUT:                    false
  PID:                           *****
  QUIET:                         true
  QUIETSIMPLE:                   false
  ROLE:                          
  RSINSTALLMODE:                 DefaultNativeMode
  RSSHPINSTALLMODE:              DefaultSharePointMode
  RSSVCACCOUNT:                  <empty>
  RSSVCPASSWORD:                 <empty>
  RSSVCSTARTUPTYPE:              Automatic
  SAPWD:                         *****
  SECURITYMODE:                  SQL
  SQLBACKUPDIR:                  <empty>
  SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
  SQLSVCACCOUNT:                 ai-test\ai-at25-sqlserv_sa
  SQLSVCINSTANTFILEINIT:         false
  SQLSVCPASSWORD:                *****
  SQLSVCSTARTUPTYPE:             Automatic
  SQLSYSADMINACCOUNTS:           BUILTIN\Administrators
  SQLTELSVCACCT:                 NT Service\SQLTELEMETRY
  SQLTELSVCPASSWORD:             <empty>
  SQLTELSVCSTARTUPTYPE:          Automatic
  SQLTEMPDBDIR:                  <empty>
  SQLTEMPDBFILECOUNT:            8
  SQLTEMPDBFILEGROWTH:           64
  SQLTEMPDBFILESIZE:             8
  SQLTEMPDBLOGDIR:               <empty>
  SQLTEMPDBLOGFILEGROWTH:        64
  SQLTEMPDBLOGFILESIZE:          8
  SQLUSERDBDIR:                  <empty>
  SQLUSERDBLOGDIR:               <empty>
  SUPPRESSPRIVACYSTATEMENTNOTICE: false
  TCPENABLED:                    1
  UIMODE:                        Normal
  UpdateEnabled:                 true
  UpdateSource:                  Slipstream
  USEMICROSOFTUPDATE:            false
  X86:                           false

  Configuration file:            C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190225_111739\ConfigurationFile.ini

Detailed results:
  Feature:                       Client Tools Connectivity
  Status:                        Passed

  Feature:                       Client Tools Backwards Compatibility
  Status:                        Passed

  Feature:                       Database Engine Services
  Status:                        Passed

  Feature:                       SQL Server Replication
  Status:                        Passed

  Feature:                       SQL Browser
  Status:                        Passed

  Feature:                       Documentation Components
  Status:                        Passed

  Feature:                       SQL Writer
  Status:                        Passed

Rules with failures:

Global rules:

Scenario specific rules:

Rules report file:               C:\Program Files\Microsoft SQL Server\130\Setup Bootstrap\Log\20190225_111739\SystemConfigurationCheck_Report.htm
stale[bot] commented 4 years ago

This issue has been automatically marked as stale because it has not had activity from the community in the last 30 days. It will be closed if no further activity occurs within 10 days. If the issue is labelled with any of the work labels (e.g bug, enhancement, documentation, or tests) then the issue will not auto-close.

johlju commented 4 years ago

@oyb1n did you get this sorted why the setup fails with the error code?

oyb1n-zz commented 4 years ago

@johlju sorry, haven't really tried to fix this, as the second run through with test-resource returns ok. We have to do double deployments anyway, as our Sharepoint servers times out with dsc aswell.

stale[bot] commented 4 years ago

This issue has been automatically marked as stale because it has not had activity from the community in the last 30 days. It will be closed if no further activity occurs within 10 days. If the issue is labelled with any of the work labels (e.g bug, enhancement, documentation, or tests) then the issue will not auto-close.

stale[bot] commented 4 years ago

This issue has been automatically closed because it is has not had activity from the community in the last 40 days.