[CLOUD/AZURE/POWERSHELL] Connect-AzureAD 명령 : Azure Acitve Directory 연결하기
■ Connect-AzureAD 명령을 사용해 Azure Acitve Directory를 연결하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Connect-AzureAD |
■ Connect-AzureAD 명령을 사용해 Azure Acitve Directory를 연결하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Connect-AzureAD |
■ Get-AzureADGroup 명령을 사용해 Azure Acitve Directory 그룹 리스트를 구하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Get-AzureADGroup |
■ Import-Module 명령을 사용해 Azure Active Directory 모듈을 임포트하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Import-Module AzureAD |
■ Install-Module 명령을 사용해 Azure Active Directory 모듈을 설치하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Install-Module AzureAD |
■ Get-AzureRmResourceProvider 명령의 Location 옵션을 사용해 리소스 공급자 리스트를 구하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Get-AzureRmResourceProvider -ProviderNamespace Microsoft.Compute -Location 'East US' |
■ Connect-AzureRmAccount 명령을 사용해 Azure를 연결하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Connect-AzureRmAccount |
■ Get-AzureRmResourceProvider 명령의 ProviderNamespace 옵션을 사용해 리소스 공급자 리스트를 구하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Get-AzureRmResourceProvider -ProviderNamespace Microsoft.Compute |
■ Select-AzureRmSubscription 명령의 SubscriptionId 옵션을 사용해 구독을 선택하는 방법을 보여준다. ▶ 실행 명령
1 2 3 4 5 |
Select-AzureRmSubscription -SubscriptionId XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX ------------------------------------ Subscription ID |
■ Get-AzureRmResourceProvider 명령을 사용해 리소스 공급자 리스트를 구하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Get-AzureRmResourceProvider |
■ Get-AzureRmSubscription 명령을 사용해 구독 리스트를 구하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Get-AzureRmSubscription |
■ Add-AzureRmAccount 명령 실행 에러시 처리하는 방법을 보여준다. ▶ 실행 명령
1 2 3 4 5 6 |
> Get-ExecutionPolicy Restricted > Set-ExecutionPolicy -ExecutionPolicy Unrestricted |
■ Get-Module 명령의 Name 옵션을 사용해 Azure 모듈을 구하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Get-Module -ListAvailable -Name Azure* |
■ Add-AzureRmAccount 명령을 사용해 인증 계정을 추가하는 방법을 보여준다. ▶ 실행 명령
1 2 3 |
Add-AzureRmAccount |
■ Install-Module 명령을 사용해 Azure RM 모듈을 설치하는 방법을 보여준다. ▶ 실행 명령
1 2 3 4 5 6 7 |
Install-Module -Name AzureRM -AllowClobber 또는 Install-Module -Name AzureRM -AllowClobber -Force |