Az 모듈을 설치하기 전에 AzureRm 제거
4373 단어 powershellazureazurerm
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
}
Reference
이 문제에 관하여(Az 모듈을 설치하기 전에 AzureRm 제거), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/basvo/remove-azurerm-before-installing-az-module-5c8f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)