Microsoft SQL Server stuck at "Install_SQLSupport_CPU64_Action"

kjthegm6  于 5个月前  发布在  SQL Server
关注(0)|答案(2)|浏览(64)

While installing SQL Server 2017 Developer Edition, I got stuck at "Install_SQLSupport_CPU64_Action", this happened to me for the second time, once at work and once at home.

After searching online I found no solution.

dnph8jn4

dnph8jn41#

The solution: You will need to browse to this installation path: C:\SQLServer2017Media\<YOUR_SQL_ENU>\1033_ENU_LP\x64\Setup

Then while the setup is stuck at “Install_SQLSupport_CPU64_Action” run SQLSUPPORT.msi

And follow the installation procedure.

Once installed, run the following command in cmd:

taskkill /F /FI "SERVICES eq msiserver"

The SQL Server setup will continue and succeed.

Edit:

2019 : C:\SQL2019...

2022 : C:\SQL2022\Developer_ENU\1033_ENU_LP\x64\Setup

if the error code is 0x851a001a, then you need to change the sector size of the hard drives. Here is the guideline for that.

https://learn.microsoft.com/en-us/troubleshoot/sql/admin/troubleshoot-os-4kb-disk-sector-size

fcipmucu

fcipmucu2#

I had this issue when installing sql server 2016, the taskkill solution not work for me. Therefore, I tried do uninstallation for SQL Server 2012 Native Client, and install the one in the setup\x64\sqlncli.msi and reinstall the sql server again, and no more issue anymore.

相关问题