Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 876
santosh kumar patro Avatar asked Sep 01 '25 10:09

santosh kumar patro


1 Answers

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

like image 182
Ivan Yang Avatar answered Sep 03 '25 01:09

Ivan Yang