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_first
windows_tools
Summary
The documentation page demonstrates a Windows bias by providing Azure PowerShell examples as the primary or sole command-line automation method, mentioning PowerShell before Azure CLI in multiple places, and referencing Windows-centric tools and patterns. While Azure CLI is mentioned, it is always listed after PowerShell, and no explicit Bash or Linux shell examples are provided. There are no Linux-specific instructions or parity in automation examples.
Recommendations
  • Provide equivalent Azure CLI (az) command examples alongside all PowerShell examples, especially for common tasks like counting role assignments.
  • When listing automation options, mention Azure CLI before or alongside PowerShell to avoid implying PowerShell is the default/preferred tool.
  • Include Bash/Linux shell scripting examples where appropriate, especially for bulk operations or automation.
  • Explicitly state that all command-line examples work cross-platform, and clarify any OS-specific requirements.
  • Where links to PowerShell cmdlets are provided, also link to the equivalent Azure CLI documentation.
  • Consider adding a section or callout for Linux/macOS users, highlighting any differences or confirming parity.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2026-01-14 00:00 #250 in_progress Biased Biased
2026-01-13 00:00 #246 completed Biased Biased
2026-01-11 00:00 #240 completed Biased Biased
2026-01-10 00:00 #237 completed Biased Biased
2026-01-09 00:34 #234 completed Biased Biased
2026-01-08 00:53 #231 completed Biased Biased
2026-01-06 18:15 #225 cancelled Clean Clean
2025-09-10 00:00 #107 completed Clean Clean
2025-08-17 00:01 #83 cancelled Clean Clean
2025-07-13 21:37 #48 completed Biased Biased
2025-07-12 23:44 #41 cancelled Biased Biased

Flagged Code Snippets

$scope = "/subscriptions/<subscriptionId>"
$ras = Get-AzRoleAssignment -Scope $scope | Where-Object {$_.scope.StartsWith($scope)}
$ras.Count