Pattaphon
Pattaphon

Reputation: 51

Microsoft SQL Server Management Studio Setup Blocked

I have installed SQL Server 2018 and want to install the Microsoft SQL Server Management Studio. The followinng problem occcurs during the installation of SSMS.

Setup Blocked Something has blocked setup from continuing

Click here for the log file

SSMS can only be upgraded by installing the package of the matching language. Please use the matching version of the installer, or uninstall the current version of SSMS and run SSMS setup again

I have manually deleted files under C:\Program Files (x86)\Microsoft SQL Server\140\Tools

and have restarted the computer many times.

The same problem still occurs.

How should I do to solve this problem? Please help me.

Upvotes: 5

Views: 18838

Answers (5)

smdhkv
smdhkv

Reputation: 187

  1. Ctrl + R or Command Prompt : %temp
  2. Open command prompt as administrator and run below command
  3. reg DELETE "HKLM\SOFTWARE\WOW6432Node\Microsoft\Microsoft SQL Server Management Studio" /reg:32
  4. Run install with administrator rights.
  5. If it's not working then restart your pc and try again

Upvotes: 0

MaHo
MaHo

Reputation: 83

If you have this issue when you want to update SSMS then do these steps:

  1. Open CMD as administrator and run this command

    reg DELETE “HKLM\SOFTWARE\WOW6432Node\Microsoft\Microsoft SQL Server Management Studio” /reg:32
    
  2. Restart your PC. It is important to restart your PC otherwise it will not work.

  3. Run the setup file again and follow the instruction as usual.

You are done!

Upvotes: 2

Jana
Jana

Reputation: 1

https://support.threattracksecurity.com/support/solutions/articles/1000070783-msi-error-1618-another-installation-is-already-in-progress-during-installation-uninstallation

I followed the above recommendation. I killed the existing MSIExec.exe and then ran the installation, it worked.

Upvotes: -1

Mojtaba Madadyar
Mojtaba Madadyar

Reputation: 349

Open cmd prompt as administrator, copy the below line and RUN:

reg DELETE “HKLM\SOFTWARE\WOW6432Node\Microsoft\Microsoft SQL Server Management Studio” /reg:32

That WORKS FOR ME!!

Upvotes: 22

Dan Guzman
Dan Guzman

Reputation: 46203

The language block is known issue a with the initial SSMS 18.0 GA version. See this feedback item for possible work-arounds and upvote for visibility.

Upvotes: 1

Related Questions