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
missing_linux_example
Summary
The documentation demonstrates a Windows bias by providing PowerShell-based deployment examples and scripts, mentioning PowerShell before or in addition to Azure CLI, and omitting explicit Linux/bash shell examples for ARM template deployment. The CLI example is present, but the only script-based ARM deployment example is in PowerShell, which is Windows-centric. There are no bash or cross-platform shell script examples for Linux/macOS users.
Recommendations
  • Add bash (Linux/macOS) examples for deploying ARM templates using Azure CLI (e.g., az deployment group create) alongside the PowerShell example.
  • When presenting script-based workflows, provide both PowerShell and bash/CLI equivalents, and avoid presenting PowerShell exclusively or first.
  • Explicitly mention that Azure CLI commands are cross-platform and runnable on Windows, Linux, and macOS.
  • Where possible, use neutral language and ordering (e.g., 'Using Azure CLI and PowerShell') or group examples by platform.
  • Consider including a table or section summarizing all supported methods (Portal, PowerShell, CLI, ARM Template via CLI/PowerShell) with links to platform-specific instructions.
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-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

New-AzHealthcareApisService
    -Name "myService"
    -Kind "fhir-R4"
    -ResourceGroupName "myResourceGroup"
    -Location "westus2"
    -CosmosKeyVaultKeyUri "https://<my-vault>.vault.azure.net/keys/<my-key>"
And you can deploy the template with the following PowerShell script.