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
windows_first
powershell_heavy
Summary
The documentation provides both Azure CLI and Azure PowerShell examples for deployment and cleanup, but consistently lists PowerShell as a primary or parallel method. Visual Studio Code is recommended as the editor, but no mention is made of Linux-specific editors or shell environments. There is no explicit Windows-only tooling, but the documentation implicitly assumes familiarity with PowerShell and Windows-centric workflows, and does not address Linux shell nuances or alternative editors.
Recommendations
  • Explicitly state that all CLI examples work on Linux, macOS, and Windows, and clarify any OS-specific differences if present.
  • Add Linux/macOS-specific shell examples (e.g., bash/zsh) where variable assignment syntax differs from PowerShell.
  • Mention alternative editors commonly used on Linux (e.g., Vim, Emacs, nano) in the prerequisites, or clarify that Visual Studio Code is cross-platform.
  • If PowerShell is mentioned, also mention bash or sh as alternatives for Linux/macOS users.
  • Include notes or callouts for any commands or steps that may behave differently on Linux versus Windows.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2025-07-12 23:44 #41 cancelled Biased Biased
2025-07-12 00:58 #8 cancelled Clean Clean
2025-07-10 05:06 #7 processing Clean Clean

Flagged Code Snippets

$resourceGroupName = "{provide-a-resource-group-name}"
$templateFile = "{provide-the-path-to-the-bicep-file}"

New-AzResourceGroup -Name $resourceGroupName -Location eastus

New-AzResourceGroupDeployment -ResourceGroupName $resourceGroupName -TemplateFile $templateFile
$resourceGroupName = "{provide-the-resource-group-name}"

Remove-AzResourceGroup -Name $resourceGroupName