Deployment Solution

 View Only
  • 1.  SQL Server 2014 correct triggers

    Posted Aug 04, 2016 02:22 AM

    Hi,

     

    I was task by my company to create a package for SQL Server 2014 Developer edition, was able to successfully install it using command prompts and using a ConfigurationFile.ini. But when I was testing the command line using Quick Delivery It always fails can anyone help me with the correct triggers or command line?

    Please see command combinations below.

     

    Please see attached log files and command combinations below, maybe someone can give an idea what I am doing wrong. Thanks!

     

    "setup.exe" /q /ConfigurationFile=ConfigurationFile.ini

    Error code: -2147024894

    "MS SQL Server 2014 Developer Edition\setup.exe" /Q ConfigurationFile="MS SQL Server 2014 Developer Edition\ConfigurationFile.ini"

    Error code: -2067529716

    "MS SQL Server 2014 Developer Edition\setup.exe" /Q ConfigurationFile "MS SQL Server 2014 Developer Edition\ConfigurationFile.ini"

    Error code: -2067529716

    "MS SQL Server 2014 Developer Edition\setup.exe" /Q ConfigurationFile=ConfigurationFile.ini

    Error code: -2067529716

    "MS SQL Server 2014 Developer Edition\setup.exe" /Q "MS SQL Server 2014 Developer Edition\ConfigurationFile.ini"

    Error code: -2067529716

    "MS SQL Server 2014 Developer Edition\setup.exe" "/ConfigurationFile=ConfigurationFile.ini"

    Error code: -2067529716

    "MS SQL Server 2014 Developer Edition\setup.exe" /q /UnattendedFile "ConfigurationFile.ini"

    Error code: -2067529716

    "MS SQL Server 2014 Developer Edition\setup.exe" /q /UnattendedFile "C:\Program Files\Altiris\Altiris Agent\Agents\SoftwareManagement\Software Delivery\{5F9CA171-0E5C-40CB-A59A-2D6875C979FB}\cache\MS SQL Server 2014 Developer Edition\ConfigurationFile.ini"

    Error code: -2067529716

    "MS SQL Server 2014 Developer Edition\setup.exe" /q /IACCEPTSQLSERVERLICENSETERMS

    Error code: -2067529716

    Attachment(s)

    txt
    Agent.txt   65 KB 1 version
    txt
    Agent1.txt   100 KB 1 version


  • 2.  RE: SQL Server 2014 correct triggers
    Best Answer

    Posted Aug 05, 2016 12:47 PM

    I'd do this as a Managed Software Delivery Policy with an Alternative Package Download Location under Advanced of something like:

    c:\support\MS SQL Server 2014 Developer Edition

    and then command line of

    setup.exe /ConfigurationFile=c:\support\MS SQL Server 2014 Developer Edition\ConfigurationFile.INI

    The -2067529716 error translates as 0x84C4000C, you might need to check the SQL install logs for it.



  • 3.  RE: SQL Server 2014 correct triggers

    Posted Aug 12, 2016 12:44 AM

    Thanks!