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_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 ID Status Bias Status
2025-09-10 00:00 #107 completed ✅ Clean
2025-08-17 00:01 #83 in_progress ✅ Clean
2025-07-13 21:37 #48 completed ❌ Biased
2025-07-12 23:44 #41 in_progress ❌ Biased

Flagged Code Snippets

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