akuiper
akuiper

Reputation: 214957

Azure Get-AzureRmMlService not found Powershell

How do I get the azure web service from powershell? I am following the docs here, which says I need to call the Get-AzureRmMlWebService cmdlet. But when I follow the command line in the doc and run Get-AzureRmMlWebService, it says the term is not recognized. Any body knows how to solve the issue? I also tried npm install azure-cli --global and Add-AzureRmAccount.

Upvotes: 1

Views: 556

Answers (1)

Tim Haintz
Tim Haintz

Reputation: 676

You need to import the Azure modules. https://learn.microsoft.com/en-us/azure/powershell-install-configure

Install-Module AzureRM

This will get it from powershellgallery.com.

Upvotes: 3

Related Questions