2020-06-24 11:37:36 +03:00
|
|
|
################################################################################
|
|
|
|
|
## 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
|
2020-07-10 14:29:54 +03:00
|
|
|
|
2020-08-27 11:34:37 -04:00
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "GoogleCloudSDK"
|