Files
runner-images-sangeeth/images/win/scripts/Installers/Install-GoogleCloudSDK.ps1
Aleksandr Chebotov 4c34ad64df Add Google Cloud SDK for Windows (#1102)
* Add Google Cloud SDK

* Add Validate-GoogleCloudSDK.ps1 script
2020-06-24 11:37:36 +03:00

10 lines
563 B
PowerShell

################################################################################
## File: Install-GoogleCloudSDK.ps1
## Desc: Install Google Cloud SDK
################################################################################
# https://cloud.google.com/sdk/docs/downloads-interactive
$googleCloudSDKInstaller = "https://dl.google.com/dl/cloudsdk/channels/rapid/GoogleCloudSDKInstaller.exe"
$argumentList = @("/S", "/allusers", "/noreporting")
Install-Binary -Url $googleCloudSDKInstaller -Name "GoogleCloudSDKInstaller.exe" -ArgumentList $argumentList