################################################################################ ## File: Install-GoogleCloudCLI.ps1 ## Desc: Install Google Cloud CLI ################################################################################ # https://cloud.google.com/sdk/docs/downloads-interactive Install-Binary ` -Url 'https://dl.google.com/dl/cloudsdk/channels/rapid/GoogleCloudSDKInstaller.exe' ` -InstallArgs @("/S", "/allusers", "/noreporting") ` -ExpectedSubject 'CN=Google LLC, O=Google LLC, L=Mountain View, S=California, C=US, SERIALNUMBER=3582691, OID.2.5.4.15=Private Organization, OID.1.3.6.1.4.1.311.60.2.1.2=Delaware, OID.1.3.6.1.4.1.311.60.2.1.3=US' Invoke-PesterTests -TestFile "Tools" -TestName "GoogleCloudCLI"