Az 모듈을 설치하기 전에 AzureRm 제거

이미 Az가 포함된 시스템에 AzureRm 모듈을 설치하는 것은 지원되지 않습니다.


AzureRm를 제거하려면 몇 가지 단계가 필요합니다. 아래에서 설명하겠습니다. 먼저 다음 명령을 실행해야 합니다.

uninstall-module Azure
uninstall-module AzureRM



그런 다음 다음 명령을 사용하여 모듈이 남아 있는지 확인해야 합니다.

Get-Module -ListAvailable | Where {$_.Name -like 'AzureRM.*'}



이것은 아마도 다음과 같은 결과를 줄 것입니다.



다음 명령을 사용하여 AzureRM의 나머지 모듈을 모두 제거합니다.

$Modules = Get-Module -ListAvailable | Where {$_.Name -like 'AzureRM.*'}
Foreach ($Module in $Modules) {Uninstall-Module $Module}



이제 Az 모듈을 다시 설치해 볼 수 있습니다.

if ($PSVersionTable.PSEdition -eq 'Desktop' -and (Get-Module -Name AzureRM -ListAvailable)) {
    Write-Warning -Message ('Az module not installed. Having both the AzureRM and ' +
      'Az modules installed at the same time is not supported.')
} else {
    Install-Module -Name Az -AllowClobber -Scope CurrentUser
}

좋은 웹페이지 즐겨찾기