Reputation: 2422
I have install Windows azure powershell.
After that when i start as the Windows azure powershell as administrator i am getting an error ---
Saying The term 'Add-AzureAccount' is not recognized
How can i fix this error Anyone knows any solution !!
Upvotes: 2
Views: 15684
Reputation: 1075
Before running that cmdlet, can you try
Import-Module Azure
if the module is not found, you can try
Install-Module Azure
Be sure to run powershell as administrator for the latter.
Upvotes: 11