Register for Azure services with PowerShell
Register for Azure services with PowerShell
John Savill
January 21, 2017
1 Min Read
Q. How can I register for services in Azure with PowerShell?
A. To register for services use the Register-AzureRmProviderFeature cmdlet with the provider and feature name you want to enable. For example I would use the following (after logging on with Login-AzureRmAccount and selecting a subscription with Select-AzureRmSubscription, e.g. Get-AzureRmSubscription -SubscriptionName "Windows Azure Internal Consumption" | Select-AzureRmSubscription):
Register-AzureRmProviderFeature -FeatureName "" –ProviderNamespace
About the Author
Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
You May Also Like