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
⚠️ missing_linux_example
⚠️ windows_tools
⚠️ windows_first
Summary:
The documentation page demonstrates a Windows bias by providing only PowerShell examples for listing available VM sizes, omitting equivalent Linux/CLI/bash commands. The 'Next steps' section also lists PowerShell and Visual Studio (Windows-centric tools) before mentioning templates, and does not reference Azure CLI or Linux-native workflows. No Linux or cross-platform examples are provided for key tasks.
Recommendations:
  • Add equivalent Azure CLI (az) or Bash examples alongside PowerShell scripts for listing available VM sizes.
  • In the 'Next steps' section, include Azure CLI and/or Bash deployment guides and place them on equal footing with PowerShell and Visual Studio.
  • Explicitly mention that tasks can be performed from Linux/macOS as well as Windows, and link to cross-platform tooling documentation.
  • Where possible, use neutral language and tool ordering (e.g., 'Azure portal, Azure CLI, PowerShell, Template, Visual Studio') to avoid implying Windows is the default or preferred environment.
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-07-12 23:44 #41 in_progress ❌ Biased
2025-07-12 00:58 #8 cancelled ✅ Clean
2025-07-10 05:06 #7 processing ✅ Clean

Flagged Code Snippets

# Update the location $location = 'WestUS2' # Get all Compute Resource Skus $allSkus = Get-AzComputeResourceSku # Filter virtualMachine skus for given location $vmSkus = $allSkus.Where{$_.resourceType -eq 'virtualMachines' -and $_.LocationInfo.Location -like $location} # From filtered virtualMachine skus, select PaaS Skus $passVMSkus = $vmSkus.Where{$_.Capabilities.Where{$_.name -eq 'VMDeploymentTypes'}.Value.Contains("PaaS")} # Optional step to format and sort the output by Family $passVMSkus | Sort-Object Family, Name | Format-Table -Property Family, Name, Size