From 64dc2fe2b127a7e3cb4d2dbd75052da5339964ee Mon Sep 17 00:00:00 2001 From: Dibir Magomedsaygitov Date: Fri, 27 Mar 2020 15:24:28 +0300 Subject: [PATCH 1/2] change the lint to download ssdt --- images/win/scripts/Installers/Windows2016/Install-SSDT.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/win/scripts/Installers/Windows2016/Install-SSDT.ps1 b/images/win/scripts/Installers/Windows2016/Install-SSDT.ps1 index 9362c9bd6..273444173 100644 --- a/images/win/scripts/Installers/Windows2016/Install-SSDT.ps1 +++ b/images/win/scripts/Installers/Windows2016/Install-SSDT.ps1 @@ -6,7 +6,7 @@ Import-Module -Name ImageHelpers -Force #SSDT for Visual Studio 2017 (15.9.3) -$InstallerURI = 'https://download.microsoft.com/download/5/2/D/52DEF429-5B17-470C-82D9-654116080B15/SSDT-Setup-ENU.exe' +$InstallerURI = 'https://download.microsoft.com/download/e/c/f/ecfccf97-b32c-4c31-b2fc-bff558635096/SSDT-Setup-ENU.exe' $InstallerName = 'SSDT-Setup-ENU.exe' $logFilePath = "$env:TEMP\ssdtlog.txt" $ArgumentList = ('/install', 'INSTALLALL', '/passive', '/norestart', "/log `"$logFilePath`"") From 69ff6d6d7cebc150eb01d7c7493b7feb97383427 Mon Sep 17 00:00:00 2001 From: Dibir Magomedsaygitov Date: Fri, 27 Mar 2020 18:23:22 +0300 Subject: [PATCH 2/2] update the download link for ssdt for win2016 --- images/win/scripts/Installers/Windows2016/Install-SSDT.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/images/win/scripts/Installers/Windows2016/Install-SSDT.ps1 b/images/win/scripts/Installers/Windows2016/Install-SSDT.ps1 index 273444173..132734c81 100644 --- a/images/win/scripts/Installers/Windows2016/Install-SSDT.ps1 +++ b/images/win/scripts/Installers/Windows2016/Install-SSDT.ps1 @@ -5,8 +5,9 @@ Import-Module -Name ImageHelpers -Force -#SSDT for Visual Studio 2017 (15.9.3) -$InstallerURI = 'https://download.microsoft.com/download/e/c/f/ecfccf97-b32c-4c31-b2fc-bff558635096/SSDT-Setup-ENU.exe' +#SSDT for Visual Studio 2017 +#The link down below points to the latest version of SSDT for Visual Studio 2017 +$InstallerURI = 'https://go.microsoft.com/fwlink/?linkid=2124518' $InstallerName = 'SSDT-Setup-ENU.exe' $logFilePath = "$env:TEMP\ssdtlog.txt" $ArgumentList = ('/install', 'INSTALLALL', '/passive', '/norestart', "/log `"$logFilePath`"")