@@ -32,17 +32,17 @@ provide a means of downloading the latest release, so you **must** specify your
3232To install the application, run
3333
3434``` powershell
35- # 0.3.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
36- $env:AZUREAUTH_VERSION = '0.3.1 '
35+ # 0.4.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
36+ $env:AZUREAUTH_VERSION = '0.4.0 '
3737[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
3838iex "& { $(irm https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/${env:AZUREAUTH_VERSION}/install/install.ps1) } -Verbose"
3939```
4040
4141Or, if you want a method more resilient to failure than ` Invoke-Expression ` , run
4242
4343``` powershell
44- # 0.3.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
45- $env:AZUREAUTH_VERSION = '0.3.1 '
44+ # 0.4.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
45+ $env:AZUREAUTH_VERSION = '0.4.0 '
4646$script = "${env:TEMP}\install.ps1"
4747$url = 'https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/${env:AZUREAUTH_VERSION}/install/install.ps1'
4848[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
@@ -62,8 +62,8 @@ release, so you **must** specify your desired version via the `$AZUREAUTH_VERSIO
6262To install the application, run
6363
6464``` bash
65- # 0.3.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
66- export AZUREAUTH_VERSION=' 0.3.1 '
65+ # 0.4.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
66+ export AZUREAUTH_VERSION=' 0.4.0 '
6767curl -sL https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/$AZUREAUTH_VERSION /install/install.sh | sh
6868```
6969
0 commit comments