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
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 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
2025-07-09 23:22 #6 cancelled ✅ 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