About This Page
This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.
Bias Analysis
Bias Types:
⚠️
powershell_heavy
⚠️
windows_first
⚠️
windows_tools
Summary:
The documentation demonstrates a moderate Windows bias. PowerShell is consistently presented as a primary scripting interface, with explicit PowerShell command examples provided in each procedural section. In tabbed command sections, PowerShell is always listed before Azure CLI. Additionally, the Azure CLI examples are incorrectly labeled as 'Run the following PowerShell command', which may confuse Linux/macOS users. There are no explicit Linux shell or Bash-specific instructions, and no mention of platform differences or considerations for non-Windows environments.
Recommendations:
- Correct the labeling of Azure CLI sections to avoid referring to them as 'PowerShell commands'.
- Provide Bash shell examples or clarify that Azure CLI commands can be run in Bash, Cloud Shell, or other cross-platform environments.
- Consider alternating the order of PowerShell and Azure CLI tabs, or defaulting to Azure CLI, which is more cross-platform.
- Explicitly mention that Azure CLI commands are suitable for Linux, macOS, and Windows, and provide any necessary notes for Linux users (e.g., line continuation differences, authentication methods).
- Where PowerShell is referenced, clarify that it is available cross-platform, but also provide Bash or shell alternatives where appropriate.
- Audit for any other Windows-centric terminology or assumptions and ensure parity in instructions for Linux users.
Create pull request
Flagged Code Snippets
Set-AzStorageAccount -ResourceGroupName <resource-group-name> -Name <storage-account-name> -CustomDomainName <custom-domain-name> -UseSubDomain $false
Set-AzStorageAccount -ResourceGroupName <resource-group-name> -Name <storage-account-name> -CustomDomainName <custom-domain-name> -UseSubDomain $true
Set-AzStorageAccount `
-ResourceGroupName "<resource-group-name>" `
-AccountName "<storage-account-name>" `
-CustomDomainName ""
Set-AzStorageAccount `
-ResourceGroupName "myresourcegroup" `
-AccountName "mystorageaccount" `
-CustomDomainName ""