diff --git a/src/ResourceManager/Resources/Commands.Resources/Microsoft.Azure.Commands.Resources.dll-Help.xml b/src/ResourceManager/Resources/Commands.Resources/Microsoft.Azure.Commands.Resources.dll-Help.xml
index 71c795d29555..f08bfe8cd8b9 100644
--- a/src/ResourceManager/Resources/Commands.Resources/Microsoft.Azure.Commands.Resources.dll-Help.xml
+++ b/src/ResourceManager/Resources/Commands.Resources/Microsoft.Azure.Commands.Resources.dll-Help.xml
@@ -1006,6 +1006,98 @@
+
+ -------------------------- Example 1: Get all registered resource providers --------------------------
+
+ PS C:\>
+
+
+ PS C:\>Get-AzureRmResourceProvider
+
+
+ This command gets all the registered resource providers.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Example 2: Get all resource providers, including those not registered --------------------------
+
+ PS C:\>
+
+
+ PS C:\>Get-AzureRmResourceProvider -ListAvailable
+
+
+ This command gets all the resource providers, including those registered and unregistered.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Example 3: Get details about a particular resource provider --------------------------
+
+ PS C:\>
+
+
+ PS C:\>Get-AzureRmResourceProvider -ProviderNamespace Microsoft.Web
+
+
+ This command gets details about a particular resource provider, including the resource types and locations available for the resource provider.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Example 4: Get all registered resource providers filtered by a location --------------------------
+
+ PS C:\>
+
+
+ PS C:\>Get-AzureRmResourceProvider -Location westus
+
+
+ This command gets all the registered resource providers under a location.
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -6311,6 +6403,29 @@ Resources
+
+ -------------------------- Example 1: Register a resource provider --------------------------
+
+ PS C:\>
+
+
+ PS C:\>Register-AzureRmResourceProvider -ProviderNamespace Microsoft.Web
+
+
+ This command registers the provider "Microsoft.Web" for the selected subscription.
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -9657,6 +9772,29 @@ Tags:
+
+ -------------------------- Example 1: Unregister a resource provider --------------------------
+
+ PS C:\>
+
+
+ PS C:\>Unregister-AzureRmResourceProvider -ProviderNamespace Microsoft.Web
+
+
+ This command unregisters the provider "Microsoft.Web" for the selected subscription.
+
+
+
+
+
+
+
+
+
+
+
+
+