Files
runner-images/images/windows/scripts/build/Install-SQLPowerShellTools.ps1
T

20 lines
706 B
PowerShell
Raw Normal View History

################################################################################
## File: Install-SQLPowerShellTools.ps1
## Desc: Install SQL PowerShell tool
################################################################################
$baseUrl = "https://download.microsoft.com/download/B/1/7/B1783FE9-717B-4F78-A39A-A2E27E3D679D/ENU/x64"
# install required MSIs
Install-Binary `
2023-12-04 10:50:53 +01:00
-Url "${baseUrl}/SQLSysClrTypes.msi" `
-ExpectedSubject $(Get-MicrosoftPublisher)
Install-Binary `
2023-12-04 10:50:53 +01:00
-Url "${baseUrl}/SharedManagementObjects.msi" `
-ExpectedSubject $(Get-MicrosoftPublisher)
Install-Binary `
2023-12-04 10:50:53 +01:00
-Url "${baseUrl}/PowerShellTools.msi" `
-ExpectedSubject $(Get-MicrosoftPublisher)