How to get list of all Azure VMs in Powershell -
i'm attempting list of azure vms in powershell.
get-azurevm unfortunately returns vms listed under virtual machines (classic).
how can list of new virtual machines?
you need use azure resource manager mode access new vms:
switch-azuremode -name azureresourcemanager you can read more here.

Comments
Post a Comment