0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Azure PowerShell のセットアップ

Last updated at Posted at 2020-12-24

AzureをPowerShellにて操作する場合、最初に環境のセットアップが必要になります。

Microsoft Document - PowerShell ドキュメント

#Azure Cloud Shellを利用する

最初にAzure Powershellを利用する場合、利用するストレージのセットアップが必要です。

##1.PowerShellを選択
image.png

##2.リソースグループ名、ストレージアカウント名、共有ファイル名を設定
image.png

##3.正常に作成されたことを確認
image.png

##参考:Azure Potalでも確認可能
image.png

#Azure Power Shellを利用する
Windows 10にプレインストールされている、Windows PowerShell ISEを利用します。

参考
Windows PowerShell のインストール
PowerShellGet を使用した Windows への Azure PowerShell のインストール
AzureRM から Az への Azure PowerShell の移行

##1.バージョンを確認する
*必要に応じて、バージョンアップしてください。

$PSVersionTable

image.png

##2.Azure PowerShell モジュールのインストール

Install-Module -Name AzureRM -AllowClobber

Azure PowerShell Cmdletsのインストール

##3.サインイン

Connect-AzAccount -UseDeviceAuthentication

https://microsoft.com/devicelogin
にアクセスし、コードを入れる

image.png

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?