Visual Studio 2017 SSDT Offline

I need a standalone installation for SSDT for Visual Studio 2017. Or how to hack an online download. (Please note that not VS itself, I have this offline installation). I used the online download to get the .vsix files, but I need a way to install them.

  • Double click doesn’t work,
  • Rename to .zip and extract and put them in the folder does not work.
  • ISO is available but only available for 2015

Any help would be appreciated

+7
source share
2 answers

You can load a standalone layout using input / layout.

SSDT-Setup-ENU.exe /layout c:\vs2017ssdt

You can find out what parameters can be sent if you enter

SSDT-Setup-ENU.exe /?

ssdt, , .

+18

CMD Windows

- .NET .NET

vs_community.exe --layout c:\vs2017layout --add Microsoft.VisualStudio.Workload.ManagedDesktop --add Microsoft.VisualStudio.Workload.NetWeb --add Component.GitHub.VisualStudio --includeOptional --lang en-US

.NET Office :

vs_community.exe --layout c:\vs2017layout --add Microsoft.VisualStudio.Workload.ManagedDesktop --add Microsoft.VisualStudio.Workload.Office --includeOptional --lang en-US

C++ :

vs_community.exe --layout c:\vs2017layout --add Microsoft.VisualStudio.Workload.NativeDesktop --includeRecommended --lang en-US

( - !), :

vs_community.exe --layout c:\vs2017layout --lang en-US
+1

Source: https://habr.com/ru/post/1687917/


All Articles