Hi BCAzure01,
The commands you shared are Azure CLI commands, so the required tool is:
Azure CLI (az)
- It’s a cross-platform command-line tool for managing Azure resources.
- These specific commands:
-
az provider show --namespace Microsoft.AADIAM -
az provider show --namespace Microsoft.Insights
-
are used to check the resource provider registration status for:
- Microsoft.AADIAM → Azure Active Directory Identity and Access Management
- Microsoft.Insights → Azure Monitor (Insights)
To run them:
- Install Azure CLI on your machine.
- Authenticate using az login.
- Then execute the commands in a shell (PowerShell, Bash, or CMD).
Thanks,
Vrishabh