Azure PowerShell
[ Azure ] PowerShell 리소스 정리/리소스 그룹 삭제/리소스 그룹 검색/리소스 그룹 조회/리소스 그룹 나열
리소스 그룹 나열 Get-AzResourceGroup -Name '[리소스 그룹명]' 리소스 그룹 확인 코드 실행 → Get-AzResourceGroup -Name '[리소스 그룹명]' | Remove-AzResourceGroup -Force -AsJob 리소스 그룹 삭제 리소스 그룹이 삭제되었다! 참고 https://microsoftlearning.github.io/AZ-104KO-MicrosoftAzureAdministrator/Instructions/Labs/LAB_04-Implement_Virtual_Networking.html https://microsoftlearning.github.io/AZ-104KO-MicrosoftAzureAdministrator/Instructions/Labs/LAB_..
[ AZ-104-03c ] PowerShell로 Azure 리소스 관리
Azure PowerShell을 사용하여 리소스 그룹 및 Azure 관리 디스크 만들기 $location = (Get-AzResourceGroup -Name az104-03b-rg1).Location $rgName = 'az104-03c-rg1' New-AzResourceGroup -Name $rgName -Location $location Azure PowerShell → 이전 랩에서 만든 az104-03b-rg1 리소스 그룹과 동일한 지역에 있는 리소스 그룹 생성 → Get-AzResourceGroup -Name $rgName 새로 만든 리소스 그룹 속성 검색 → $diskConfig = New-AzDiskConfig ` -Location $location ` -CreateOption Empty ` ..