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_tools
missing_linux_example
windows_first
Summary
The documentation exclusively provides PowerShell commands for all automation steps, references only Windows installation methods and tools (such as 'Add or Remove Programs'), and explicitly instructs users to download and install the integration runtime on a Windows machine. There are no Linux or cross-platform examples, nor any mention of Linux support or alternatives.
Recommendations
  • Include equivalent command-line examples for Linux (e.g., using Azure CLI or Bash scripts) where possible.
  • Clarify whether the self-hosted integration runtime supports Linux, and if not, state this explicitly at the beginning.
  • If Linux is supported, provide installation instructions for Linux (e.g., using .tar.gz packages, apt/yum, or Docker containers).
  • Reference cross-platform tools (such as Azure CLI) before or alongside PowerShell, and provide parity in automation examples.
  • Replace Windows-specific UI instructions (like 'Add or Remove Programs') with cross-platform alternatives or note platform-specific steps.
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

   $integrationRuntimeName = "ADFTutorialIR"
    
   Set-AzDataFactoryV2IntegrationRuntime -Name $integrationRuntimeName -Type SelfHosted -DataFactoryName $dataFactoryName -ResourceGroupName $resourceGroupName
   
   Get-AzDataFactoryV2IntegrationRuntime -name $integrationRuntimeName -ResourceGroupName $resourceGroupName -DataFactoryName $dataFactoryName -Status