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
windows_first
missing_linux_example
Summary
The documentation page demonstrates a Windows bias by providing only PowerShell scripting examples for configuring Automation account network access, referencing Windows tools and patterns (such as PowerShell Desired State Configuration), and omitting equivalent Linux CLI (e.g., Azure CLI, Bash) or Linux-native configuration examples. While Linux is mentioned as supported in some features, practical Linux usage guidance is missing.
Recommendations
  • Provide equivalent Azure CLI (az) command examples alongside PowerShell for all resource management tasks, especially for setting properties like publicNetworkAccess.
  • Include Bash shell scripting examples where appropriate to complement PowerShell scripts.
  • When discussing configuration management (e.g., DSC), clarify Linux support and provide Linux-specific configuration steps or references.
  • Ensure that all step-by-step instructions and code snippets are available for both Windows and Linux environments.
  • Explicitly mention any differences or limitations for Linux users, and link to Linux-specific documentation where relevant.
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

$account = Get-AzResource -ResourceType Microsoft.Automation/automationAccounts -ResourceGroupName "<resourceGroupName>" -Name "<automationAccountName>" -ApiVersion "2020-01-13-preview"
$account.Properties | Add-Member -Name 'publicNetworkAccess' -Type NoteProperty -Value $false -Force
$account | Set-AzResource -Force -ApiVersion "2020-01-13-preview"