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
⚠️ missing_linux_example
Summary:
The documentation page demonstrates a Windows bias by providing only Azure PowerShell deployment instructions, referencing PowerShell and Windows shell behaviors (e.g., right-click to paste), and omitting equivalent Azure CLI or Bash examples that would be more familiar to Linux/macOS users. The prerequisites and deployment sections focus on PowerShell, with no mention of Linux-native tools or workflows.
Recommendations:
  • Add Azure CLI deployment instructions alongside the PowerShell example, including a Bash-compatible script.
  • In the prerequisites, mention both Azure PowerShell and Azure CLI as supported options, with installation links for each.
  • Replace or supplement Windows-specific instructions (such as right-click to paste) with cross-platform guidance (e.g., Ctrl+Shift+V in many Linux terminals).
  • Ensure that all steps and examples are presented in a platform-neutral order, or alternate between Windows and Linux-first instructions.
  • Explicitly state that the process can be performed on Windows, Linux, or macOS, and provide any OS-specific notes as needed.
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

$projectName = Read-Host -Prompt "Enter a project name (limited to eight characters) that is used to generate Azure resource names" $location = Read-Host -Prompt "Enter the location (for example, centralus)" $resourceGroupName = "${projectName}rg" $templateUri = "templateURI" New-AzResourceGroup -Name $resourceGroupName -Location $location New-AzResourceGroupDeployment -ResourceGroupName $resourceGroupName -TemplateUri $templateUri -projectName $projectName