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
missing_linux_example
Summary
The documentation provides a PowerShell example for enabling HTTP/2 support but does not include equivalent CLI or Linux-native command examples. There are no references to Linux tools or shell commands, and the only automation example is Windows-centric, which may disadvantage Linux users.
Recommendations
  • Include Azure CLI examples alongside PowerShell for all configuration tasks, especially for enabling features like HTTP/2.
  • Where automation or scripting is demonstrated, provide both PowerShell and Bash/Azure CLI equivalents.
  • Explicitly mention that all features are available via cross-platform tools (e.g., Azure CLI, ARM templates) and link to relevant documentation.
  • Review the documentation for other sections where only Windows tooling is referenced and add Linux-friendly alternatives.
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
2025-07-09 23:22 #6 cancelled Clean Clean

Flagged Code Snippets

$gw = Get-AzApplicationGateway -Name test -ResourceGroupName hm

$gw.EnableHttp2 = $true

Set-AzApplicationGateway -ApplicationGateway $gw
$gw = Get-AzApplicationGateway -Name test -ResourceGroupName hm

$gw.EnableHttp2 = $true

Set-AzApplicationGateway -ApplicationGateway $gw