LoginSignup
2
1

More than 5 years have passed since last update.

認証付きProxy環境下でAzureアカウントにログインする(Azure PowerShell)

Posted at

実行環境

  • OS
    • Windows 7 Professional x64
  • PowerShellバージョン
    • 5.0.10586.117

前提条件

  • IEのProxy設定がされていること
  • Proxyの除外設定に以下が含まれていないこと(パケットキャプチャしてみると以下接続先と通信している模様)
    • iecvlist.microsoft.com
    • login.microsoftonline.com
    • management.azure.com

Azureログイン

  1. PowerShellプロンプトを開く
  2. 以下コマンドを実行するとポップアップが出力されるので、Proxyユーザ名とパスワードを入力する

    [System.Net.WebRequest]::DefaultWebProxy.Credentials = Get-Credential
    
  3. Azureアカウントにログインする

    Login-AzureRmAccount
    
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1