How to install Management Studio without Azure Data Studio using Chocolatey

1.1k Views Asked by At

I want to install SQL Server Management Studio (SSMS) without Azure Data Studio using Chocolatey.

I am trying this, but it does not seem to work:

choco install sql-server-management-studio --install-arguments "DoNotInstallAzureDataStudio=1" -Y
1

There are 1 best solutions below

0
Gary Ewan Park On

Based on this blog post which suggests that you need to install using:

SSMS-Setup-ENU.exe /Passive DoNotInstallAzureDataStudio=1

Can you try:

choco install sql-server-management-studio --install-arguments="'/Passive DoNotInstallAzureDataStudio=1'" -Y