This page contains Windows bias

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_tools
⚠️ windows_first
Summary:
The documentation provides examples for Azure portal, PowerShell, Azure CLI, and ARM templates. PowerShell is given a dedicated section and is listed before Azure CLI, which may indicate a Windows-first and PowerShell-heavy bias. PowerShell is a Windows-centric tool, and its prominence (including detailed instructions and examples) suggests a preference for Windows tooling. There are no explicit Linux-only examples or mentions of Linux-specific tools or shell environments (e.g., Bash), and the Azure CLI examples are generic without shell context. No Linux-specific guidance or parity notes are present.
Recommendations:
  • Reorder the command-line sections to present Azure CLI before PowerShell, as Azure CLI is cross-platform and more commonly used on Linux.
  • Explicitly mention that Azure CLI commands work on Linux, macOS, and Windows, and provide example shell contexts (e.g., Bash).
  • Add Bash shell examples or notes for Linux users, especially for multi-line commands (e.g., using \ for line continuation).
  • Consider including a table or section summarizing cross-platform compatibility for each tool.
  • If possible, provide links or references to Linux-specific installation or troubleshooting guides for Azure CLI.
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-08-19 00:01 #85 completed ✅ Clean
2025-07-13 21:37 #48 completed ✅ Clean
2025-07-12 23:44 #41 in_progress ❌ Biased

Flagged Code Snippets

New-AzStorageAccount -ResourceGroupName <resource_group> ` -AccountName <storage-account> ` -Location <location> ` -SkuName "Standard_RAGRS" ` -Kind StorageV2 ` -EncryptionKeyTypeForTable Account ` -EncryptionKeyTypeForQueue Account
$account = Get-AzStorageAccount -ResourceGroupName <resource-group> ` -StorageAccountName <storage-account> $account.Encryption.Services.Queue $account.Encryption.Services.Table