MOHAN KRISHNA
MOHAN KRISHNA

Reputation: 91

Re-solve how to install SSMS

When I used to install SSMS I used to get "Loading packages. Please wait...". But their is no use of it still it's going like that all the time but not loaded any packages. Can anyone will help. How to install SSMS.

Upvotes: 9

Views: 15836

Answers (3)

Sangg
Sangg

Reputation: 39

Fix this problem :

  • Delete temp file, run cmd then enter: %temp%
  • Open register and delete HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SQL Server Management Studio
  • Run install ssms with administrator permission ^^

Upvotes: 3

minakshi singh
minakshi singh

Reputation: 11

The new version 18 is only for 32 bit system. So if your system is 64 bit then download and install Azure Data Studio. It supports cross platform and can be used for Windows 32/64, Mac etc. Download from here

Upvotes: 0

Andrey Ravkov
Andrey Ravkov

Reputation: 1494

to fix this problem:

  • remove temp files from %temp% folder (C:\Users<user name>\AppData\Local\Temp)

  • open the register and remove "HKLM\SOFTWARE\WOW6432Node\Microsoft\Microsoft SQL Server Management Studio" or execute via cmd (with admin rights):

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

  • run install with admin rights

Upvotes: 41

Related Questions