A Microsoft tool designed to automate database migration to SQL Server from Access, DB2, MySQL, Oracle, and SAP ASE.
To install only specific components of SQL Server Management Studio (SSMS) 22 using an offline layout, you need to specify the components you want to include in your command. Instead of using --all, you can use the --add parameter followed by the specific component identifiers you need.
For example, if you want to install the Management Studio component, you can use a command like this:
vs_SSMS.exe --layout C:\SSMS_Layout --add Microsoft.SqlServer.Workload.SSMS
Make sure to replace Microsoft.SqlServer.Workload.SSMS with the specific component IDs you want to install. You can find a list of component IDs in the documentation for command-line parameters or installation guidance.
If you are unsure about the exact component IDs, you may refer to the command-line examples provided in the official documentation to see the available options for SSMS installation.
References: