I needed to do a vm backup and I followed this article: https://azure.microsoft.com/en-us/documentation/articles/virtual-machines-linux-capture-image/
So, I executed: azure vm shutdown vm-1
But now I really need to start the deallocated vm but I don't know how to do it.
When I try to execute this command: Start-AzureVM -ServiceName "vm-1" -Name "vm-1"
I'm getting this message: No deployment found in service: 'vm-1'.
And when I try to list all my vm, I don't see vm-1
Any idea of how to start a deallocated vm?
Thanks