Sad Tux - Windows bias detected
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

Detected 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 Status Result
2026-01-14 00:00 #250 in_progress Clean Clean
2026-01-13 00:00 #246 completed Clean Clean
2026-01-11 00:00 #240 completed Biased Biased
2026-01-10 00:00 #237 completed Clean Clean
2026-01-09 00:34 #234 completed Biased Biased
2026-01-08 00:53 #231 completed Clean Clean
2026-01-06 18:15 #225 cancelled Clean Clean
2025-08-19 00:01 #85 completed Clean Clean
2025-07-13 21:37 #48 completed Clean Clean
2025-07-12 23:44 #41 cancelled Biased 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