Hello,
Trying to slipstream CU1 to SQL2014SP1 (enterprise iso downloaded from microsoft). Files were extracted from iso and copied to UNC share. SQLServer2014-KB3067839-x64.exe downloaded and copied into "Updates" folder within the main folder of the same UNC path.
Started
Setup.exe /ACTION=Install /UPDATEENABLED=TRUE /UPDATESOURCE=UNCPath\Updates
Used the gui to setup configurationfile.ini file
edited the ini file to comment UIMODE
Notes:
UpdateEnabled is set to True in the ini file as well as the source points to UNC path
FEATURES=SQLENGINE,CONN,SSMS,ADV_SSMS
created cmd file:
@echo off
@if [%1]==[] (SET /P sqlpwd=Enter service account password:) ELSE (SET sqlpwd=%1)
@if [%2]==[] (SET /P sapwd=Enter sa password:) ELSE (SET sapwd=%2)
%~dp0Setup.exe /ACTION=Install /CONFIGURATIONFILE=%~dp0ConfigurationFileVDI.INI /SQLSVCPASSWORD="%sqlpwd%" /AGTSVCPASSWORD="%sqlpwd%" /SAPWD=%sapwd% /QS /IACCEPTSQLSERVERLICENSETERMS
Tried many different combinations, changing action to upgrade, copying sources locally instead of UNC path, run as administrator, specifying options on the command line instead of the ini file and they all failed with the same error 1642. The same batch file succeeds as soon as updateenabled is changed to false but the instance is SP1 not CU1. Using the GUI also fails with the same error when updateenabled is selected
Work around is to deploy the CU1 as next step in the batch file:
%~dp0Updates\SQLServer2014-KB3067839-x64.exe /ACTION=PATCH /ALLINSTANCES /IACCEPTSQLSERVERLICENSETERMS /QUIETSIMPLE
This works just fine, but I was trying to create a source where future updates can be copied to Updates share when approved. Any help or direction would be appreciated.
Errors reported in bootstrap log:
Final result: Failed: see details below
Exit code (Decimal): -2068052374
Requested action: Install
....
Product Updates Selected for Installation:
Title: Microsoft SQL Server 2014 with SP1
Knowledge Based Article: KB 3058865
Version: 12.1.4100.0
Architecture: x64
Language: 1033
Title: Hotfix Pack
Knowledge Based Article: KB 3067839
Version: 12.1.4416.0
Architecture: x64
Language: All
Update Source: Slipstream
....
Detailed results:
Feature: Management Tools - Complete
Status: Failed: see logs for details
Reason for failure: An error occurred for a dependency of the feature causing the setup process for the feature to fail.
Next Step: Use the following information to resolve the error, and then try the setup process again.
Component name: SQL Server Common Files
Component error code: 1642
Component log file: C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150701_091833\sql_common_core_Cpu64_1.log
Error description: The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version
of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.
Error help link:
http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.4416.0&EvtType=sql_common_core.msi%400x162A16FE%400x1642
Feature: Client Tools Connectivity
Status: Failed: see logs for details
Reason for failure: An error occurred for a dependency of the feature causing the setup process for the feature to fail.
Next Step: Use the following information to resolve the error, and then try the setup process again.
Component name: SQL Server Common Files
Component error code: 1642
Component log file: C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150701_091833\sql_common_core_Cpu64_1.log
Error description: The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version
of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.
Error help link:
http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.4416.0&EvtType=sql_common_core.msi%400x162A16FE%400x1642
Feature: Management Tools - Basic
Status: Failed: see logs for details
Reason for failure: An error occurred for a dependency of the feature causing the setup process for the feature to fail.
Next Step: Use the following information to resolve the error, and then try the setup process again.
Component name: SQL Server Common Files
Component error code: 1642
Component log file: C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150701_091833\sql_common_core_Cpu64_1.log
Error description: The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version
of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.
Error help link:
http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.4416.0&EvtType=sql_common_core.msi%400x162A16FE%400x1642
Feature: Database Engine Services
Status: Failed: see logs for details
Reason for failure: An error occurred for a dependency of the feature causing the setup process for the feature to fail.
Next Step: Use the following information to resolve the error, and then try the setup process again.
Component name: SQL Server Common Files
Component error code: 1642
Component log file: C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150701_091833\sql_common_core_Cpu64_1.log
Error description: The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version
of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.
Error help link:
http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.4416.0&EvtType=sql_common_core.msi%400x162A16FE%400x1642
C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150701_091833\sql_common_core_Cpu64_1.log
MSI (s) (B4:30) [09:21:44:866]: Product: SQL Server 2014 Common Files - Update '{91E61CBF-5FEA-4F9B-A696-EA4A1259225F}' could not be installed. Error code 1642. Additional information is available in the log file C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150701_091833\sql_common_core_Cpu64_1.log.
MSI (s) (B4:30) [09:21:44:868]: Windows Installer installed an update. Product Name: SQL Server 2014 Common Files. Product Version: 12.0.2000.8. Product Language: 1033. Manufacturer: Microsoft Corporation. Update Name: {91E61CBF-5FEA-4F9B-A696-EA4A1259225F}. Installation success or error status: 1642.
MSI (s) (B4:30) [09:21:44:869]: Note: 1: 1708
MSI (s) (B4:30) [09:21:44:869]: Product: SQL Server 2014 Common Files -- Installation failed.
MSI (s) (B4:30) [09:21:44:869]: Windows Installer installed the product. Product Name: SQL Server 2014 Common Files. Product Version: 12.0.2000.8. Product Language: 1033. Manufacturer: Microsoft Corporation. Installation success or error status: 1642.
MSI (s) (B4:30) [09:21:44:899]: Attempting to delete file C:\Windows\Installer\9b31570.msp
MSI (s) (B4:30) [09:21:44:916]: MainEngineThread is returning 1642
MSI (s) (B4:C4) [09:21:44:916]: No System Restore sequence number for this installation.
The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have
the correct upgrade.
...
MSI (c) (E4:6C) [09:21:44:920]: MainEngineThread is returning 1642
Thanks for looking,
G