Está en la página 1de 1

Installing PowerShell on Windows - PowerShell | Microsoft Docs

https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-
windows?view=powershell-7.2

Instalación de la CLI de Azure para Windows | Microsoft Docs

https://docs.microsoft.com/es-es/cli/azure/install-azure-cli-windows?tabs=azure-cli

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force

Inatalar el módulo ARM en PowerShell onpremise

Desde un PowerShell abierto como administrador, ejecutar el siguiente cmdlet:

Install-Module -Name AzureRM -AllowClobber

Set-ExecutionPolicy RemoteSigned

Import-Module AzureRM.Profile

Para iniciar sesión:

Login-AzureRmAccount

New-AzResourceGroup -Name exampleGroup -Location westus

az login

az group create --name demoResourceGroup --location westus

También podría gustarte