santosh kumar patro
santosh kumar patro

Reputation: 8201

How to execute powershell script using AzureCLI?

I am trying to execute a powershell script to create resources on the Azure infrastructure. I have installed Azure CLI on my machine and followed all the steps to login using az login command. I have also setup my subscription using az account set --subscription "My Demos" command.

Now I want to execute the powershell script using this setup.

Can anyone help me to fix this issue?

Upvotes: 4

Views: 11949

Answers (1)

Ivan Glasenberg
Ivan Glasenberg

Reputation: 29940

Please add the word powershell before the powershell scripts when running in azure cli.

Like below:

powershell Get-AzVM -ResourceGroupName "xxx" -Name "xxx" -Status

enter image description here

Upvotes: 3

Related Questions