2020-06-24 11:37:36 +03:00
|
|
|
################################################################################
|
2023-09-20 16:32:41 +02:00
|
|
|
## File: Install-GoogleCloudCLI.ps1
|
|
|
|
|
## Desc: Install Google Cloud CLI
|
2020-06-24 11:37:36 +03:00
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
# https://cloud.google.com/sdk/docs/downloads-interactive
|
2023-11-22 15:14:08 +01:00
|
|
|
Install-Binary `
|
|
|
|
|
-Url 'https://dl.google.com/dl/cloudsdk/channels/rapid/GoogleCloudSDKInstaller.exe' `
|
|
|
|
|
-InstallArgs @("/S", "/allusers", "/noreporting") `
|
2024-06-19 19:39:56 +05:30
|
|
|
-ExpectedSignature '607A3EDAA64933E94422FC8F0C80388E0590986C'
|
2020-07-10 14:29:54 +03:00
|
|
|
|
2023-09-20 16:32:41 +02:00
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "GoogleCloudCLI"
|